Implemented interface member:
method
DisplayMessage
Aspire.Cli.Interaction.IInteractionService.DisplayMessage(Aspire.Cli.Interaction.KnownEmoji, System.String, System.Boolean)
8 references to DisplayMessage
aspire (4)
Interaction\ConsoleInteractionService.cs (3)
231DisplayMessage(KnownEmojis.CrossMark, $"[red bold]{errorMessage.EscapeMarkup()}[/]", allowMarkup: true); 284DisplayMessage(KnownEmojis.CheckMark, message, allowMarkup); 310DisplayMessage(KnownEmojis.StopSign, $"[teal bold]{InteractionServiceStrings.StoppingAspire}[/]", allowMarkup: true);
Interaction\ExtensionInteractionService.cs (1)
250_consoleInteractionService.DisplayMessage(emoji, message, allowMarkup);
Aspire.Cli.Tests (4)
Interaction\ConsoleInteractionServiceTests.cs (4)
406var exception = Record.Exception(() => interactionService.DisplayMessage(KnownEmojis.PageFacingUp, message)); 491var exception = Record.Exception(() => interactionService.DisplayMessage(KnownEmojis.PageFacingUp, $"See logs at {path}")); 518var exception = Record.Exception(() => interactionService.DisplayMessage(KnownEmojis.FileFolder, message, allowMarkup: true)); 546var exception = Record.Exception(() => interactionService.DisplayMessage(KnownEmojis.FileFolder, message, allowMarkup: true));