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