mirror of
https://github.com/ppy/osu
synced 2024-12-16 20:05:41 +00:00
20 lines
995 B
XML
20 lines
995 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup Label="Project">
|
|
<TargetFramework>net6.0-ios</TargetFramework>
|
|
<SupportedOSPlatformVersion>13.4</SupportedOSPlatformVersion>
|
|
<OutputType>Exe</OutputType>
|
|
<MtouchUseLlvm>false</MtouchUseLlvm> <!-- This currently causes random lockups during gameplay. https://github.com/mono/mono/issues/18973 -->
|
|
</PropertyGroup>
|
|
<Import Project="..\osu.iOS.props" />
|
|
<ItemGroup>
|
|
<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" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Xamarin.Essentials" Version="1.7.0" />
|
|
</ItemGroup>
|
|
</Project>
|