nuget 管理全局包、缓存和临时文件夹

  1. 查看文件夹位置
bash 复制代码
dotnet nuget locals all --list
  1. 清空数据
bash 复制代码
# Clear the 3.x+ cache (use either command)
dotnet nuget locals http-cache --clear
nuget locals http-cache -clear

# Clear the 2.x cache (NuGet CLI 3.5 and earlier only)
nuget locals packages-cache -clear

# Clear the global packages folder (use either command)
dotnet nuget locals global-packages --clear
nuget locals global-packages -clear

# Clear the temporary cache (use either command)
dotnet nuget locals temp --clear
nuget locals temp -clear

# Clear the plugins cache (use either command)
dotnet nuget locals plugins-cache --clear
nuget locals plugins-cache -clear

# Clear all caches (use either command)
dotnet nuget locals all --clear
nuget locals all -clear

https://learn.microsoft.com/zh-cn/nuget/consume-packages/managing-the-global-packages-and-cache-folders#viewing-folder-locations

相关推荐
q567315231 小时前
用 PHP或Python加密字符串,用iOS解密
java·python·ios·缓存·php·命令模式
只是有点小怂2 小时前
直接缓存映射Direct Mapped Cache
缓存
Allen Bright3 小时前
Redis介绍
数据库·redis·缓存
只是有点小怂5 小时前
缓存冲突(Cache Conflict)
缓存
Allen Bright6 小时前
Redis安装
数据库·redis·缓存
哭哭啼11 小时前
Redis环境部署(主从模式、哨兵模式、集群模式)
数据库·redis·缓存
只是有点小怂15 小时前
受害者缓存(Victim Cache)
缓存
simpleGq16 小时前
Redis知识点整理 - 脑图
数据库·redis·缓存
运维小文17 小时前
服务器硬件介绍
运维·服务器·计算机网络·缓存·硬件架构