How to get the url of a .nupkg file?

前端 未结 1 1884
北荒
北荒 2021-01-31 07:44

I want to download some .nupkg files using my browser

In nuget.org, there are no links to the .nupkg file

相关标签:
1条回答
  • 2021-01-31 08:30

    The URLs are typically in the format:

    http://nuget.org/api/v2/package/PACKAGE_ID/VERSION
    

    For example, for WebActivator:

    http://nuget.org/api/v2/package/Microsoft.Web.Infrastructure/1.0.0.0
    

    If you just want the latest version of the package, leave out the version number:

    http://nuget.org/api/v2/package/Microsoft.Web.Infrastructure/
    
    0 讨论(0)
提交回复
热议问题