1 instantiation of ToolsetElement
Microsoft.Build (1)
Evaluation\ToolsetElement.cs (1)
598return new ToolsetElement();
11 references to ToolsetElement
Microsoft.Build (11)
Definition\ToolsetConfigurationReader.cs (6)
86foreach (ToolsetElement toolset in ConfigurationSection.Toolsets) 159ToolsetElement toolsetElement = ConfigurationSection.Toolsets.GetElement(toolsVersion); 166foreach (ToolsetElement.PropertyElement propertyElement in toolsetElement.PropertyElements) 220ToolsetElement toolsetElement = ConfigurationSection.Toolsets.GetElement(toolsVersion); 233private Dictionary<string, ProjectImportPathMatch> ComputeDistinctListOfSearchPaths(ToolsetElement.PropertyElementCollection propertyCollection) 237foreach (ToolsetElement.PropertyElement property in propertyCollection)
Evaluation\ToolsetElement.cs (5)
567public ToolsetElement GetElement(string toolsVersion) 569return (ToolsetElement)this.BaseGet(toolsVersion); 577public ToolsetElement GetElement(int index) 579return (ToolsetElement)this.BaseGet(index); 589return ((ToolsetElement)element).toolsVersion;