1 write to _componentFactories
Microsoft.Build (1)
BackEnd\BuildManager\BuildManager.cs (1)
300_componentFactories = new BuildComponentFactoryCollection(this);
13 references to _componentFactories
Microsoft.Build (13)
BackEnd\BuildManager\BuildManager.cs (13)
301_componentFactories.RegisterDefaultFactories(); 373ILoggingService IBuildComponentHost.LoggingService => _componentFactories.GetComponent<ILoggingService>(BuildComponentType.LoggingService); 736_componentFactories.ReplaceFactory(BuildComponentType.NodeLauncher, DetouredNodeLauncher.CreateComponent); 1206_componentFactories.ReplaceFactory(componentType, factory); 1216return _componentFactories.GetComponent(type); 1221return _componentFactories.GetComponent<TComponent>(type); 2661IConfigCache configCache = _componentFactories.GetComponent<IConfigCache>(BuildComponentType.ConfigCache); 2912_componentFactories.ReplaceFactory(BuildComponentType.LoggingService, loggingService as IBuildComponent); 3097_componentFactories.ShutdownComponent(BuildComponentType.LoggingService); 3104_componentFactories.ReplaceFactory(BuildComponentType.LoggingService, (IBuildComponent?)null); 3126_componentFactories?.ShutdownComponents(); 3203_componentFactories.ReplaceFactory(BuildComponentType.ConfigCache, new ConfigCacheWithOverride(cacheAggregation.ConfigCache)); 3204_componentFactories.ReplaceFactory(BuildComponentType.ResultsCache, new ResultsCacheWithOverride(cacheAggregation.ResultsCache));