Xamarin Public Jenkins (auto-signing) 536cd135cc Imported Upstream version 5.4.0.167
Former-commit-id: 5624ac747d633e885131e8349322922b6a59baaa
2017-08-21 15:34:15 +00:00

50 lines
1.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="osgroups.props"/>
<Import Project="targetgroups.props"/>
<Import Project="configurationgroups.props"/>
<Import Project="archgroups.props"/>
<ItemGroup>
<Property Include="OSGroup">
<DefaultValue>AnyOS</DefaultValue>
<!-- OSGroup has higest precedence -->
<Precedence>1</Precedence>
<!-- OSGroup appears second in configuration string -->
<Order>2</Order>
</Property>
<Property Include="TargetGroup">
<!-- No default value -->
<DefaultValue></DefaultValue>
<!-- TargetGroup has lower precedence -->
<Precedence>2</Precedence>
<!-- TargetGroup appears first in configuration string -->
<Order>1</Order>
</Property>
<Property Include="ConfigurationGroup">
<DefaultValue>Debug</DefaultValue>
<!-- Property is insignificant to compatibility decisions, but persisted in configuration strings -->
<Precedence>Insignificant</Precedence>
<Order>3</Order>
</Property>
<Property Include="ArchGroup">
<DefaultValue>x64</DefaultValue>
<!-- Property is insignificant to compatibility decisions, and independent from the configuration strings -->
<Precedence>Independent</Precedence>
<Order>4</Order>
</Property>
<PropertyValue Include="@(OSGroups)">
<Property>OSGroup</Property>
</PropertyValue>
<PropertyValue Include="@(TargetGroups)">
<Property>TargetGroup</Property>
</PropertyValue>
<PropertyValue Include="@(ConfigurationGroups)">
<Property>ConfigurationGroup</Property>
</PropertyValue>
<PropertyValue Include="@(ArchGroups)">
<Property>ArchGroup</Property>
</PropertyValue>
</ItemGroup>
</Project>