Reputation: 1480
How to update nuget packages without package manager of visual studio, if the projects referenced in solution have different nuget package folders, then updating nuget packages from solution becomes tedious job. You need to update nuget packages per project. Is there a way to update nuget packages without using visual studio?
Upvotes: 1
Views: 1435
Reputation: 1480
To update the nuget packages in solution, you can create a batch file with multiple commands or can execute command like mentioned below using command prompt:
There are more switches to Nuget.Exe Update switch, like you can specify the nuget source. Make changes as required and you can successfully update nuget packages without opening the visual studio.
Upvotes: 2