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