13 writes to Disabled
Aspire.Hosting (1)
Orchestrator\ParameterProcessor.cs (1)
319Disabled = !userSecretsManager.IsAvailable
Aspire.Hosting.Azure (7)
Provisioning\Internal\RunModeProvisioningContextProvider.cs (7)
176context.Input.Disabled = false; 190Disabled = true, 203Disabled = true, 227context.Input.Disabled = false; 240Disabled = true, 259context.Input.Disabled = true; // Make it read-only since it's from existing RG 267context.Input.Disabled = false;
Stress.AppHost (5)
InteractionCommands.cs (5)
329context.Input.Disabled = false; 334context.Input.Disabled = true; 346Disabled = true, 357Disabled = true, 366Disabled = true,
9 references to Disabled
Aspire.Hosting (2)
Dashboard\DashboardService.cs (1)
139Disabled = input.Disabled
Pipelines\PipelineActivityReporter.cs (1)
318Disabled = input.Disabled
Aspire.Hosting.Azure.Tests (5)
ProvisioningContextProviderTests.cs (5)
457Assert.True(input.Disabled); 598Assert.True(subscriptionInput.Disabled, "Subscription ID input should be disabled initially when not configured"); 692Assert.True(subscriptionInput.Disabled); 704Assert.False(subscriptionInput.Disabled, "Subscription ID input should be enabled after tenant selection"); 749Assert.True(subscriptionInput.Disabled, "Subscription ID input should remain disabled when pre-configured");
Aspire.Hosting.Tests (2)
Orchestrator\ParameterProcessorTests.cs (2)
528Assert.True(saveCheckbox.Disabled); // Should be disabled when user secrets not available 567Assert.False(saveCheckbox.Disabled); // Should be enabled when user secrets are available