I want to list down all the nuget packages along with its dependencies recursively. Project is in VS2017 and .NET Core.
I tried with Get-Package -ProjectName "Your.Project.Name"
it displays all the nuget packages in project. I want all the dependencies also printed.
go to the Project or Solution in question. right click, Manage NuGet Packages... on the left, you will see 'Installed Packages' click on this and you will see the list.
nupkg file. The option -IncludeReferencedProjects does include all the referenced project dependencies to the .
Put simply, a NuGet package is a single ZIP file with the . nupkg extension that contains compiled code (DLLs), other files related to that code, and a descriptive manifest that includes information like the package's version number.
You can use the dotnet cli: dotnet list package --include-transitive
. The dotnet-outdated global tool probably has similar functionality.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With