4 instantiations of ConfigCache
Microsoft.Build (4)
BackEnd\BuildManager\CacheAggregator.cs (1)
44
_aggregatedConfigCache = new
ConfigCache
();
BackEnd\BuildManager\CacheSerialization.cs (1)
64
var tempConfigCacheToSerialize = new
ConfigCache
();
BackEnd\Components\Caching\ConfigCache.cs (1)
338
return new
ConfigCache
();
BackEnd\Components\Caching\ConfigCacheWithOverride.cs (1)
20
CurrentCache = new
ConfigCache
();
8 references to ConfigCache
Microsoft.Build (8)
BackEnd\BuildManager\CacheAggregator.cs (1)
21
private
ConfigCache
_aggregatedConfigCache;
BackEnd\BuildManager\CacheSerialization.cs (5)
41
var
configCacheToSerialize = configCache switch
43
ConfigCache
asConfigCache => asConfigCache,
45
_ => Assumed.Unreachable<
ConfigCache
>(),
64
var
tempConfigCacheToSerialize = new ConfigCache();
105
ConfigCache
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)
15
public
ConfigCache
CurrentCache { get; }