有没有办法从 nuget.org 下载包然后离线安装到 Visual Studio 中?
我的 Visual Studio 安装在没有 Internet 连接的计算机上,因此我无法从 VS 中的 NuGet Manager 下载和安装包。
所以我正在寻找一种方法,使用另一台有互联网连接的机器来下载软件包,然后安装在VS上。
My visual studio is installed on a machine which doesn't have internet connection so I can't download and install packages from NuGet Manager in VS.
So I am looking for a way to use another machine which has internet connection to download packages and then install on VS.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
首先,下载
.nupkg
文件:按照 如何下载没有 nuget.exe 或 Visual Studio 扩展的 Nuget 包?
或者使用我的 Google Chrome 扩展程序NuTake
其次,将
.nupkg
文件安装到您的项目中First, download the
.nupkg
file:Follow the instructions at How to download a Nuget package without nuget.exe or Visual Studio extension?
Or use my Google Chrome extension NuTake
Secondly, install the
.nupkg
file into your project您可以使用 NuGet Package Explorer 在 VS 外部下载包。
You can use the NuGet Package Explorer to download packages outside VS.
除了建议的答案之外,您还可以:
NuGet.config
中的包文件夹:注意:
NuGet.config
应与您的解决方案位于同一目录中 (*.sln
) 文件。.gitignore
中删除**/packages/*
。offline-packages
目录。Alternatively to proposed answers, you can:
NuGet.config
:NOTE that:
NuGet.config
should be in the same directory as your solution (*.sln
) file.**/packages/*
from the.gitignore
.offline-packages
directory.