2 implementations of IAppHostStopper
aspire (1)
Processes\ProcessTreeGracefulShutdownService.cs (1)
25TimeProvider timeProvider) : IProcessTreeGracefulShutdownSignaler, IAppHostStopper
Aspire.Cli.Tests (1)
TestServices\TestAppHostStopper.cs (1)
13internal sealed class TestAppHostStopper : IAppHostStopper
7 references to IAppHostStopper
aspire (3)
Backchannel\OrphanedAppHostCollector.cs (1)
15IAppHostStopper processShutdownService,
Commands\AppHostLauncher.cs (1)
41IAppHostStopper processShutdownService,
Program.cs (1)
461builder.Services.AddTransient<IAppHostStopper>(sp => sp.GetRequiredService<ProcessTreeGracefulShutdownService>());
Aspire.Cli.Tests (4)
Commands\AppHostLauncherTests.cs (2)
1267IAppHostStopper processShutdownService) => 1312IAppHostStopper? processShutdownService,
TestServices\TestAppHostStopper.cs (1)
10/// A test <see cref="IAppHostStopper"/> that records stop requests and returns a controllable result,
Utils\CliTestHelper.cs (1)
201services.AddTransient<IAppHostStopper>(sp => sp.GetRequiredService<ProcessTreeGracefulShutdownService>());