6 implementations of IBundleService
aspire (1)
Bundles\BundleService.cs (1)
26WingetFirstRunProbe? wingetFirstRunProbe = null) : IBundleService
Aspire.Cli.Tests (5)
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 (2)
785internal sealed class NullBundleService : IBundleService 813internal sealed class TestBundleService(bool isBundle) : IBundleService
30 references to IBundleService
aspire (26)
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)
177IBundleService 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)
24private readonly IBundleService? _bundleService; 36IBundleService? bundleService, 207IBundleService? bundleService,
NuGet\BundleNuGetPackageCache.cs (2)
23private readonly IBundleService _bundleService; 29IBundleService bundleService,
NuGet\BundleNuGetService.cs (2)
52private readonly IBundleService? _bundleService; 60IBundleService? bundleService = null)
Processes\DcpExecutableResolver.cs (1)
20IBundleService bundleService,
Processes\ProcessTreeGracefulShutdownService.cs (1)
20IBundleService bundleService,
Profiling\ProfileCaptureService.cs (1)
26IBundleService bundleService,
Program.cs (2)
481if (sp.GetRequiredService<IBundleService>().IsBundle) 506builder.Services.AddSingleton<IBundleService, BundleService>();
Projects\AppHostServerProject.cs (1)
29IBundleService bundleService,
Projects\DotNetAppHostProject.cs (2)
44private readonly IBundleService _bundleService; 83IBundleService bundleService,
Aspire.Cli.Tests (4)
DotNet\ProcessExecutionDetachedTests.cs (1)
489IBundleService? bundleService = null,
Processes\ProcessTreeGracefulShutdownServiceTests.cs (1)
320IBundleService? bundleService = null,
ProfileCaptureServiceTests.cs (1)
497IBundleService? bundleService = null,
Utils\CliTestHelper.cs (1)
707public Func<IServiceProvider, IBundleService> BundleServiceFactory { get; set; } = _ => new NullBundleService();