3 implementations of IBundleService
aspire (1)
Bundles\BundleService.cs (1)
17internal sealed class BundleService(ILayoutDiscovery layoutDiscovery, ILogger<BundleService> logger) : IBundleService
Aspire.Cli.Tests (2)
Utils\CliTestHelper.cs (2)
576internal sealed class NullBundleService : IBundleService 592internal sealed class TestBundleService(bool isBundle) : IBundleService
9 references to IBundleService
aspire (8)
Commands\RootCommand.cs (1)
141IBundleService bundleService,
Commands\SetupCommand.cs (2)
18private readonly IBundleService _bundleService; 31IBundleService bundleService,
NuGet\BundleNuGetPackageCache.cs (2)
20private readonly IBundleService _bundleService; 31IBundleService bundleService,
Program.cs (2)
272if (sp.GetRequiredService<IBundleService>().IsBundle) 288builder.Services.AddSingleton<IBundleService, BundleService>();
Projects\AppHostServerProject.cs (1)
32IBundleService bundleService,
Aspire.Cli.Tests (1)
Utils\CliTestHelper.cs (1)
535public Func<IServiceProvider, IBundleService> BundleServiceFactory { get; set; } = _ => new NullBundleService();