5 instantiations of new
Aspire.Cli.Tests (5)
Commands\PublishCommandPromptingIntegrationTests.cs (5)
345
new
("Database Connection String", InputTypes.Text, true, null),
346
new
("API Key", InputTypes.SecretText, true, null),
347
new
("Environment", InputTypes.Choice, true,
353
new
("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)
510
public void AddMultiInputPrompt(string promptId, string title, string message, IReadOnlyList<
PromptInputData
> inputs)
589
internal sealed record PromptData(string PromptId, IReadOnlyList<
PromptInputData
> Inputs, string Message, string? Title = null);