5 instantiations of new
Aspire.Cli.Tests (5)
Commands\PublishCommandPromptingIntegrationTests.cs (5)
345new("Database Connection String", InputTypes.Text, true, null), 346new("API Key", InputTypes.SecretText, true, null), 347new("Environment", InputTypes.Choice, true, 353new("Enable Logging", InputTypes.Boolean, false, null) 507_promptsToSend.Add(new PromptData(promptId, [new PromptInputData(label, inputType, isRequired, options, defaultValue)], message));
2 references to new
Aspire.Cli.Tests (2)
Commands\PublishCommandPromptingIntegrationTests.cs (2)
510public void AddMultiInputPrompt(string promptId, string title, string message, IReadOnlyList<PromptInputData> inputs) 589internal sealed record PromptData(string PromptId, IReadOnlyList<PromptInputData> Inputs, string Message, string? Title = null);