8 implementations of WriteConsoleLog
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
186
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
Interaction\ExtensionInteractionService.cs (1)
327
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
Aspire.Cli.Tests (6)
Commands\NewCommandTests.cs (1)
915
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false) { }
Commands\PublishCommandPromptingIntegrationTests.cs (1)
999
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
Commands\UpdateCommandTests.cs (1)
977
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
Templating\DotNetTemplateFactoryTests.cs (1)
430
public void
WriteConsoleLog
(string message, int? resourceHashCode, string? resourceName, bool isError) { }
TestServices\TestConsoleInteractionService.cs (1)
120
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
TestServices\TestExtensionInteractionService.cs (1)
133
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
2 references to WriteConsoleLog
aspire (1)
Commands\ExecCommand.cs (1)
225
InteractionService.
WriteConsoleLog
(output.Text, output.LineNumber, output.Type, output.IsErrorMessage);
Aspire.Cli.Tests (1)
Commands\UpdateCommandTests.cs (1)
978
=> _innerService.
WriteConsoleLog
(message, lineNumber, type, isErrorMessage);