mirror of
https://github.com/SK-la/osu-framework.git
synced 2026-03-13 11:20:31 +00:00
22 lines
1022 B
XML
22 lines
1022 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0-ios</TargetFramework>
|
|
<SupportedOSPlatformVersion>13.4</SupportedOSPlatformVersion>
|
|
<CodesignKey>iPhone Developer</CodesignKey>
|
|
<NullabilityInfoContextSupport>true</NullabilityInfoContextSupport>
|
|
<!-- MT7091 occurs when referencing a .framework bundle that consists of a static library.
|
|
It only warns about not copying the library to the app bundle to save space,
|
|
so there's nothing to be worried about. -->
|
|
<NoWarn>MT7091</NoWarn>
|
|
</PropertyGroup>
|
|
<Import Project="..\..\..\..\osu.Framework.iOS.props" />
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\TemplateGame.Game\TemplateGame.Game.csproj" />
|
|
<ProjectReference Include="..\TemplateGame.Resources\TemplateGame.Resources.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup Label="Package References">
|
|
<ProjectReference Include="..\..\..\..\osu.Framework.iOS\osu.Framework.iOS.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|