1 instantiation of CacheScope
Microsoft.Build.Engine (1)
Engine\CacheManager.cs (1)
121cacheScope = new CacheScope(scopeName, scopeProperties, scopeToolsVersion);
23 references to CacheScope
Microsoft.Build.Engine (23)
Engine\CacheManager.cs (14)
56private CacheScope GetCacheScopeIfExists(string scopeName, BuildPropertyGroup scopeProperties, string scopeToolsVersion, CacheContentType cacheContentType) 58CacheScope cacheScope = null; 69List<CacheScope> scopesByName = (List<CacheScope>)cacheContents[(int)cacheContentType][scopeName]; 95internal CacheScope GetCacheScope(string scopeName, BuildPropertyGroup scopeProperties, string scopeToolsVersion, CacheContentType cacheContentType) 104CacheScope cacheScope = GetCacheScopeIfExists(scopeName, scopeProperties, scopeToolsVersion, cacheContentType); 117cacheContents[(int)cacheContentType].Add(scopeName, new List<CacheScope>()); 120List<CacheScope> scopesByName = (List<CacheScope>)cacheContents[(int)cacheContentType][scopeName]; 139CacheScope cacheScope = GetCacheScope(scopeName, scopeProperties, scopeToolsVersion, cacheContentType); 154CacheScope cacheScope = GetCacheScopeIfExists(scopeName, scopeProperties, scopeToolsVersion, cacheContentType); 182CacheScope cacheScope = GetCacheScopeIfExists(projectName, buildRequest.GlobalProperties, buildRequest.ToolsetVersion, CacheContentType.BuildResults); 204List<CacheScope> scopesByName = (List<CacheScope>)cacheContents[(int)cacheContentType][projectName];
Engine\EngineCallback.cs (1)
526CacheScope cacheScope,
Engine\Node.cs (1)
115CacheScope cacheScope = localEngine.CacheManager.GetCacheScope(currentRequest.ProjectFileName, currentRequest.GlobalProperties, currentRequest.ToolsetVersion, CacheContentType.BuildResults);
Engine\NodeRequestMapping.cs (2)
21(int handleId, int requestId, CacheScope resultsCache) 58private CacheScope resultsCache;
Engine\RequestRoutingContext.cs (3)
32CacheScope cacheScope, 84internal CacheScope CacheScope 116private CacheScope cacheScope;
Engine\Router.cs (2)
104CacheScope cacheScope = parentEngine.CacheManager.GetCacheScope(buildRequest.ProjectFileName, buildRequest.GlobalProperties, buildRequest.ToolsetVersion, CacheContentType.BuildResults); 167CacheScope cacheScope = parentEngine.CacheManager.GetCacheScope(currentRequest.ProjectFileName, currentRequest.GlobalProperties, currentRequest.ToolsetVersion, CacheContentType.BuildResults);