How to install NuGet packages without internet connection?

I am currently developing a virtual PC that is not allowed access to the Internet. I managed to get NuGet.Tools.vsix to add NuGet in Visual Studio 2010, but it may not seem like how to deploy NuGet packages offline.

For example, I downloaded EntityFramework 5.0.0 nuget.org and moved it to my virtual computer. How to complete the last step of deploying this package in my solution?

Thanks in advance

+4
source share
2 answers

Here you can read how to create a local NuGet feed.

Hope this helps

+5
source

1) Tools -> Options -> Package Manager

2) Then click "Source" and Add .

3) Then you can find istall in the list.

+2
source

Source: https://habr.com/ru/post/1497926/


All Articles