1 write to _componentFactories
Microsoft.Build (1)
BackEnd\BuildManager\BuildManager.cs (1)
306_componentFactories = new BuildComponentFactoryCollection(this);
13 references to _componentFactories
Microsoft.Build (13)
BackEnd\BuildManager\BuildManager.cs (13)
307_componentFactories.RegisterDefaultFactories(); 379ILoggingService IBuildComponentHost.LoggingService => _componentFactories.GetComponent<ILoggingService>(BuildComponentType.LoggingService); 780_componentFactories.ReplaceFactory(BuildComponentType.NodeLauncher, DetouredNodeLauncher.CreateComponent); 1279_componentFactories.ReplaceFactory(componentType, factory); 1289return _componentFactories.GetComponent(type); 1294return _componentFactories.GetComponent<TComponent>(type); 2743IConfigCache configCache = _componentFactories.GetComponent<IConfigCache>(BuildComponentType.ConfigCache); 2993_componentFactories.ReplaceFactory(BuildComponentType.LoggingService, loggingService as IBuildComponent); 3197_componentFactories.ShutdownComponent(BuildComponentType.LoggingService); 3204_componentFactories.ReplaceFactory(BuildComponentType.LoggingService, (IBuildComponent?)null); 3226_componentFactories?.ShutdownComponents(); 3303_componentFactories.ReplaceFactory(BuildComponentType.ConfigCache, new ConfigCacheWithOverride(cacheAggregation.ConfigCache)); 3304_componentFactories.ReplaceFactory(BuildComponentType.ResultsCache, new ResultsCacheWithOverride(cacheAggregation.ResultsCache));