1 instantiation of CliOrphanDetector
Aspire.Hosting.Tests (1)
Cli\CliOrphanDetectorTests.cs (1)
270return 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)
386_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); 120var detector = CreateCliOrphanDetector(loggerFactory, configuration, lifetime, fakeTimeProvider); 164var detector = CreateCliOrphanDetector(loggerFactory, configuration, lifetime); 191var detector = CreateCliOrphanDetector(loggerFactory, configuration, lifetime, fakeTimeProvider); 262private static CliOrphanDetector CreateCliOrphanDetector( 269var logger = loggerFactory.CreateLogger<CliOrphanDetector>();