8 writes to EnableMessageMarkdown
Aspire.Hosting (1)
Orchestrator\ParameterProcessor.cs (1)
165
EnableMessageMarkdown
= true,
Aspire.Hosting.Azure (1)
Provisioning\Internal\DefaultProvisioningContextProvider.cs (1)
110
EnableMessageMarkdown
= true,
Stress.AppHost (6)
InteractionCommands.cs (6)
50
_ = interactionService.PromptNotificationAsync("Success <strong>bar</strong>", "The **command** successfully executed.", new NotificationInteractionOptions { Intent = MessageIntent.Success,
EnableMessageMarkdown
= true });
51
_ = interactionService.PromptNotificationAsync("Success <strong>bar</strong>", "Multiline 1\r\n\r\nMultiline 2", new NotificationInteractionOptions { 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 });
61
_ = await interactionService.PromptInputAsync("Text <strong>request</strong>", "Provide **your** name. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce id massa arcu. Morbi ac risus eget augue venenatis hendrerit. Morbi posuere, neque id efficitur ultrices, velit augue suscipit ante, vitae lacinia elit risus nec dui. For more information about the `IInteractionService`, see https://learn.microsoft.com.", inputHasMarkdown, new InputsDialogInteractionOptions {
EnableMessageMarkdown
= true });
62
_ = await interactionService.PromptInputAsync("Text <strong>request</strong>", "Provide **your** name.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce id massa arcu. Morbi ac risus eget augue venenatis hendrerit. Morbi posuere, neque id efficitur ultrices, velit augue suscipit ante, vitae lacinia elit risus nec dui.\r\n\r\nFor more information about the `IInteractionService`, see https://learn.microsoft.com.", inputHasMarkdown, new InputsDialogInteractionOptions {
EnableMessageMarkdown
= true });
4 references to EnableMessageMarkdown
Aspire.Hosting (1)
Dashboard\DashboardService.cs (1)
90
change.EnableMessageMarkdown = interaction.Options.
EnableMessageMarkdown
?? false;
Aspire.Hosting.Azure.Tests (2)
AzureDeployerTests.cs (1)
78
Assert.True(inputsInteraction.Options!.
EnableMessageMarkdown
);
DefaultProvisioningContextProviderTests.cs (1)
275
Assert.True(inputsInteraction.Options!.
EnableMessageMarkdown
);
Aspire.Hosting.Tests (1)
Orchestrator\ParameterProcessorTests.cs (1)
203
Assert.True(inputsInteraction.Options!.
EnableMessageMarkdown
);