7 implementations of IBundleService
aspire (1)
Bundles\BundleService.cs (1)
26WingetFirstRunProbe? wingetFirstRunProbe = null) : IBundleService
Aspire.Cli.Tests (6)
DotNet\ProcessExecutionDetachedTests.cs (3)
535private sealed class FixedBundleService(BundleLayoutLease layoutLease) : IBundleService 568private sealed class AcquiringBundleService(LayoutConfiguration layout) : IBundleService 600private sealed class BlockingBundleService(LayoutConfiguration layout) : IBundleService
Utils\CliTestHelper.cs (3)
794internal sealed class NullBundleService : IBundleService 812internal sealed class RecordingBundleService(string dcpDirectory) : IBundleService 854internal sealed class TestBundleService(bool isBundle) : IBundleService
27 references to IBundleService
aspire (23)
Commands\DashboardRunCommand.cs (2)
32private readonly IBundleService _bundleService; 78IBundleService bundleService,
Commands\DcpWorkloadCleanupService.cs (1)
13IBundleService bundleService,
Commands\NewCommand.cs (2)
33private readonly IBundleService _bundleService; 71IBundleService bundleService,
Commands\RootCommand.cs (1)
185IBundleService bundleService,
Commands\SetupCommand.cs (3)
17private readonly IBundleService _bundleService; 30IBundleService bundleService, 99/// none. Route-independent counterpart to the route-aware <see cref="IBundleService.GetDefaultExtractDir"/>.
DotNet\ProcessExecution.cs (2)
32private readonly IBundleService? _bundleService; 52IBundleService? bundleService = null,
DotNet\ProcessExecutionFactory.cs (3)
27private readonly IBundleService? _bundleService; 39IBundleService? bundleService, 210IBundleService? bundleService,
Processes\DcpExecutableResolver.cs (1)
20IBundleService bundleService,
Processes\ProcessTreeGracefulShutdownService.cs (1)
20IBundleService bundleService,
Profiling\ProfileCaptureService.cs (1)
26IBundleService bundleService,
Program.cs (2)
513if (sp.GetRequiredService<IBundleService>().IsBundle) 538builder.Services.AddSingleton<IBundleService, BundleService>();
Projects\AppHostServerProject.cs (1)
30IBundleService bundleService,
Projects\DotNetAppHostProject.cs (2)
47private readonly IBundleService _bundleService; 86IBundleService bundleService,
Utils\EnvironmentChecker\DcpConnectionHealthCheck.cs (1)
18IBundleService bundleService,
Aspire.Cli.Tests (4)
DotNet\ProcessExecutionDetachedTests.cs (1)
489IBundleService? bundleService = null,
Processes\ProcessTreeGracefulShutdownServiceTests.cs (1)
320IBundleService? bundleService = null,
ProfileCaptureServiceTests.cs (1)
560IBundleService? bundleService = null,
Utils\CliTestHelper.cs (1)
716public Func<IServiceProvider, IBundleService> BundleServiceFactory { get; set; } = _ => new NullBundleService();