Answers for "how to get a list of nuget packages in the solution"

1

get a list of all nuget packages used in a solution

Run this command 
Get-Package | Select-Object Id, Version, LicenseUrl, ProjectName 
in package manager console in Visual Studio.
Posted by: Guest on May-17-2021

Code answers related to "how to get a list of nuget packages in the solution"

Browse Popular Code Answers by Language