How Do I Update Nuget Packages from dotnet CLI

added by DotNetKicks
5/25/2017 3:09:27 PM

1717 Views

The current version of the dotnet command line interface provides features to add a nuget package, but doesn't expose a separate command to update them. However, you can actually achieve this by simply running the dotnet add package command, for example: If you don't provide a version flag, this will default to upgrading to the latest version.


0 comments