| 12345678910111213141516 |
- <Project>
- <ItemGroup Condition="'$(AndroidApplication)' == 'true'">
- <!-- WORKAROUND: The packages below are transitively referenced by System.Memory,
- but Xamarin.Android applications need the newest versions directly referenced for the linker. -->
- <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.6.0" />
- <PackageReference Include="System.Buffers" Version="4.5.0" />
- </ItemGroup>
- <Target Name="_RemoveNonExistingResgenFile" BeforeTargets="CoreCompile" Condition="'$(_SdkSetAndroidResgenFile)' == 'true' And '$(AndroidResgenFile)' != '' And !Exists('$(AndroidResgenFile)')">
- <ItemGroup>
- <Compile Remove="$(AndroidResgenFile)"/>
- </ItemGroup>
- </Target>
- <PropertyGroup>
- <DesignTimeBuild>false</DesignTimeBuild>
- </PropertyGroup>
- </Project>
|