2020-01-10 23:35:41 +03:00
|
|
|
<Project>
|
|
|
|
<PropertyGroup>
|
|
|
|
<EnvironmentBuildPropsImported>true</EnvironmentBuildPropsImported>
|
|
|
|
</PropertyGroup>
|
2020-02-14 01:17:46 +03:00
|
|
|
|
|
|
|
|
2020-01-10 23:35:41 +03:00
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(CI)' == ''">
|
|
|
|
<CI>false</CI>
|
|
|
|
<CI Condition="'$(TF_BUILD)' == 'true'">true</CI>
|
|
|
|
</PropertyGroup>
|
2020-02-14 01:17:46 +03:00
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<!--
|
|
|
|
Set one of these if you want to test a particular set of renderers
|
|
|
|
<ANDROID_RENDERERS>FAST</ANDROID_RENDERERS>
|
|
|
|
<ANDROID_RENDERERS>PREAPPCOMPAT</ANDROID_RENDERERS>
|
|
|
|
<ANDROID_RENDERERS>LEGACY</ANDROID_RENDERERS>
|
|
|
|
-->
|
|
|
|
</PropertyGroup>
|
2020-01-10 23:35:41 +03:00
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<Use2017 Condition="'$(Use2017)' == '' AND '$(MSBuildRuntimeType)' == 'Mono'">$(FrameworkSDKRoot.Contains('/Versions/5'))</Use2017>
|
|
|
|
<Use2017 Condition="'$(Use2017)' == '' AND '$(MSBuildAssemblyVersion)' < '16.0'">true</Use2017>
|
|
|
|
<Use2017 Condition="'$(Use2017)' == ''">false</Use2017>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<!-- This is used by the libraries -->
|
|
|
|
<PropertyGroup Condition="'$(AndroidTargetFrameworks)' == ''">
|
|
|
|
<AndroidTargetFrameworks Condition="'$(Use2017)' == 'true'">MonoAndroid90;</AndroidTargetFrameworks>
|
|
|
|
<AndroidTargetFrameworks Condition="'$(Use2017)' == 'false'">MonoAndroid90;MonoAndroid10.0;</AndroidTargetFrameworks>
|
|
|
|
</PropertyGroup>
|
|
|
|
</Project>
|