13 writes to BundleServiceFactory
Aspire.Cli.Tests (13)
Commands\DashboardRunCommandTests.cs (1)
716options.BundleServiceFactory = _ => bundleService;
Commands\NewCommandTests.cs (1)
1579options.BundleServiceFactory = _ => bundleService;
Commands\RootCommandTests.cs (3)
738options.BundleServiceFactory = _ => new TestBundleService(isBundle: true); 754options.BundleServiceFactory = _ => new TestBundleService(isBundle: true); 778options.BundleServiceFactory = _ => new TestBundleService(isBundle: true);
Commands\StopCommandTests.cs (4)
1003options.BundleServiceFactory = _ => new TestBundleService(isBundle: true) 1041options.BundleServiceFactory = _ => new TestBundleService(isBundle: true) 1275options.BundleServiceFactory = _ => new TestBundleService(isBundle: true) { Layout = layout }; 1279options.BundleServiceFactory = _ => new NullBundleService();
Projects\DotNetAppHostProjectTests.cs (4)
140options => options.BundleServiceFactory = _ => bundleService); 808configureServices: options => options.BundleServiceFactory = _ => bundleService); 2537configureServices: options => options.BundleServiceFactory = _ => bundleService); 4675options.BundleServiceFactory = _ => new TestBundleService(isBundle: true)
1 reference to BundleServiceFactory
Aspire.Cli.Tests (1)
Utils\CliTestHelper.cs (1)
213services.AddSingleton(options.BundleServiceFactory);