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