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