2 implementations of WriteMessageAsync
dotnet-svcutil-lib (2)
DebugLogger.cs (1)
63public Task WriteMessageAsync(string message, bool logToUI)
Shared\Utilities\SafeLogger.cs (1)
60public Task WriteMessageAsync(string message, bool logToUI)
3 references to WriteMessageAsync
dotnet-svcutil-lib (3)
CommandProcessorOptions.cs (2)
1014this.Logger?.WriteMessageAsync($"Bootstrap directory '{this.BootstrapPath}' ...", logToUI: false); 1018this.Logger?.WriteMessageAsync($"Deleting bootstrap directory '{this.BootstrapPath}' ...", logToUI: false);
Shared\Utilities\SafeLogger.cs (1)
64return this.logger.WriteMessageAsync(message, logToUI);