Implemented interface member:
method
DisplayMessage
Aspire.Cli.Interaction.IInteractionService.DisplayMessage(Aspire.Cli.Interaction.KnownEmoji, System.String, System.Boolean, Aspire.Cli.Interaction.ConsoleOutput?)
11 references to DisplayMessage
aspire (5)
Interaction\ConsoleInteractionService.cs (2)
610DisplayMessage(KnownEmojis.CheckMarkButton, message, allowMarkup); 662DisplayMessage(KnownEmojis.StopSign, $"[teal bold]{message ?? InteractionServiceStrings.StoppingAspire}[/]", allowMarkup: true, consoleOverride: consoleOverride);
Interaction\ExtensionInteractionService.cs (3)
424_consoleInteractionService.DisplayMessage(emoji, message, allowMarkup, consoleOverride); 435_consoleInteractionService.DisplayMessage(emoji, message, allowMarkup, consoleOverride); 444_consoleInteractionService.DisplayMessage(emoji, message, allowMarkup, consoleOverride);
Aspire.Cli.Tests (6)
Interaction\ConsoleInteractionServiceTests.cs (6)
732var exception = Record.Exception(() => interactionService.DisplayMessage(KnownEmojis.PageFacingUp, message)); 758interactionService.DisplayMessage( 924interactionService.DisplayMessage(KnownEmojis.Information, "Status update"); 948var exception = Record.Exception(() => interactionService.DisplayMessage(KnownEmojis.PageFacingUp, $"See logs at {path}")); 974var exception = Record.Exception(() => interactionService.DisplayMessage(KnownEmojis.FileFolder, message, allowMarkup: true)); 1001var exception = Record.Exception(() => interactionService.DisplayMessage(KnownEmojis.FileFolder, message, allowMarkup: true));