8 references to ConfigOption
dotnet (6)
Commands\Tool\Execute\ToolExecuteCommandParser.cs (1)
22public static readonly Option<string> ConfigOption = ToolInstallCommandParser.ConfigOption;
Commands\Tool\Install\ToolInstallCommandParser.cs (1)
112command.Options.Add(ConfigOption);
Commands\Tool\Install\ToolInstallGlobalOrToolPathCommand.cs (2)
73_configFilePath = parseResult.GetValue(ToolInstallCommandParser.ConfigOption); 88var configOption = parseResult.GetValue(ToolInstallCommandParser.ConfigOption);
Commands\Tool\Install\ToolInstallLocalInstaller.cs (1)
34_configFilePath = parseResult.GetValue(ToolInstallCommandParser.ConfigOption);
Commands\Tool\Restore\ToolRestoreCommandParser.cs (1)
15public static readonly Option<string> ConfigOption = ToolInstallCommandParser.ConfigOption;
dotnet.Tests (2)
CommandTests\Tool\Install\InstallToolParserTests.cs (1)
42result.GetRequiredValue(ToolInstallCommandParser.ConfigOption).Should().Be(@"C:\TestAssetLocalNugetFeed");
CommandTests\Tool\Update\UpdateToolParserTests.cs (1)
62result.GetValue(ToolInstallCommandParser.ConfigOption).Should().Be(@"C:\TestAssetLocalNugetFeed");