5 references to DeploymentStateScopeKey
Aspire.Hosting.Azure (4)
Provisioning\BicepUtilities.cs (2)
135var scope = section[DeploymentStateScopeKey] is string scopeString 179var scope = section.Data[DeploymentStateScopeKey]?.GetValue<string>() is { Length: > 0 } scopeString
Provisioning\Provisioners\BicepProvisioner.cs (2)
371var scope = TryGetDeploymentStateJsonObject(stateSection, BicepUtilities.DeploymentStateScopeKey, resource.Name, out var cachedScope) 1346stateSection.Data[BicepUtilities.DeploymentStateScopeKey] = scope.ToJsonString();
Aspire.Hosting.Azure.Tests (1)
AzureBicepProvisionerTests.cs (1)
1851section.Data[BicepUtilities.DeploymentStateScopeKey] = scope.ToJsonString();