8 references to EnvironmentCallbackContext
Aspire.Hosting (3)
ApplicationModel\EnvironmentVariablesConfigurationGatherer.cs (1)
18var callbackContext = new EnvironmentCallbackContext(executionContext, resource, context.EnvironmentVariables, cancellationToken)
ApplicationModel\ResourceExtensions.cs (2)
362var context = new EnvironmentCallbackContext(executionContext, resource, config, cancellationToken) 1301var context = new EnvironmentCallbackContext(executionContext, resource, envVars, cancellationToken);
Aspire.Hosting.Azure.AppContainers (1)
BaseContainerAppContext.cs (1)
133var context = new EnvironmentCallbackContext(_containerAppEnvironmentContext.ExecutionContext, resource, EnvironmentVariables, cancellationToken: cancellationToken);
Aspire.Hosting.Azure.AppService (1)
AzureAppServiceWebsiteContext.cs (1)
67var context = new EnvironmentCallbackContext(
Aspire.Hosting.Docker (1)
DockerComposeEnvironmentContext.cs (1)
138var context = new EnvironmentCallbackContext(
Aspire.Hosting.Kubernetes (1)
KubernetesResource.cs (1)
294var context = new EnvironmentCallbackContext(executionContext, resource, cancellationToken: cancellationToken);
Aspire.Hosting.Tests (1)
Dashboard\DashboardLifecycleHookTests.cs (1)
187await hook.ConfigureEnvironmentVariables(new EnvironmentCallbackContext(new DistributedApplicationExecutionContext(DistributedApplicationOperation.Run), environmentVariables: envVars, resource: dashboardResource));