-1

Is it possible to restore the packages from own server instead of nuget.org site in asp 5 application ?

suppose i have package called mynewpackage which i have added in dependencies in project.json file. i have to restore this packages from own server instead of nuget.org site when do dnu restore

please suggest me an idea to do this

-Guru

user3468621
  • 347
  • 1
  • 3
  • 10
  • Sure, if you [run your own nuget server](https://docs.nuget.org/create/hosting-your-own-nuget-feeds) – blowdart Jan 20 '16 at 13:44

1 Answers1

0

First of all, you have to install a nuget repository to your server. You can follow the step described here

Then open Visual Studio and go to Tools -> NuGet Package Manager -> Package Manager Settings

Then add your nuget repository as you see in the image below, and you are ready

enter image description here

Manos Pasgiannis
  • 1,693
  • 1
  • 18
  • 30