2 implementations of PromptForSelectionAsync
aspire (1)
Backchannel\ExtensionBackchannel.cs (1)
401public async Task<T> PromptForSelectionAsync<T>(string promptText, IEnumerable<T> choices, Func<T, string> choiceFormatter,
Aspire.Cli.Tests (1)
TestServices\TestExtensionBackchannel.cs (1)
132public Task<T> PromptForSelectionAsync<T>(string promptText, IEnumerable<T> choices, Func<T, string> choiceFormatter, CancellationToken cancellationToken) where T : notnull
1 reference to PromptForSelectionAsync
aspire (1)
Interaction\ExtensionInteractionService.cs (1)
139var result = await Backchannel.PromptForSelectionAsync(promptText.RemoveSpectreFormatting(), choices, choiceFormatter, _cancellationToken).ConfigureAwait(false);