1 instantiation of CliOrphanDetector
Aspire.Hosting.Tests (1)
Cli\CliOrphanDetectorTests.cs (1)
272return new CliOrphanDetector(configuration, lifetime, timeProvider, logger);
11 references to CliOrphanDetector
Aspire.Hosting (2)
Cli\CliOrphanDetector.cs (1)
11internal sealed class CliOrphanDetector(IConfiguration configuration, IHostApplicationLifetime lifetime, TimeProvider timeProvider, ILogger<CliOrphanDetector> logger) : BackgroundService
DistributedApplicationBuilder.cs (1)
375_innerBuilder.Services.AddHostedService<CliOrphanDetector>();
Aspire.Hosting.Tests (9)
Cli\CliOrphanDetectorTests.cs (9)
26var detector = CreateCliOrphanDetector(loggerFactory, configuration, lifetime); 45var detector = CreateCliOrphanDetector(loggerFactory, configuration, lifetime); 72var detector = CreateCliOrphanDetector(loggerFactory, configuration, lifetime); 94var detector = CreateCliOrphanDetector(loggerFactory, configuration, lifetime); 121var detector = CreateCliOrphanDetector(loggerFactory, configuration, lifetime, fakeTimeProvider); 165var detector = CreateCliOrphanDetector(loggerFactory, configuration, lifetime); 193var detector = CreateCliOrphanDetector(loggerFactory, configuration, lifetime, fakeTimeProvider); 264private static CliOrphanDetector CreateCliOrphanDetector( 271var logger = loggerFactory.CreateLogger<CliOrphanDetector>();