8 implementations of PromptForSelectionsAsync
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
158
public async Task<IReadOnlyList<T>>
PromptForSelectionsAsync
<T>(string promptText, IEnumerable<T> choices, Func<T, string> choiceFormatter, CancellationToken cancellationToken = default) where T : notnull
Interaction\ExtensionInteractionService.cs (1)
192
public async Task<IReadOnlyList<T>>
PromptForSelectionsAsync
<T>(string promptText, IEnumerable<T> choices, Func<T, string> choiceFormatter,
Aspire.Cli.Tests (6)
Commands\NewCommandTests.cs (1)
933
public Task<IReadOnlyList<T>>
PromptForSelectionsAsync
<T>(string promptText, IEnumerable<T> choices, Func<T, string> choiceFormatter, CancellationToken cancellationToken = default) where T : notnull
Commands\PublishCommandPromptingIntegrationTests.cs (1)
908
public Task<IReadOnlyList<T>>
PromptForSelectionsAsync
<T>(string promptText, IEnumerable<T> choices, Func<T, string> choiceFormatter, CancellationToken cancellationToken = default) where T : notnull
Commands\UpdateCommandTests.cs (1)
959
public Task<IReadOnlyList<T>>
PromptForSelectionsAsync
<T>(string promptText, IEnumerable<T> choices, Func<T, string> choiceFormatter, CancellationToken cancellationToken = default) where T : notnull
Templating\DotNetTemplateFactoryTests.cs (1)
415
public Task<IReadOnlyList<T>>
PromptForSelectionsAsync
<T>(string promptText, IEnumerable<T> choices, Func<T, string> choiceFormatter, CancellationToken cancellationToken = default) where T : notnull
TestServices\TestConsoleInteractionService.cs (1)
62
public Task<IReadOnlyList<T>>
PromptForSelectionsAsync
<T>(string promptText, IEnumerable<T> choices, Func<T, string> choiceFormatter, CancellationToken cancellationToken = default) where T : notnull
TestServices\TestExtensionInteractionService.cs (1)
50
public Task<IReadOnlyList<T>>
PromptForSelectionsAsync
<T>(string promptText, IEnumerable<T> choices, Func<T, string> choiceFormatter, CancellationToken cancellationToken = default) where T : notnull
4 references to PromptForSelectionsAsync
aspire (3)
Commands\AgentInitCommand.cs (1)
132
var selected = await _interactionService.
PromptForSelectionsAsync
(
Commands\InitCommand.cs (2)
245
var selectedProjects = await InteractionService.
PromptForSelectionsAsync
(
298
initContext.ProjectsToAddServiceDefaultsTo = await InteractionService.
PromptForSelectionsAsync
(
Aspire.Cli.Tests (1)
Commands\UpdateCommandTests.cs (1)
960
=> _innerService.
PromptForSelectionsAsync
(promptText, choices, choiceFormatter, cancellationToken);