6 writes to Toolset
Microsoft.Build (6)
Instance\ProjectInstance.cs (6)
415
this.
Toolset
= project.ProjectCollection.GetToolset(project.ToolsVersion);
487
Toolset
= string.IsNullOrEmpty(linkedProject.ToolsVersion) ? null : linkedProject.ProjectCollection.GetToolset(linkedProject.ToolsVersion);
578
this.
Toolset
= projectToInheritFrom.Toolset;
713
this.
Toolset
= data.Toolset;
815
this.
Toolset
= that.Toolset;
3298
this.
Toolset
= buildParameters.GetToolset(toolsVersionToUse);
12 references to Toolset
Microsoft.Build (12)
BackEnd\Shared\BuildRequestConfiguration.cs (1)
1089
return data.ProjectInstance.
Toolset
.ToolsVersion;
Instance\ProjectInstance.cs (11)
417
this.TaskRegistry = new TaskRegistry(
Toolset
, project.ProjectCollection.ProjectRootElementCache);
489
TaskRegistry =
Toolset
is null ? new TaskRegistry(linkedProject.ProjectCollection.ProjectRootElementCache) : new TaskRegistry(
Toolset
, linkedProject.ProjectCollection.ProjectRootElementCache);
578
this.Toolset = projectToInheritFrom.
Toolset
;
815
this.Toolset = that.
Toolset
;
1149
get { return
Toolset
.ToolsVersion; }
1391
{ return
Toolset
; }
1672
get { return _explicitToolsVersionSpecified ?
Toolset
.ToolsVersion : null; }
3300
if (this.
Toolset
== null)
3312
this.SubToolsetVersion = this.
Toolset
.GenerateSubToolsetVersionUsingVisualStudioVersion(globalProperties, visualStudioVersionFromSolution);
3316
this.TaskRegistry = new TaskRegistry(this.
Toolset
, ProjectRootElementCache);