Implemented interface member:
method
DisplayMessage
Aspire.Cli.Interaction.IInteractionService.DisplayMessage(Aspire.Cli.Interaction.KnownEmoji, System.String, System.Boolean, Aspire.Cli.Interaction.ConsoleOutput?)
9 references to DisplayMessage
aspire (3)
Interaction\ConsoleInteractionService.cs (2)
610DisplayMessage(KnownEmojis.CheckMarkButton, message, allowMarkup); 655DisplayMessage(KnownEmojis.StopSign, $"[teal bold]{message ?? InteractionServiceStrings.StoppingAspire}[/]", allowMarkup: true, consoleOverride: consoleOverride);
Interaction\ExtensionInteractionService.cs (1)
409_consoleInteractionService.DisplayMessage(emoji, message, allowMarkup, consoleOverride);
Aspire.Cli.Tests (6)
Interaction\ConsoleInteractionServiceTests.cs (6)
688var exception = Record.Exception(() => interactionService.DisplayMessage(KnownEmojis.PageFacingUp, message)); 714interactionService.DisplayMessage( 880interactionService.DisplayMessage(KnownEmojis.Information, "Status update"); 904var exception = Record.Exception(() => interactionService.DisplayMessage(KnownEmojis.PageFacingUp, $"See logs at {path}")); 930var exception = Record.Exception(() => interactionService.DisplayMessage(KnownEmojis.FileFolder, message, allowMarkup: true)); 957var exception = Record.Exception(() => interactionService.DisplayMessage(KnownEmojis.FileFolder, message, allowMarkup: true));