I am looking for a way to start visual studio and then run some commands in the package manager console for nuget.
How to do the following steps:
- Open visual studio (command line / no gui / silent)
- Call the nuget update statement:
Update-Package MyNamespace.MyProject -Version xxx
At first I tried to do this through nuget.exe, but it seems that Install.ps1 scripts are not executing. ( http://blog.davidebbo.com/2011/05/thoughts-on-installing-and-updating.html )
source share