StarWarrior.csproj 834 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project Sdk="Microsoft.NET.Sdk">
  3. <PropertyGroup>
  4. <TargetFramework>net9.0-ios</TargetFramework>
  5. <OutputType>Exe</OutputType>
  6. <RootNamespace>StarWarrior.iOS</RootNamespace>
  7. <AssemblyName>StarWarrior.iOS</AssemblyName>
  8. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  9. <MonoGamePlatform>iOS</MonoGamePlatform>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <ProjectReference Include="..\..\Core\StarWarrior.Core.csproj" />
  13. <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.*" />
  14. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb">
  18. <Link>Content\Content.mgcb</Link>
  19. </MonoGameContentReference>
  20. </ItemGroup>
  21. </Project>