4 references to VerbosityKey
dotnet-svcutil-lib (4)
CommandProcessorOptions.cs (1)
91public readonly CommandSwitch Verbosity = new CommandSwitch(VerbosityKey, "v", SwitchType.SingletonValue);
Shared\Options\SvcutilOptions.cs (3)
42public Verbosity? Verbosity { get { return GetValue<Verbosity?>(VerbosityKey); } set { SetValue(VerbosityKey, value); } } 61new SingleValueOption<Verbosity>(VerbosityKey) { DefaultValue = Svcutil.Verbosity.Normal },