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

相关推荐
weisian1519 小时前
Redis篇--常见问题篇3--缓存击穿(数据查询上锁,异步操作,熔断降级,三种缓存问题综合优化策略)
数据库·redis·缓存
袁震9 小时前
Android-Glide缓存机制
android·缓存·移动开发·glide
HEU_firejef11 小时前
redis——布隆过滤器
数据库·redis·缓存
2401_8711510715 小时前
12月第十九讲:Redis应用Redis相关解决方案
数据库·redis·缓存
Pafey20 小时前
git 删除鉴权缓存及账号信息
git·缓存
weisian1511 天前
Redis篇--常见问题篇2--缓存雪崩(过期时间分散,缓存预热,多级缓存)
数据库·redis·缓存
苓诣1 天前
LRU 缓存
缓存·lru
c洛#1 天前
Linux缓存管理:如何安全地清理系统缓存
linux·运维·缓存
万物得其道者成1 天前
使用 js-cookie 和 localStorage/sessionStorage 构建高效的浏览器缓存管理
开发语言·javascript·缓存
娶个名字趴1 天前
Redis(2)常用命令
java·数据库·redis·缓存