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

相关推荐
lypzcgf9 分钟前
FastbuildAI后端Redis模块注册分析
redis·缓存·ai应用·ai创业·智能体平台·ai应用平台·agent平台
Lu Yao_6 小时前
Redis 持久化
数据库·redis·缓存
June`6 小时前
Redis5安装与核心命令详解
数据库·redis·缓存
阿巴~阿巴~12 小时前
Redis 核心文件、命令与操作指南
数据库·redis·缓存·客户端·服务端
huihuihuanhuan.xin13 小时前
后端八股之Redis
数据库·redis·缓存
zym大哥大20 小时前
Redis-List
数据库·redis·缓存
银迢迢1 天前
redis项目知识体系
数据库·redis·缓存
曾几何时`1 天前
链表OJ(十六)146. 模拟LRU 缓存 双向链表+哈希
链表·缓存·哈希算法
程序员水自流1 天前
MySQL InnoDB存储引擎缓存刷盘CheckPoint技术底层实现原理详细介绍
数据库·mysql·缓存
半截詩1 天前
苍穹外卖-Day7(缓存菜品/套餐,清除缓存)
缓存