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)
81
public readonly CommandSwitch OutputDirectory = new CommandSwitch(OutputDirKey, "d", SwitchType.SingletonValue, OperationalContext.
Global
);
82
public readonly CommandSwitch OutputFile = new CommandSwitch(OutputFileKey, "o", SwitchType.SingletonValue, OperationalContext.
Global
);
83
public readonly CommandSwitch ProjectFile = new CommandSwitch(ProjectFileKey, "pf", SwitchType.SingletonValue, OperationalContext.
Global
);
85
public readonly CommandSwitch RuntimeIdentifier = new CommandSwitch(RuntimeIdentifierKey, "ri", SwitchType.SingletonValue, OperationalContext.
Global
);
88
public readonly CommandSwitch TargetFramework = new CommandSwitch(TargetFrameworkKey, "tf", SwitchType.SingletonValue, OperationalContext.
Global
);
152
.Where(s => !s_cmdLineOverwriteSwitches.Contains(s.Name) && s.SwitchLevel <= OperationalContext.
Global
&& options.Any(o =>
437
if (!IsUpdateOperation && this.ToolContext <= OperationalContext.
Global
&& File.Exists(filePath))
617
await logger.WriteMessageAsync(Shared.Resources.ResolvingProjectReferences, logToUI: this.ToolContext <= OperationalContext.
Global
).ConfigureAwait(false);
Tool.cs (2)
175
if (options?.ToolContext <= OperationalContext.
Global
)
415
if (options == null || options.ToolContext <= OperationalContext.
Global
)