8 implementations of WriteConsoleLog
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
237
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
Interaction\ExtensionInteractionService.cs (1)
342
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
Aspire.Cli.Tests (6)
Commands\NewCommandTests.cs (1)
956
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false) { }
Commands\PublishCommandPromptingIntegrationTests.cs (1)
955
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
Commands\UpdateCommandTests.cs (1)
980
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
Templating\DotNetTemplateFactoryTests.cs (1)
446
public void
WriteConsoleLog
(string message, int? resourceHashCode, string? resourceName, bool isError) { }
TestServices\TestConsoleInteractionService.cs (1)
128
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
TestServices\TestExtensionInteractionService.cs (1)
141
public void
WriteConsoleLog
(string message, int? lineNumber = null, string? type = null, bool isErrorMessage = false)
2 references to WriteConsoleLog
aspire (1)
Commands\ExecCommand.cs (1)
221
InteractionService.
WriteConsoleLog
(output.Text, output.LineNumber, output.Type, output.IsErrorMessage);
Aspire.Cli.Tests (1)
Commands\UpdateCommandTests.cs (1)
981
=> _innerService.
WriteConsoleLog
(message, lineNumber, type, isErrorMessage);