| 1234567891011121314151617181920212223 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net9.0-ios</TargetFramework>
- <OutputType>Exe</OutputType>
- <RootNamespace>StarWarrior.iOS</RootNamespace>
- <AssemblyName>StarWarrior.iOS</AssemblyName>
- <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
- <MonoGamePlatform>iOS</MonoGamePlatform>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\StarWarrior.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">
- <Link>Content\Content.mgcb</Link>
- </MonoGameContentReference>
- </ItemGroup>
- </Project>
|