7 references to OutputDirKey
dotnet-svcutil-lib (7)
CommandProcessorOptions.cs (3)
81
public readonly CommandSwitch OutputDirectory = new CommandSwitch(
OutputDirKey
, "d", SwitchType.SingletonValue, OperationalContext.Global);
378
using (SafeLogger logger = await SafeLogger.WriteStartOperationAsync(this.Logger, $"Resolving {
OutputDirKey
} option ...").ConfigureAwait(false))
399
await logger.WriteMessageAsync($"{
OutputDirKey
}:\"{this.OutputDir}\"", logToUI: false).ConfigureAwait(false);
Shared\Options\SvcutilOptions.cs (4)
39
public DirectoryInfo OutputDir { get { return GetValue<DirectoryInfo>(
OutputDirKey
); } set { SetValue(
OutputDirKey
, value); } }
58
new SingleValueOption<DirectoryInfo>(
OutputDirKey
,
OutputDirKey
),