AndroidWorkarounds.props 442 B

12345678
  1. <Project>
  2. <ItemGroup Condition="'$(AndroidApplication)' == 'true'">
  3. <!-- WORKAROUND: The packages below are transitively referenced by System.Memory,
  4. but Xamarin.Android applications need the newest versions directly referenced for the linker. -->
  5. <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.5.1" />
  6. <PackageReference Include="System.Buffers" Version="4.5.0" />
  7. </ItemGroup>
  8. </Project>