4 instantiations of ConfigCache
Microsoft.Build (4)
BackEnd\BuildManager\CacheAggregator.cs (1)
44_aggregatedConfigCache = new ConfigCache();
BackEnd\BuildManager\CacheSerialization.cs (1)
64var tempConfigCacheToSerialize = new ConfigCache();
BackEnd\Components\Caching\ConfigCache.cs (1)
338return new ConfigCache();
BackEnd\Components\Caching\ConfigCacheWithOverride.cs (1)
20CurrentCache = new ConfigCache();
8 references to ConfigCache
Microsoft.Build (8)
BackEnd\BuildManager\CacheAggregator.cs (1)
21private ConfigCache _aggregatedConfigCache;
BackEnd\BuildManager\CacheSerialization.cs (5)
41var configCacheToSerialize = configCache switch 43ConfigCache asConfigCache => asConfigCache, 45_ => Assumed.Unreachable<ConfigCache>(), 64var tempConfigCacheToSerialize = new ConfigCache(); 105ConfigCache configCache = null;
BackEnd\Components\BuildComponentFactoryCollection.cs (1)
63_componentEntriesByType[BuildComponentType.ConfigCache] = new BuildComponentEntry(BuildComponentType.ConfigCache, ConfigCache.CreateComponent, CreationPattern.Singleton);
BackEnd\Components\Caching\ConfigCacheWithOverride.cs (1)
15public ConfigCache CurrentCache { get; }