1 instantiation of ToolsetElement
Microsoft.Build (1)
ToolsetElement.cs (1)
597return 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)
ToolsetElement.cs (5)
566public ToolsetElement GetElement(string toolsVersion) 568return (ToolsetElement)this.BaseGet(toolsVersion); 576public ToolsetElement GetElement(int index) 578return (ToolsetElement)this.BaseGet(index); 588return ((ToolsetElement)element).toolsVersion;