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