How to upgrade nuget with Visual Studio Express 2012

前端 未结 3 745
无人共我
无人共我 2020-12-14 14:52

While installing this package Microsoft.Net.Http via Nuget console I got this error:

Install-Package : The \'Microsoft.Net.Http 2.2.28\' pac         


        
相关标签:
3条回答
  • 2020-12-14 15:03

    To update NuGet in Visual Studio to the latest version you can use the Extensions Manager.

    1. From the Tools menu select Extensions and Updates.
    2. Then in the dialog that opens select the Updates tab.
    3. Then select Visual Studio Gallery.
    4. Select NuGet Package Manager for Visual Studio and click the Update button.

    If you want to install NuGet 2.8.1 you can download the Visual Studio installer (VSIX) from NuGet's CodePlex web site

    0 讨论(0)
  • 2020-12-14 15:07

    Go to the Manage NuGet Packages and click Update button

    0 讨论(0)
  • 2020-12-14 15:24

    Go to Menu and select Tools => NuGet Package Manager => Package Manager Console and type the below command:

    PM> Install-Package NuGet.Client -Version 4.2.0 
    

    For more info: https://www.nuget.org/packages/NuGet.Client/

    0 讨论(0)
提交回复
热议问题