13 writes to BundleServiceFactory
Aspire.Cli.Tests (13)
Commands\DashboardRunCommandTests.cs (1)
652options.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)
994options.BundleServiceFactory = _ => new TestBundleService(isBundle: true) 1032options.BundleServiceFactory = _ => new TestBundleService(isBundle: true) 1244options.BundleServiceFactory = _ => new TestBundleService(isBundle: true) { Layout = layout }; 1248options.BundleServiceFactory = _ => new NullBundleService();
Projects\DotNetAppHostProjectTests.cs (4)
138options => options.BundleServiceFactory = _ => bundleService); 783configureServices: options => options.BundleServiceFactory = _ => bundleService); 2274configureServices: options => options.BundleServiceFactory = _ => bundleService); 4272options.BundleServiceFactory = _ => new TestBundleService(isBundle: true)
1 reference to BundleServiceFactory
Aspire.Cli.Tests (1)
Utils\CliTestHelper.cs (1)
211services.AddSingleton(options.BundleServiceFactory);