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

相关推荐
honortech20 分钟前
外部连接 redis-server 相关配置
数据库·redis·缓存
不会写程序的未来程序员20 分钟前
Redis 的内存回收机制详解
数据库·redis·缓存
不会写程序的未来程序员1 小时前
Redis 主从同步原理详解
数据库·redis·缓存
嘻哈baby1 小时前
Redis突然变慢,排查发现是BigKey惹的祸
数据库·redis·缓存
TDengine (老段)2 小时前
TDengine 数据缓存架构及使用详解
大数据·物联网·缓存·架构·时序数据库·tdengine·涛思数据
键来大师2 小时前
Android16 RK3576 系统清理缓存
android·缓存·framework·rk3588·android15
Ghost Face...2 小时前
深入解析dd命令:缓存与磁盘速度之谜
linux·缓存
我要精通C++2 小时前
从源码看nginx的缓存功能
运维·nginx·缓存
Mr.Pascal11 小时前
Redis:主动更新,读时更新,定时任务。三种的优劣势对比
数据库·redis·缓存
gugugu.13 小时前
Redis 字符串类型完全指南:从原理到实战应用
数据库·redis·缓存