From Nuget CLI is it possible from a single command to upgrade multiple packages to the desired version?
I know we can do
nuget.exe update "FooBar.sln" MyPackage -Version 1.0
but what if I want to update 2 packages to 1.0
?
This still updates to the latest version but not to the version I desire.
nuget.exe update "FooBar.sln" -Id MyPackage -Id MyPackage2 -Version 1.0
What will be the command for that and will there be any dependency on each other like both package will update only when they both are on a project (https://stackoverflow.com/a/16302774/1011959)?