Reputation: 433
I am looking for solution to add/update new nuget packages to exiting project file .csproj but without Visual Studio. I gone this post here it download package it on local machine. But we want same process that Visual Studio do
Is it possible that I can achieve this outside Visual Studio?
Upvotes: 1
Views: 827
Reputation: 4298
This should be possible using Nuget.exe and the install-package
etc. Powershell cmdlets. See the blog post Installing NuGet Packages outside of Visual Studio for details!
Upvotes: 1