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)
229var context = new EnvironmentCallbackContext(builder.ExecutionContext); 675var context = new EnvironmentCallbackContext(builder.ExecutionContext);
Aspire.Hosting.Tests (21)
ExecutionConfigurationGathererTests.cs (20)
34await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 57await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 77await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 101await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 127await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 150await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 170await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 194await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 224await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 252await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 282await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 310await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 332await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 358await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 386await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 419await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 449await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 469await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 492await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 533await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext);
OperationModesTests.cs (1)
139Assert.Equal(DistributedApplicationOperation.Publish, builder.ExecutionContext.Operation);