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

相关推荐
Wx120不知道取啥名2 小时前
缓存为什么比主存快?
缓存·缓存为什么比主存快?·sram的原理·dram的原理
天天向上杰8 小时前
简识Redis 持久化相关的 “Everysec“ 策略
数据库·redis·缓存
清风-云烟9 小时前
使用redis-cli命令实现redis crud操作
java·linux·数据库·redis·spring·缓存·1024程序员节
Fireworkitte12 小时前
Redis线上阻塞要如何排查
数据库·redis·缓存
文人sec13 小时前
解锁速度之门:Redis
数据库·redis·python·缓存
Rverdoser14 小时前
多级缓存 JVM进程缓存
jvm·缓存
步、步、为营16 小时前
C# 通用缓存类开发:开启高效编程之门
缓存·c#·.net
小馋喵知识杂货铺16 小时前
Redis性能测试
数据库·redis·缓存
中东大鹅2 天前
Redis实训:社交关注关系存储任务
大数据·数据库·hadoop·redis·分布式·缓存
麒麟而非淇淋2 天前
多级缓存 JVM进程缓存
java·redis·缓存