1 instantiation of CliOrphanDetector
Aspire.Hosting.Tests (1)
Cli\CliOrphanDetectorTests.cs (1)
293return new CliOrphanDetector(configuration, lifetime, timeProvider, logger);
12 references to CliOrphanDetector
Aspire.Hosting (2)
Cli\CliOrphanDetector.cs (1)
10internal sealed class CliOrphanDetector(IConfiguration configuration, IHostApplicationLifetime lifetime, TimeProvider timeProvider, ILogger<CliOrphanDetector> logger) : BackgroundService
DistributedApplicationBuilder.cs (1)
458_innerBuilder.Services.AddHostedService<CliOrphanDetector>();
Aspire.Hosting.Tests (10)
Cli\CliOrphanDetectorTests.cs (10)
25var detector = CreateCliOrphanDetector(loggerFactory, configuration, lifetime); 44var detector = CreateCliOrphanDetector(loggerFactory, configuration, lifetime); 71var detector = CreateCliOrphanDetector(loggerFactory, configuration, lifetime); 97var detector = CreateCliOrphanDetector(loggerFactory, configuration, lifetime); 124var detector = CreateCliOrphanDetector(loggerFactory, configuration, lifetime); 150var detector = CreateCliOrphanDetector(loggerFactory, configuration, lifetime, fakeTimeProvider); 194var detector = CreateCliOrphanDetector(loggerFactory, configuration, lifetime); 221var detector = CreateCliOrphanDetector(loggerFactory, configuration, lifetime, fakeTimeProvider); 285private static CliOrphanDetector CreateCliOrphanDetector( 292var logger = loggerFactory.CreateLogger<CliOrphanDetector>();