11 references to Global
dotnet-svcutil-lib (11)
Bootstrapper\SvcutilBootstrapper.cs (1)
37
if (this.Options.ToolContext.HasValue && this.Options.ToolContext.Value <= OperationalContext.
Global
)
CommandProcessorOptions.cs (8)
82
public readonly CommandSwitch OutputDirectory = new CommandSwitch(OutputDirKey, "d", SwitchType.SingletonValue, OperationalContext.
Global
);
83
public readonly CommandSwitch OutputFile = new CommandSwitch(OutputFileKey, "o", SwitchType.SingletonValue, OperationalContext.
Global
);
84
public readonly CommandSwitch ProjectFile = new CommandSwitch(ProjectFileKey, "pf", SwitchType.SingletonValue, OperationalContext.
Global
);
86
public readonly CommandSwitch RuntimeIdentifier = new CommandSwitch(RuntimeIdentifierKey, "ri", SwitchType.SingletonValue, OperationalContext.
Global
);
89
public readonly CommandSwitch TargetFramework = new CommandSwitch(TargetFrameworkKey, "tf", SwitchType.SingletonValue, OperationalContext.
Global
);
153
.Where(s => !s_cmdLineOverwriteSwitches.Contains(s.Name) && s.SwitchLevel <= OperationalContext.
Global
&& options.Any(o =>
438
if (!IsUpdateOperation && this.ToolContext <= OperationalContext.
Global
&& File.Exists(filePath))
618
await logger.WriteMessageAsync(Shared.Resources.ResolvingProjectReferences, logToUI: this.ToolContext <= OperationalContext.
Global
).ConfigureAwait(false);
Tool.cs (2)
175
if (options?.ToolContext <= OperationalContext.
Global
)
400
if (options == null || options.ToolContext <= OperationalContext.
Global
)