希波万象
频道
笔记
图片
随机密码
UUID
二维码
登录
注册
最新
阅读数
一月内
一年内
所有
dotnet清理本地nuget缓存
执行如下命令 ```bash dotnet nuget locals all --clear ```
3
2025年4月17日
dotnet检测过时的包并升级
安装该辅助工具 https://github.com/dotnet-outdated/dotnet-outdated ### 升级依赖的nuget包版本 解决方案目录下执行,检查过期包 dotn...
2
2025年4月17日
查看本地安装的dotnet工具列表
```bash # 查看本地安装的dotnet工具列表 dotnet tool list # 查看全局安装的dotnet工具列表 dotnet tool list --global # 安装dotn...
2
2025年4月17日
上传nuget包
# 构建 dotnet build --configuration Release # 打包 dotnet pack --configuration Release -o .packag...
1
2025年4月17日
1
年度阅读排行
1
dotnet清理本地nuget缓存
2
dotnet检测过时的包并升级
3
查看本地安装的dotnet工具列表
4
上传nuget包