5 instantiations of new
Aspire.Cli.Tests (5)
Commands\PublishCommandPromptingIntegrationTests.cs (5)
344new("database-connection", "Database Connection String", InputTypes.Text, true, null), 345new("api-key", "API Key", InputTypes.SecretText, true, null), 346new("environment", "Environment", InputTypes.Choice, true, 352new("enable-logging", "Enable Logging", InputTypes.Boolean, false, null) 778_promptsToSend.Add(new PromptData(promptId, [new PromptInputData(promptId, label, inputType, isRequired, options, defaultValue, validationErrors)], message));
2 references to new
Aspire.Cli.Tests (2)
Commands\PublishCommandPromptingIntegrationTests.cs (2)
781public void AddMultiInputPrompt(string promptId, string title, string message, IReadOnlyList<PromptInputData> inputs) 884internal sealed record PromptData(string PromptId, IReadOnlyList<PromptInputData> Inputs, string Message, string? Title = null);