Implemented interface member:
method
PromptForSelectionsAsync<T>
Aspire.Cli.Interaction.IInteractionService.PromptForSelectionsAsync<T>(System.String, System.Collections.Generic.IEnumerable<T>, System.Func<T, System.String>, System.Threading.CancellationToken)
2 references to PromptForSelectionsAsync
aspire (1)
Interaction\ExtensionInteractionService.cs (1)
215
return await _consoleInteractionService.
PromptForSelectionsAsync
(promptText, choices, choiceFormatter, cancellationToken);
Aspire.Cli.Tests (1)
Interaction\ConsoleInteractionServiceTests.cs (1)
35
interactionService.
PromptForSelectionsAsync
("Select items:", choices, x => x, CancellationToken.None));