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