6 writes to Toolset
Microsoft.Build (6)
Instance\ProjectInstance.cs (6)
406
this.
Toolset
= project.ProjectCollection.GetToolset(project.ToolsVersion);
478
Toolset
= string.IsNullOrEmpty(linkedProject.ToolsVersion) ? null : linkedProject.ProjectCollection.GetToolset(linkedProject.ToolsVersion);
567
this.
Toolset
= projectToInheritFrom.Toolset;
702
this.
Toolset
= data.Toolset;
804
this.
Toolset
= that.Toolset;
3229
this.
Toolset
= buildParameters.GetToolset(toolsVersionToUse);
12 references to Toolset
Microsoft.Build (12)
BackEnd\Shared\BuildRequestConfiguration.cs (1)
1080
return data.ProjectInstance.
Toolset
.ToolsVersion;
Instance\ProjectInstance.cs (11)
408
this.TaskRegistry = new TaskRegistry(
Toolset
, project.ProjectCollection.ProjectRootElementCache);
480
TaskRegistry =
Toolset
is null ? new TaskRegistry(linkedProject.ProjectCollection.ProjectRootElementCache) : new TaskRegistry(
Toolset
, linkedProject.ProjectCollection.ProjectRootElementCache);
567
this.Toolset = projectToInheritFrom.
Toolset
;
804
this.Toolset = that.
Toolset
;
1136
get { return
Toolset
.ToolsVersion; }
1340
{ return
Toolset
; }
1621
get { return _explicitToolsVersionSpecified ?
Toolset
.ToolsVersion : null; }
3231
if (this.
Toolset
== null)
3243
this.SubToolsetVersion = this.
Toolset
.GenerateSubToolsetVersionUsingVisualStudioVersion(globalProperties, visualStudioVersionFromSolution);
3247
this.TaskRegistry = new TaskRegistry(this.
Toolset
, ProjectRootElementCache);