Download Nuget Packages Without VS/NuGet Package Manager
nuget, nuget-package, repository
Solution
How to download NuGet Package without Visual Studio or Nuget Package Manager:
Search your desired package at NuGet Official Site.
Copy the end of the URL of the package page. For Example: http://nuget.org/packages/EntityFramework => Package Name is "EntityFramework"
- Enter the URL: http://packages.nuget.org/api/v1/package/{Package Name} For Example: http://packages.nuget.org/api/v1/package/EntityFramework
Problem
How can I download NuGet Packages outside of visual studio? so it can be used to create offline packages.