-
Notifications
You must be signed in to change notification settings - Fork 325
Expand file tree
/
Copy pathiOS.csproj
More file actions
22 lines (22 loc) · 842 Bytes
/
iOS.csproj
File metadata and controls
22 lines (22 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0-ios</TargetFramework>
<SupportedOSPlatformVersion>12.2</SupportedOSPlatformVersion>
<CodesignKey>iPhone Developer</CodesignKey>
<AssemblyName>Platformer2D</AssemblyName>
<AssemblyTitle>Platformer2D</AssemblyTitle>
</PropertyGroup>
<ItemGroup>
<MonoGameContentReference Include="..\Core\Content\Platformer2D.mgcb">
<Link>Content\Platformer2D.mgcb</Link>
</MonoGameContentReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Core\Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.5-preview.*" />
<PackageReference Include="MonoGame.Framework.iOS" Version="3.8.5-preview.*" />
</ItemGroup>
</Project>