Download Nuget Packages Without VS/NuGet Package Manager

后端 未结 6 1836
盖世英雄少女心
盖世英雄少女心 2021-02-01 04:01

How can I download NuGet Packages outside of visual studio? so it can be used to create offline packages.

6条回答
  •  闹比i
    闹比i (楼主)
    2021-02-01 04:20

    How to download NuGet Package without Visual Studio or Nuget Package Manager:

    1. Search your desired package at NuGet Official Site.

    2. Copy the end of the URL of the package page. For Example: http://nuget.org/packages/EntityFramework => Package Name is "EntityFramework"

    3. Enter the URL: http://packages.nuget.org/api/v1/package/{Package Name} For Example: http://packages.nuget.org/api/v1/package/EntityFramework

提交回复
热议问题