简体   繁体   中英

About Nuget Package Manager for VS 2013

I would like to know 1. Where the Nuget Package manager installed in c drive

  1. When try to check the NuGet installed version using PowerShell script I am getting old version instead of installed version in VS 2013.

  2. I am trying to view the version and folder where it has installed.

您可以在 %windows drive%:\\Users\\your user.nuget\\packages 中看到您的本地 nuget 包

Run the following command:

(Get-PackageProvider -Name NuGet -ListAvailable).ProviderPath

This will give you the path to NuGet installations

In your position, I'd just go ahead and install the latest version of NuGet (Run as Administrator):

Install-PackageProvider -Name NuGet -Force -Scope AllUsers

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM