CatapultNetWars.csproj 737 B

12345678910111213141516171819202122
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net9.0-ios</TargetFramework>
  4. <OutputType>Exe</OutputType>
  5. <RootNamespace>CatapultGame</RootNamespace>
  6. <AssemblyName>CatapultNetWars</AssemblyName>
  7. <SupportedOSPlatformVersion>11.0</SupportedOSPlatformVersion>
  8. <MonoGamePlatform>iOS</MonoGamePlatform>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <ProjectReference Include="..\..\Core\CatapultNetWars.Core.csproj" />
  12. <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.*" />
  13. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb" />
  17. </ItemGroup>
  18. </Project>