caplayer 6.9.2
dotnet tool install --global caplayer --version 6.9.2
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
dotnet tool install --local caplayer --version 6.9.2
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=caplayer&version=6.9.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
nuke :add-package caplayer --version 6.9.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
安装工具
# 安装工具 dotnet tool install --global caplayer # 卸载 dotnet tool uninstall --global caplayer # 更新 dotnet tool update --global caplayer # 查看安装日志,确认安装位置 dotnet tool install --global caplayer --verbosity detailed # 查看所有已安装的全局工具 dotnet tool list --globalNUGET 换源
# 源列表 dotnet nuget list source # 增加源 dotnet nuget add source https://nuget.cdn.azure.cn/v3/index.json --cdn dotnet nuget add source https://repo.huaweicloud.com/repository/nuget/v3/index.json --huawei # 删除名为 huawei 的源 dotnet nuget remove source huawei # 禁用 huawei 源(不会删除配置) dotnet nuget disable source huawei # 重新启用 huawei 源 dotnet nuget enable source huawei修复 PATH 环境变量
.NET 全局工具的默认路径是
~/.dotnet/tools,需要将它添加到 PATH 中:# 检查当前 PATH echo $PATH # 临时添加(当前会话有效) export PATH="$PATH:/root/.dotnet/tools" # 永久添加(推荐) echo 'export PATH="$PATH:/root/.dotnet/tools"' >> ~/.bashrc source ~/.bashrc工具使用说明
其他
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.