6 references to OutputFileKey
dotnet-svcutil-lib (6)
CommandProcessorOptions.cs (3)
82
public readonly CommandSwitch OutputFile = new CommandSwitch(
OutputFileKey
, "o", SwitchType.SingletonValue, OperationalContext.Global);
415
using (SafeLogger logger = await SafeLogger.WriteStartOperationAsync(this.Logger, $"Resolving {
OutputFileKey
} option ...").ConfigureAwait(false))
457
await logger.WriteMessageAsync($"{
OutputFileKey
}:\"{filePath}\"", logToUI: false).ConfigureAwait(false);
Shared\Options\UpdateOptions.cs (3)
40
public FileInfo OutputFile { get { return GetValue<FileInfo>(
OutputFileKey
); } set { SetValue(
OutputFileKey
, value); } }
60
new SingleValueOption<FileInfo>(
OutputFileKey
),