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