2 implementations of PromptForSelectionsAsync
aspire (1)
Backchannel\ExtensionBackchannel.cs (1)
441
public async Task<IReadOnlyList<T>>
PromptForSelectionsAsync
<T>(string promptText, IEnumerable<T> choices, Func<T, string> choiceFormatter,
Aspire.Cli.Tests (1)
TestServices\TestExtensionBackchannel.cs (1)
160
public 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)
201
var result = await Backchannel.
PromptForSelectionsAsync
(promptText.RemoveSpectreFormatting(), choices, choiceFormatter, _cancellationToken).ConfigureAwait(false);