Like in Golang,Python and Java, we can easily get all the third party packages being used in the projects using their package managers.
example :
go mod vendor in Golang and mvn dependency:copy-dependencies in Java etc
I am trying to find any utility from nuget/dotnet package manager which does the same.
dotnet list <project solution>
will fetch only the names of the third party packages but I need source code of those third party packages.
any help on this please.
dotnet list <path to the project solution file>
Above command just lists the third party packages but I need to get the source code of those libraries.