7 writes to EnableMessageMarkdown
Aspire.Hosting (1)
Orchestrator\ParameterProcessor.cs (1)
171
EnableMessageMarkdown
= true,
Stress.AppHost (6)
InteractionCommands.cs (6)
50
_ = interactionService.PromptMessageBarAsync("Success <strong>bar</strong>", "The **command** successfully executed.", new MessageBarInteractionOptions { Intent = MessageIntent.Success,
EnableMessageMarkdown
= true });
51
_ = interactionService.PromptMessageBarAsync("Success <strong>bar</strong>", "Multiline 1\r\n\r\nMultiline 2", new MessageBarInteractionOptions { Intent = MessageIntent.Success,
EnableMessageMarkdown
= true });
54
_ = interactionService.PromptMessageBoxAsync("Success <strong>bar</strong>", "The **command** successfully executed.", new MessageBoxInteractionOptions { Intent = MessageIntent.Success,
EnableMessageMarkdown
= true });
55
_ = interactionService.PromptMessageBoxAsync("Success <strong>bar</strong>", "Multiline 1\r\n\r\nMultiline 2", new MessageBoxInteractionOptions { Intent = MessageIntent.Success,
EnableMessageMarkdown
= true });
58
_ = await interactionService.PromptInputAsync("Text <strong>request</strong>", "Provide **your** name", "<strong>Name</strong>", "Enter <strong>your</strong> name", new InputsDialogInteractionOptions {
EnableMessageMarkdown
= true });
59
_ = await interactionService.PromptInputAsync("Text <strong>request</strong>", "Multiline 1\r\n\r\nMultiline 2", "<strong>Name</strong>", "Enter <strong>your</strong> name", new InputsDialogInteractionOptions {
EnableMessageMarkdown
= true });
2 references to EnableMessageMarkdown
Aspire.Hosting (1)
Dashboard\DashboardService.cs (1)
90
change.EnableMessageMarkdown = interaction.Options.
EnableMessageMarkdown
?? false;
Aspire.Hosting.Tests (1)
Orchestrator\ParameterProcessorTests.cs (1)
200
Assert.True(inputsInteraction.Options!.
EnableMessageMarkdown
);