4 references to NoLogoKey
dotnet-svcutil-lib (4)
CommandProcessorOptions.cs (1)
76
public readonly CommandSwitch NoLogo = new CommandSwitch(
NoLogoKey
, "nl", SwitchType.Flag);
Shared\Options\SvcutilOptions.cs (3)
36
public bool? NoLogo { get { return GetValue<bool?>(
NoLogoKey
); } set { SetValue(
NoLogoKey
, value); } }
55
new SingleValueOption<bool>(
NoLogoKey
),