2022-12-12 06:25:56 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup Label="Project">
|
|
|
|
|
<TargetFramework>net6.0-ios</TargetFramework>
|
|
|
|
|
<SupportedOSPlatformVersion>13.4</SupportedOSPlatformVersion>
|
2018-12-06 15:19:09 +08:00
|
|
|
|
<OutputType>Exe</OutputType>
|
2020-02-27 08:24:45 +08:00
|
|
|
|
<MtouchUseLlvm>false</MtouchUseLlvm> <!-- This currently causes random lockups during gameplay. https://github.com/mono/mono/issues/18973 -->
|
2018-12-06 15:19:09 +08:00
|
|
|
|
</PropertyGroup>
|
2018-12-29 16:17:35 +08:00
|
|
|
|
<Import Project="..\osu.iOS.props" />
|
2018-12-06 15:19:09 +08:00
|
|
|
|
<ItemGroup>
|
2022-12-12 06:25:56 +08:00
|
|
|
|
<ProjectReference Include="..\osu.Game\osu.Game.csproj" />
|
|
|
|
|
<ProjectReference Include="..\osu.Game.Rulesets.Catch\osu.Game.Rulesets.Catch.csproj" />
|
|
|
|
|
<ProjectReference Include="..\osu.Game.Rulesets.Mania\osu.Game.Rulesets.Mania.csproj" />
|
|
|
|
|
<ProjectReference Include="..\osu.Game.Rulesets.Osu\osu.Game.Rulesets.Osu.csproj" />
|
|
|
|
|
<ProjectReference Include="..\osu.Game.Rulesets.Taiko\osu.Game.Rulesets.Taiko.csproj" />
|
2019-07-12 16:49:59 +08:00
|
|
|
|
</ItemGroup>
|
2021-04-09 07:34:35 +08:00
|
|
|
|
<ItemGroup>
|
2021-08-02 01:04:24 +08:00
|
|
|
|
<PackageReference Include="Xamarin.Essentials" Version="1.7.0" />
|
2021-04-09 07:34:35 +08:00
|
|
|
|
</ItemGroup>
|
2020-02-27 08:24:45 +08:00
|
|
|
|
</Project>
|