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)
3 references to PromptForSelectionsAsync
aspire (1)
Interaction\ExtensionInteractionService.cs (1)
217
return await _consoleInteractionService.
PromptForSelectionsAsync
(promptText, choices, choiceFormatter, cancellationToken);
Aspire.Cli.Tests (2)
Interaction\ConsoleInteractionServiceTests.cs (2)
36
interactionService.
PromptForSelectionsAsync
("Select items:", choices, x => x, CancellationToken.None));
266
interactionService.
PromptForSelectionsAsync
("Select items:", choices, x => x, CancellationToken.None));