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.Collections.Generic.IEnumerable<T>, System.Boolean, System.Threading.CancellationToken)
3 references to PromptForSelectionsAsync
aspire (1)
Interaction\ExtensionInteractionService.cs (1)
294return await _consoleInteractionService.PromptForSelectionsAsync(promptText, choices, choiceFormatter, preSelected, optional, cancellationToken);
Aspire.Cli.Tests (2)
Interaction\ConsoleInteractionServiceTests.cs (2)
46interactionService.PromptForSelectionsAsync("Select items:", choices, x => x, cancellationToken: CancellationToken.None)); 276interactionService.PromptForSelectionsAsync("Select items:", choices, x => x, cancellationToken: CancellationToken.None));