安全清理 NuGet 缓存
原文英文,约300词,阅读约需1分钟。发表于: 。Hi folks! I want to discuss about NuGet packages. If you frequently work with different .NET projects, you will eventually encounter disk overflow. This has been caused by Dotnet downloading NuGet...
.NET项目中,NuGet包会占用大量磁盘空间,因为每次运行项目时,Dotnet会从缓存中获取包。可以通过清理.nuget文件夹删除旧版本和未使用的包,使用命令`dotnet nuget locals all --clear`快速释放空间。