1 instantiation of PublishingPromptInput
Aspire.Cli.Tests (1)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
1038var inputs = prompt.Inputs.Select(input => new PublishingPromptInput
7 references to PublishingPromptInput
aspire (7)
Commands\PipelineCommandBase.cs (6)
1039private static string BuildPromptText(PublishingPromptInput input, int inputCount, string statusText, PublishingActivityData activityData) 1093var input = inputs[i]; 1122private async Task<string?> HandleSingleInputAsync(PublishingPromptInput input, string promptText, IAppHostCliBackchannel backchannel, string interactionId, CancellationToken cancellationToken) 1169private async Task<string?> HandleSelectInputAsync(PublishingPromptInput input, string promptText, CancellationToken cancellationToken) 1203private async Task<string?> HandleNumberInputAsync(PublishingPromptInput input, string promptText, CancellationToken cancellationToken) 1223private async Task<string?> HandleFileInputAsync(PublishingPromptInput input, string promptText, IAppHostCliBackchannel backchannel, string interactionId, CancellationToken cancellationToken)
src\Aspire.Hosting\Backchannel\BackchannelDataTypes.cs (1)
822public IReadOnlyList<PublishingPromptInput>? Inputs { get; init; }