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