IAmCoder
IAmCoder

Reputation: 3442

How to upgrade NuGet in Visual Studio 2013

Ran into the following error during the Google Cloud Platform Bookshelf tutorial:

Error 1 NuGet Package restore failed for project 2-structured-data: The 'Microsoft.NETCore.Platforms 1.0.1' package requires NuGet client version '2.12' or above, but the current NuGet version is '2.8.50926.663'..

Where do I update NuGet?

Upvotes: 38

Views: 37811

Answers (3)

Brijesh Kumar Tripathi
Brijesh Kumar Tripathi

Reputation: 2976

You can download the NuGet Package Manager for Visual Studio 2013 from

https://marketplace.visualstudio.com/items?itemName=NuGetTeam.NuGetPackageManagerforVisualStudio2013

and install it on your machine. The version of NuGet Package Manager for Visual Studio 2013 which is available on this download URL is 2.12.0.817.

Upvotes: 4

Md Shahriar
Md Shahriar

Reputation: 2736

enter image description here

Right click on References and choose Manage NuGet Packages. Then search NuGet

Upvotes: -1

IAmCoder
IAmCoder

Reputation: 3442

Found it in the menu under Tools -> Extensions and Updates -> Updates tab -> Visual Studio Gallery.

Upvotes: 88

Related Questions