2 implementations of ExecutionContext
Aspire.Hosting.Testing (2)
DistributedApplicationTestingBuilder.cs (2)
241public DistributedApplicationExecutionContext ExecutionContext => innerBuilder.ExecutionContext; 395public DistributedApplicationExecutionContext ExecutionContext => _innerBuilder.ExecutionContext;
24 references to ExecutionContext
Aspire.Hosting.Azure.Kusto.Tests (1)
AddAzureKustoTests.cs (1)
434var context = new EnvironmentCallbackContext(builder.ExecutionContext);
Aspire.Hosting.Azure.Tests (2)
AzureFunctionsTests.cs (2)
231var context = new EnvironmentCallbackContext(builder.ExecutionContext); 677var context = new EnvironmentCallbackContext(builder.ExecutionContext);
Aspire.Hosting.Tests (21)
ExecutionConfigurationGathererTests.cs (20)
35await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 58await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 78await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 102await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 128await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 151await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 171await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 195await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 225await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 253await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 283await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 311await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 333await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 359await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 387await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 420await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 450await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 470await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 493await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 534await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext);
OperationModesTests.cs (1)
140Assert.Equal(DistributedApplicationOperation.Publish, builder.ExecutionContext.Operation);