1 instantiation of AfterResourcesCreatedEvent
Aspire.Hosting (1)
Orchestrator\ApplicationOrchestrator.cs (1)
545var afterResourcesCreatedEvent = new AfterResourcesCreatedEvent(_serviceProvider, _model);
12 references to AfterResourcesCreatedEvent
Aspire.Cli.Tests (1)
Hosting\CliOrphanDetectorTests.cs (1)
248builder.Eventing.Subscribe<AfterResourcesCreatedEvent>((e, ct) =>
Aspire.Hosting (3)
ApplicationModel\AfterResourcesCreatedEvent.cs (1)
20/// Subscribe to the <see cref="AfterResourcesCreatedEvent"/> event and resolve the distributed application model.
Ats\BuilderExports.cs (1)
133return builder.Eventing.Subscribe<AfterResourcesCreatedEvent>(async (@event, ct) =>
Orchestrator\ApplicationOrchestrator.cs (1)
545var afterResourcesCreatedEvent = new AfterResourcesCreatedEvent(_serviceProvider, _model);
Aspire.Hosting.Maui (1)
Lifecycle\UnsupportedPlatformEventSubscriber.cs (1)
25eventing.Subscribe<AfterResourcesCreatedEvent>(async (@event, ct) =>
Aspire.Hosting.Tests (5)
DistributedApplicationTests.cs (1)
266testProgram.AppBuilder.Eventing.Subscribe<AfterResourcesCreatedEvent>((_, _) =>
Eventing\DistributedApplicationBuilderEventingTests.cs (1)
248builder.Eventing.Subscribe<AfterResourcesCreatedEvent>((e, ct) =>
OperationModesTests.cs (3)
23builder.Eventing.Subscribe<AfterResourcesCreatedEvent>((e, ct) => { 52builder.Eventing.Subscribe<AfterResourcesCreatedEvent>((e, ct) => { 81builder.Eventing.Subscribe<AfterResourcesCreatedEvent>((e, ct) => {
TestProject.AppHost (2)
TestProgram.cs (2)
170public async Task OnAfterResourcesCreated(AfterResourcesCreatedEvent @event, CancellationToken cancellationToken) 205eventing.Subscribe<AfterResourcesCreatedEvent>(OnAfterResourcesCreated);