deps 0.0.0-alpha1

This is a prerelease version of deps.
There is a newer version of this package available.
See the version list below for details.
dotnet tool install --global deps --version 0.0.0-alpha1                
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local deps --version 0.0.0-alpha1                
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=deps&version=0.0.0-alpha1&prerelease                
nuke :add-package deps --version 0.0.0-alpha1                

🌳 DependencyHierarchy

Nuget

Command-line tool that shows and filters a tree of a C# project's effective NuGet package dependencies and their versions, including transitive dependencies.

Prerequisites

Installation

This will install the tool for your user, to be run from any directory.

dotnet tool install --global deps

Update

To update an existing installation to the latest version.

dotnet tool update --global deps

Usage

  1. Go to a C# project directory. This is the directory that has a .csproj file and an obj subdirectory.
    cd solution/project/
    
  2. If you haven't restored this project since changing its settings, cleaning, or cloning it, restore it to ensure that obj/project.assets.json is up-to-date. Opening the project in Visual Studio or building it will also restore it automatically.
    dotnet restore
    
  3. Run the deps tool.
    deps
    

This will print all of the effective NuGet dependencies of your project.

CSCore : 1.2.1.2
PowerMate : 1.1.1
  HidClient : 1.0.1
    HidSharp : 2.1.0

The leftmost, least indented packages are top-level/direct dependencies, manually defined in your .csproj or packages.config file. Indented packages underneath them are their transitive dependencies that are automatically included when you declare the top-level dependency. The most indented packages are leaf dependencies.

The above example shows that the project has two direct dependencies: CSCore and PowerMate. The PowerMate package also has a transitive dependency on HidClient, which in turn has a transitive dependency on HidSharp, which has no other dependencies.

Version conflict highlighting

C# projects can only install one version of any given package. If different versions of the same package are all dependencies of your project and its transitive dependencies, the compiler can't use all of them, so NuGet will perform automatic version conflict resolution to pick one version to actually import.

This tool will show all of the candidate versions of dependencies, and will highlight when that version differs from the effective version that NuGet chose. This can help you figure out why a specific version of a package is in your project.

BouncyCastle.Cryptography : 2.3.1
MailKit : 4.5.0
  MimeKit : 4.5.0
    BouncyCastle.Cryptography : 2.3.0 (omitted for conflict with 2.3.1)
    System.Security.Cryptography.Pkcs : 8.0.0
      System.Formats.Asn1 : 8.0.0

In the above example, a project depends on MailKit, which transitively depends on BouncyCastle.Cryptography. At the time, the latest version of MailKit depended on the version 2.3.0 of BouncyCastle.Cryptography, which is vulnerable to several security issues. To resolve these, the newer, fixed 2.3.1 version of BouncyCastle.Cryptography was added as a direct, top-level dependency of the project. Doing so overrode the version that MailKit transitively depended upon, forcing MailKit to use the fixed version. This tool highlights the version conflict and how it was resolved.

Options

Filter to only show one package

By default, the output shows all dependencies of the project. To only show one package and its dependents, while hiding all unrelated packages, pass the --filter option. This can help you figure out why a specific package is in your project.

deps --filter HidClient
PowerMate : 1.1.1
  HidClient : 1.0.1

Project directory

By default, this tool looks for a C# project (that contains an obj subdirectory) in the current working directory. To work with a project in a different directory, you can do one of the following.

  • Change to the project directory using cd
    cd solution/project/
    
  • Specify the project directory as a command-line argument:
    deps solution/project/
    

Disable text colors

By default, the output text is colored to make it easier to distinguish different package names, versions, and conflict highlights. To disable this coloring and not print any ANSI escape sequences, for example if you want to process the output in a text editor or CI build tool, you can pass the --no-color option.

deps --no-color

Acknowledgements

  • Eclipse m2e for implementing this essential functionality a very long time ago, in a GUI
  • npm ls for implementing this essential functionality in a command-line interface
  • DotNetWhy for inspiring me to create a .NET Tool that could answer my questions
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
1.0.0 77 9/26/2024
0.0.0-beta1 67 9/7/2024
0.0.0-alpha2 52 9/7/2024
0.0.0-alpha1 55 9/4/2024