Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/core/tools/dotnet-nuget-why.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ First, restore the project in Visual Studio, or `msbuild.exe`.
By default the assets file is in the project's `obj\` directory, but you can find the location with `msbuild.exe path\to\project.proj -getProperty:ProjectAssetsFile`.
Finally, run `dotnet nuget why path\to\project.assets.json SomePackage`.

Starting with version 9.0.200, the command introduces support for RID-specific (Runtime identifier) packages by generating separate dependency trees for each Runtime Identifier (RID) and framework combination.
For example, if a project targets the net9.0 framework with the win-x64 RID, it will generate trees for: `net9.0/win-x64` and `net9.0`.

## Arguments

- **`PROJECT|SOLUTION`**
Expand Down
Loading