4 references to NoStandardLibraryKey
dotnet-svcutil-lib (4)
CommandProcessorOptions.cs (1)
80
public readonly CommandSwitch NoStdlib = new CommandSwitch(
NoStandardLibraryKey
, "nsl", SwitchType.Flag);
Shared\Options\UpdateOptions.cs (3)
39
public bool? NoStandardLibrary { get { return GetValue<bool?>(
NoStandardLibraryKey
); } set { SetValue(
NoStandardLibraryKey
, value); } }
59
new SingleValueOption<bool>(
NoStandardLibraryKey
) { SerializationName = "noStandardLibrary" },