mirror of https://github.com/ppy/SDL3-CS.git
23 lines
695 B
XML
23 lines
695 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-ios</TargetFramework>
|
|
<RootNamespace>SDL.Tests.iOS</RootNamespace>
|
|
<OutputType>Exe</OutputType>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>true</ImplicitUsings>
|
|
<SupportedOSPlatformVersion>13.0</SupportedOSPlatformVersion>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<CodesignKey>iPhone Developer</CodesignKey>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SDL3-CS.Tests\SDL3-CS.Tests.csproj" PrivateAssets="all"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<NativeReference Include="$(MSBuildThisFileDirectory)..\native\ios\SDL3.xcframework"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|