7 references to VerbosityOption
dotnet (5)
Commands\Tool\Execute\ToolExecuteCommandParser.cs (1)
27public static readonly Option<Utils.VerbosityOptions> VerbosityOption = ToolInstallCommandParser.VerbosityOption;
Commands\Tool\Install\ToolInstallCommandParser.cs (1)
123command.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)
21public static readonly Option<Utils.VerbosityOptions> VerbosityOption = ToolInstallCommandParser.VerbosityOption;
dotnet.Tests (2)
CommandTests\Tool\Install\InstallToolParserTests.cs (1)
107Enum.GetName(result.GetRequiredValue(ToolInstallCommandParser.VerbosityOption)).Should().Be(expectedVerbosityLevel);
CommandTests\Tool\Update\UpdateToolParserTests.cs (1)
100Enum.GetName(result.GetValue(ToolInstallCommandParser.VerbosityOption)).Should().Be(expectedVerbosityLevel);