| 12345678910111213141516171819202122 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net9.0-ios</TargetFramework>
- <OutputType>Exe</OutputType>
- <RootNamespace>CatapultGame</RootNamespace>
- <AssemblyName>CatapultNetWars</AssemblyName>
- <SupportedOSPlatformVersion>11.0</SupportedOSPlatformVersion>
- <MonoGamePlatform>iOS</MonoGamePlatform>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\CatapultNetWars.Core.csproj" />
- <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.*" />
- <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb" />
- </ItemGroup>
- </Project>
|