1 write to DeploymentSlotParameter
Aspire.Hosting.Azure.AppService (1)
AzureAppServiceEnvironmentExtensions.cs (1)
302
builder.Resource.
DeploymentSlotParameter
= deploymentSlot.Resource;
7 references to DeploymentSlotParameter
Aspire.Hosting.Azure.AppService (7)
AzureAppServiceWebsiteContext.cs (3)
260
if (environmentContext.Environment.
DeploymentSlotParameter
is not null || environmentContext.Environment.DeploymentSlot is not null)
262
deploymentSlotValue = environmentContext.Environment.
DeploymentSlotParameter
!= null
263
? environmentContext.Environment.
DeploymentSlotParameter
.AsProvisioningParameter(infra)
AzureAppServiceWebSiteResource.cs (4)
52
var isSlotDeployment = computerEnv.DeploymentSlot is not null || computerEnv.
DeploymentSlotParameter
is not null;
123
if (computerEnv.DeploymentSlot is not null || computerEnv.
DeploymentSlotParameter
is not null)
125
deploymentSlot = computerEnv.
DeploymentSlotParameter
is null ?
127
await computerEnv.
DeploymentSlotParameter
.GetValueAsync(ctx.CancellationToken).ConfigureAwait(false);