dotnet nuget list source

本文适用于: ✔️ .NET Core 3.1.200 SDK 及更高版本

“属性”

dotnet nuget list source - 列出所有配置的 NuGet 源。

摘要

dotnet nuget list source [--format [Detailed|Short]] [--configfile <FILE>]

dotnet nuget list source -h|--help

描述

dotnet nuget list source 命令列出 NuGet 配置文件中的所有现有源。

选项

  • --configfile <FILE>

    要使用的 NuGet 配置文件 (nuget.config)。 如果指定,则只使用此文件中的设置。 如果不指定,将使用当前目录中的配置文件的层次结构。 有关详细信息,请参阅常见的 NuGet 配置

  • --format [Detailed|Short]

    list 命令输出的格式为:Detailed(默认值)和 Short

示例

  • 列出当前目录中的已配置源:

    dotnet nuget list source
    

请参阅