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