Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一台 C:\ 驱动器空间不足的机器,我想将 DNX/DOTNET 软件包的安装位置更改为 D:\ 驱动器下的位置。
包缓存位置是否可配置?
注意:我无法灵活地将我的配置文件位置更改为不同的驱动器。
使用NUGET_PACKAGES环境变量并将其设置为您喜欢的路径。
NUGET_PACKAGES
具体来说,打开系统属性,创建一个名为的用户环境变量NUGET_PACKAGES,并将其设置为您选择的路径。
您将需要重新启动 Visual Studio 和任何其他程序才能看到更新的环境变量。
这适用于 Nuget 3.3 / .NET Core RC1。