我可以清除我的开发计算机的NuGet包缓存使用Visual Studio菜单工具→选项→NuGet包管理器→通用:清除包缓存按钮。

我希望在命令行上执行此操作。不幸的是,我找不到nuget.exe的相关命令行开关。

我错过什么了吗?


当前回答

NuGet .exe工具没有这个功能,但看到NuGet缓存只是你电脑上的一个文件夹,你可以手动删除文件。只需添加到你的批处理文件:

del %LOCALAPPDATA%\NuGet\Cache\*.nupkg /q

其他回答

如果你需要为你的构建服务器/代理清除NuGet缓存,你可以在这里找到NuGet包的缓存:

%windir%/ServiceProfiles/[在构建服务下运行的帐户]\AppData\Local\NuGet\Cache

例子:

C:\Windows\ServiceProfiles\NetworkService\AppData\Local\NuGet\Cache

对我来说,我必须在这里:

%userprofile%\.nuget\packages

注意,dnx有一个不同的缓存来提供HTTP结果:

Microsoft .NET Development Utility Clr-x86-1.0.0-rc1-16231
   CACHE https://www.nuget.org/api/v2/
   CACHE http://192.168.148.21/api/odata/

你能澄清吗

dnu clear-http-cache

现在我们只需要找出新的dotnet CLI工具上的命令是什么。

...就是这样:

dotnet restore --no-cache

Dotnet nuget本地安全

如果你使用的是。net Core。

对于那些在RHEL7上安装nuget的人(例如,从EPEL存储库中),使用sudo yum install nuget,这里是本地缓存的位置:

~/.local/share/NuGet/Cache