7 references to VerbosityOption
dotnet (5)
Commands\Tool\Execute\ToolExecuteCommandParser.cs (1)
27
public static readonly Option<Utils.VerbosityOptions> VerbosityOption = ToolInstallCommandParser.
VerbosityOption
;
Commands\Tool\Install\ToolInstallCommandParser.cs (1)
123
command.Options.Add(
VerbosityOption
);
Commands\Tool\Install\ToolInstallGlobalOrToolPathCommand.cs (1)
78
_verbosity = GetValueOrDefault(ToolInstallCommandParser.
VerbosityOption
, VerbosityOptions.minimal, parseResult);
Commands\Tool\Install\ToolInstallLocalInstaller.cs (1)
36
_verbosity = parseResult.GetValue(ToolInstallCommandParser.
VerbosityOption
);
Commands\Tool\Restore\ToolRestoreCommandParser.cs (1)
21
public static readonly Option<Utils.VerbosityOptions> VerbosityOption = ToolInstallCommandParser.
VerbosityOption
;
dotnet.Tests (2)
CommandTests\Tool\Install\InstallToolParserTests.cs (1)
107
Enum.GetName(result.GetRequiredValue(ToolInstallCommandParser.
VerbosityOption
)).Should().Be(expectedVerbosityLevel);
CommandTests\Tool\Update\UpdateToolParserTests.cs (1)
100
Enum.GetName(result.GetValue(ToolInstallCommandParser.
VerbosityOption
)).Should().Be(expectedVerbosityLevel);