7 writes to EnableMessageMarkdown
Aspire.Hosting (1)
Orchestrator\ParameterProcessor.cs (1)
171EnableMessageMarkdown = 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)
90change.EnableMessageMarkdown = interaction.Options.EnableMessageMarkdown ?? false;
Aspire.Hosting.Tests (1)
Orchestrator\ParameterProcessorTests.cs (1)
200Assert.True(inputsInteraction.Options!.EnableMessageMarkdown);