Add direct references to Realm from Xamarin projects

Fixes crashes on launch due to missing `realm-wrapper` transitive
dependency.
This commit is contained in:
Bartłomiej Dach
2021-06-19 11:07:13 +02:00
parent b6e07ff59c
commit 805e6cca75
2 changed files with 5 additions and 0 deletions

View File

@ -54,4 +54,8 @@
<PackageReference Include="ppy.osu.Game.Resources" Version="2021.618.0" />
<PackageReference Include="ppy.osu.Framework.Android" Version="2021.616.0" />
</ItemGroup>
<ItemGroup Label="Transitive Dependencies">
<!-- Realm needs to be directly referenced in all Xamarin projects, as it will not pull in its transitive dependencies otherwise. -->
<PackageReference Include="Realm" Version="10.2.0" />
</ItemGroup>
</Project>