6 writes to Options
Aspire.Hosting.Azure (1)
Provisioning\Internal\DefaultProvisioningContextProvider.cs (1)
104
new InteractionInput { InputType = InputType.Choice, Label = "Location", Placeholder = "Select location", Required = true,
Options
= [..locations] },
Aspire.Hosting.Tests (1)
InteractionServiceTests.cs (1)
230
var input = new InteractionInput { Label = "Value", InputType = InputType.Choice,
Options
= [KeyValuePair.Create("first", "First option!"), KeyValuePair.Create("second", "Second option!")] };
Publishers.AppHost (3)
DistributedApplicationBuilderExtensions.cs (3)
56
Options
=
137
Options
=
184
Options
=
Stress.AppHost (1)
InteractionCommands.cs (1)
110
Options
=
7 references to Options
Aspire.Hosting (4)
Dashboard\DashboardService.cs (2)
142
if (input.
Options
!= null)
144
dto.Options.Add(input.
Options
.ToDictionary());
InteractionService.cs (1)
275
if (!input.
Options
?.Any(o => o.Key == value) ?? true)
Publishing\PublishingActivityReporter.cs (1)
291
Options = input.
Options
,
Aspire.Hosting.Azure.Tests (3)
AzureDeployerTests.cs (1)
102
inputsInteraction.Inputs[0].Value = inputsInteraction.Inputs[0].
Options
!.First(kvp => kvp.Key == "westus").Value;
DefaultProvisioningContextProviderTests.cs (2)
297
inputsInteraction.Inputs[0].Value = inputsInteraction.Inputs[0].
Options
!.First(kvp => kvp.Key == "westus").Value;
346
inputsInteraction.Inputs[0].Value = inputsInteraction.Inputs[0].
Options
!.First(kvp => kvp.Key == "westus").Value;