Is there a way to automatically restore NuGet packages of a solution without using Visual Studio (i.e. using the NuGet command line)?
How to restore nuget packages without visual studio?
3.3k Views Asked by gazza At
2
There are 2 best solutions below
1

Yes, You can use NuGet command line the follwing will install the packages for a solution
Update-Package
This will update all the packages for a project
Update-Package -ProjectName MyProject
If you need more options please have a look at this link
You need the nuget.exe (which you can download from nuget.org). And than execute
The full documentation of the nuget.exe is available here.