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
                    
if you are setting up this repo
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
                    
nuke :add-package caplayer --version 6.9.2
                    
  • 安装工具

    # 安装工具
    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 --global
    
  • NUGET 换源

    # 源列表
    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 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.

Version Downloads Last Updated
6.9.2 0 9/1/2026
6.9.1 0 9/1/2026