3 writes to ToolsetVersion
Microsoft.Build.Engine (3)
Engine\Engine.cs (2)
2453buildRequest.ToolsetVersion = project.ToolsVersion; 2498buildRequest.ToolsetVersion = XmlUtilities.GetAttributeValueForElementFromFile(buildRequest.ProjectFileName, XMakeAttributes.project, XMakeAttributes.toolsVersion);
Engine\EngineCallback.cs (1)
105buildRequest.ToolsetVersion = parentProject.ToolsVersion;
13 references to ToolsetVersion
Microsoft.Build.Engine (13)
Engine\CacheManager.cs (1)
182CacheScope cacheScope = GetCacheScopeIfExists(projectName, buildRequest.GlobalProperties, buildRequest.ToolsetVersion, CacheContentType.BuildResults);
Engine\Engine.cs (5)
2496if (String.IsNullOrEmpty(buildRequest.ToolsetVersion)) 2526buildRequest.ToolsetVersion 2536string toolsVersionToUse = buildRequest.ToolsetVersion ?? DefaultToolsVersion; 2576buildRequest.ToolsetVersion, buildRequest.TargetNames, buildRequest.ParentBuildEventContext, buildRequest.ToolsVersionPeekedFromProjectFile); 2672primaryLoggingServices.LogComment(currentContext, MessageImportance.Low, "ToolsVersionInEffectForBuild", buildRequest.ToolsetVersion);
Engine\EngineCallback.cs (3)
101if (buildRequest.ToolsetVersion == null && parentProject.OverridingToolsVersion) 144(String.Equals(parentProject.ToolsVersion, buildRequest.ToolsetVersion, StringComparison.OrdinalIgnoreCase))) 148buildRequest.ToolsetVersion, buildRequest.TargetNames, buildRequest.ParentBuildEventContext, buildRequest.ToolsVersionPeekedFromProjectFile);
Engine\Node.cs (1)
115CacheScope cacheScope = localEngine.CacheManager.GetCacheScope(currentRequest.ProjectFileName, currentRequest.GlobalProperties, currentRequest.ToolsetVersion, CacheContentType.BuildResults);
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);
Engine\Scheduler.cs (1)
212currentRequest.ToolsetVersion, currentRequest.TargetNames);