1 write to _componentFactories
Microsoft.Build (1)
BackEnd\BuildManager\BuildManager.cs (1)
308_componentFactories = new BuildComponentFactoryCollection(this);
13 references to _componentFactories
Microsoft.Build (13)
BackEnd\BuildManager\BuildManager.cs (13)
309_componentFactories.RegisterDefaultFactories(); 381ILoggingService IBuildComponentHost.LoggingService => _componentFactories.GetComponent<ILoggingService>(BuildComponentType.LoggingService); 803_componentFactories.ReplaceFactory(BuildComponentType.NodeLauncher, DetouredNodeLauncher.CreateComponent); 1391_componentFactories.ReplaceFactory(componentType, factory); 1401return _componentFactories.GetComponent(type); 1406return _componentFactories.GetComponent<TComponent>(type); 2855IConfigCache configCache = _componentFactories.GetComponent<IConfigCache>(BuildComponentType.ConfigCache); 3104_componentFactories.ReplaceFactory(BuildComponentType.LoggingService, loggingService as IBuildComponent); 3325_componentFactories.ShutdownComponent(BuildComponentType.LoggingService); 3332_componentFactories.ReplaceFactory(BuildComponentType.LoggingService, (IBuildComponent?)null); 3354_componentFactories?.ShutdownComponents(); 3433_componentFactories.ReplaceFactory(BuildComponentType.ConfigCache, new ConfigCacheWithOverride(cacheAggregation.ConfigCache)); 3434_componentFactories.ReplaceFactory(BuildComponentType.ResultsCache, new ResultsCacheWithOverride(cacheAggregation.ResultsCache));