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)
585internal sealed class NullBundleService : IBundleService 601internal sealed class TestBundleService(bool isBundle) : IBundleService
9 references to IBundleService
aspire (8)
Commands\RootCommand.cs (1)
143IBundleService bundleService,
Commands\SetupCommand.cs (2)
18private readonly IBundleService _bundleService; 31IBundleService bundleService,
NuGet\BundleNuGetPackageCache.cs (2)
20private readonly IBundleService _bundleService; 31IBundleService bundleService,
Program.cs (2)
342if (sp.GetRequiredService<IBundleService>().IsBundle) 358builder.Services.AddSingleton<IBundleService, BundleService>();
Projects\AppHostServerProject.cs (1)
32IBundleService bundleService,
Aspire.Cli.Tests (1)
Utils\CliTestHelper.cs (1)
544public Func<IServiceProvider, IBundleService> BundleServiceFactory { get; set; } = _ => new NullBundleService();