9 implementations of WriteConsoleLog
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
332
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
Interaction\ExtensionInteractionService.cs (1)
437
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
Aspire.Cli.Tests (7)
Commands\NewCommandTests.cs (1)
1588
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false) { }
Commands\PublishCommandPromptingIntegrationTests.cs (1)
969
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
Commands\UpdateCommandTests.cs (1)
1075
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
Projects\ExtensionGuestLauncherTests.cs (1)
157
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false) => throw new NotImplementedException();
Templating\DotNetTemplateFactoryTests.cs (1)
494
public void
WriteConsoleLog
(string message, int? resourceHashCode, string? resourceName, bool isError) { }
TestServices\TestExtensionInteractionService.cs (1)
154
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
TestServices\TestInteractionService.cs (1)
212
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
2 references to WriteConsoleLog
aspire (1)
Commands\ExecCommand.cs (1)
210
InteractionService.
WriteConsoleLog
(output.Text, output.LineNumber, output.Type, output.IsErrorMessage);
Aspire.Cli.Tests (1)
Commands\UpdateCommandTests.cs (1)
1076
=> _innerService.
WriteConsoleLog
(message, lineNumber, type, isErrorMessage);