9 references to PropertyElements
Microsoft.Build (1)
Definition\ToolsetConfigurationReader.cs (1)
221
var propertyCollection = toolsetElement?.AllProjectImportSearchPaths?.GetElement(os)?.
PropertyElements
;
Microsoft.Build.Engine.UnitTests (8)
Definition\ToolsetConfigurationReader_Tests.cs (8)
547
Assert.Equal(2, allPaths.GetElement(0).
PropertyElements
.Count);
548
Assert.Equal(@"c:\foo", allPaths.GetElement(0).
PropertyElements
.GetElement("MSBuildExtensionsPath").Value);
549
Assert.Equal(@"c:\foo64;c:\bar64", allPaths.GetElement(0).
PropertyElements
.GetElement("MSBuildExtensionsPath64").Value);
552
Assert.Equal(2, allPaths.GetElement(1).
PropertyElements
.Count);
553
Assert.Equal(@"/tmp/foo", allPaths.GetElement(1).
PropertyElements
.GetElement("MSBuildExtensionsPath").Value);
554
Assert.Equal(@"/tmp/foo32;/tmp/bar32", allPaths.GetElement(1).
PropertyElements
.GetElement("MSBuildExtensionsPath32").Value);
557
Assert.Single(allPaths.GetElement(2).
PropertyElements
);
558
Assert.Equal(@"/tmp/bar", allPaths.GetElement(2).
PropertyElements
.GetElement("MSBuildExtensionsPath").Value);