简体   繁体   中英

How to download a Nuget package without nuget.exe or Visual Studio extension?

How can I download a NuGet package? I don't have the NuGet Visual Studio extension or the command line program nuget.exe. How can I download the .nupack file from the web? As I understand I will be able to extract the .dll files from it (with 7-zip) to use as normal.

The package I happen to be interested in is http://nuget.org/packages/Microsoft.Bcl.Async , but I would like to know how to do this generally .

In the world of Ruby this would be easy - every package page on the RubyGems website has a download link to a .gem file, eg: https://rubygems.org/gems/pony


The argument over NuGet's manifest destiny belongs elsewhere. It doesn't matter to this question why I eschew it. I'm not the only one though .

Either make an account on the Nuget.org website, then log in, browse to the package you want and click on the Download link on the left menu.


Or guess the URL. They have the following format:

https://www.nuget.org/api/v2/package/{packageID}/{packageVersion}

Then simply unzip the .nupkg file and extract the contents you need.

Although building the URL or using tools is still possible, it is not needed anymore.

https://www.nuget.org/ currently has a download link named "Download package" , that is available even if you don't have an account on the site.

(at the bottom of the right column).


Example of EntityFramework's detail page: https://www.nuget.org/packages/EntityFramework/ : ( Updated after comment of kwitee. )

EntityFramework 的详细信息页面示例

根据Xavier 的回答,我编写了一个 Google chrome 扩展NuTake来添加指向 Nuget.org 包页面的链接。

要获取 NuGet 包的当前稳定版本,请使用:

https://www.nuget.org/api/v2/package/{packageID}

I haven't tried it yet, but it looks like NuGet Package Explorer should be able to do it:

https://github.com/NuGetPackageExplorer/NuGetPackageExplorer

NuGet 包资源管理器

(or like Colonel Panic says, 7-zip should probably do it)

  1. Go to http://www.nuget.org
  2. Search for desired package. For example: Microsoft.Owin.Host.SystemWeb
  3. Download the package by clicking the Download link on the left.
  4. Do step 3 for the dependencies which are not already installed. Nuget下载页面
  5. Store all downloaded packages in a custom folder. The default is c:\\Package source.
  6. Open Nuget Package Manager in Visual Studio and make sure you have an "Available package source" that points to the specified address in step 5; If not, simply add one by providing a custom name and address. Click OK. 工具->管理 NuGet 包->包管理器设置 NuGet 包管理器选项窗口
  7. At this point you should be able to install the package exactly the same way you would install an online package through the interface . You probably won't be able to install the package using NuGet console.

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