8 implementations of WriteConsoleLog
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
271
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
Interaction\ExtensionInteractionService.cs (1)
420
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
Aspire.Cli.Tests (6)
Commands\NewCommandTests.cs (1)
1416
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false) { }
Commands\PublishCommandPromptingIntegrationTests.cs (1)
963
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
Commands\UpdateCommandTests.cs (1)
1077
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
Templating\DotNetTemplateFactoryTests.cs (1)
494
public void
WriteConsoleLog
(string message, int? resourceHashCode, string? resourceName, bool isError) { }
TestServices\TestConsoleInteractionService.cs (1)
135
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
TestServices\TestExtensionInteractionService.cs (1)
148
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)
1078
=> _innerService.
WriteConsoleLog
(message, lineNumber, type, isErrorMessage);