13 writes to Placeholder
Aspire.Hosting (2)
InteractionService.cs (1)
76
return await PromptInputAsync(title, message, new InteractionInput { InputType = InputType.Text, Label = inputLabel, Required = true,
Placeholder
= placeHolder }, options, cancellationToken).ConfigureAwait(false);
Orchestrator\ParameterProcessor.cs (1)
152
Placeholder
= $"Enter value for {parameter.Name}",
Publishers.AppHost (5)
DistributedApplicationBuilderExtensions.cs (5)
42
Placeholder
= "my-app"
49
Placeholder
= "1.0.0"
101
Placeholder
= "dev, staging, prod"
123
Placeholder
= "Enter a strong password"
170
Placeholder
= "1-10"
Stress.AppHost (6)
InteractionCommands.cs (6)
105
Placeholder
= "Select dinner",
127
var numberOfPeopleInput = new InteractionInput { InputType = InputType.Number, Label = "Number of people",
Placeholder
= "Enter number of people", Value = "2", Required = true };
130
new InteractionInput { InputType = InputType.Text, Label = "Name",
Placeholder
= "Enter name", Required = true },
131
new InteractionInput { InputType = InputType.SecretText, Label = "Password",
Placeholder
= "Enter password", Required = true },
134
new InteractionInput { InputType = InputType.Boolean, Label = "Remember me",
Placeholder
= "What does this do?", Required = true },
178
Placeholder
= $"Enter input {i + 1}"
2 references to Placeholder
Aspire.Hosting (2)
Dashboard\DashboardService.cs (2)
129
if (input.
Placeholder
!= null)
131
dto.Placeholder = input.
Placeholder
;