5 instantiations of new
Aspire.Cli.Tests (5)
Commands\PublishCommandPromptingIntegrationTests.cs (5)
345new("database-connection", "Database Connection String", InputTypes.Text, true, null), 346new("api-key", "API Key", InputTypes.SecretText, true, null), 347new("environment", "Environment", InputTypes.Choice, true, 353new("enable-logging", "Enable Logging", InputTypes.Boolean, false, null) 779_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)
782public void AddMultiInputPrompt(string promptId, string title, string message, IReadOnlyList<PromptInputData> inputs) 889internal sealed record PromptData(string PromptId, IReadOnlyList<PromptInputData> Inputs, string Message, string? Title = null);