2 implementations of ExecutionContext
Aspire.Hosting.Testing (2)
DistributedApplicationTestingBuilder.cs (2)
241public DistributedApplicationExecutionContext ExecutionContext => innerBuilder.ExecutionContext; 395public DistributedApplicationExecutionContext ExecutionContext => _innerBuilder.ExecutionContext;
30 references to ExecutionContext
Aspire.Hosting.Azure.Kusto.Tests (1)
AddAzureKustoTests.cs (1)
434var context = new EnvironmentCallbackContext(builder.ExecutionContext);
Aspire.Hosting.Azure.Tests (3)
AzureFunctionsTests.cs (3)
239var context = new EnvironmentCallbackContext(builder.ExecutionContext); 295var context = new EnvironmentCallbackContext(builder.ExecutionContext); 709var context = new EnvironmentCallbackContext(builder.ExecutionContext);
Aspire.Hosting.Tests (26)
ExecutionConfigurationGathererTests.cs (25)
37await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 60await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 80await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 104await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 130await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 153await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 173await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 197await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 227await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 255await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 285await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 313await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 335await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 361await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 395await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 425await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 461await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 521await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 584await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 619await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 652await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 682await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 702await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 725await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext); 766await gatherer.GatherAsync(context, resource, NullLogger.Instance, builder.ExecutionContext);
OperationModesTests.cs (1)
140Assert.Equal(DistributedApplicationOperation.Publish, builder.ExecutionContext.Operation);