| 1234567891011121314151617181920 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0-ios</TargetFramework>
- <OutputType>Exe</OutputType>
- <RootNamespace>Tetris.iOS</RootNamespace>
- <AssemblyName>Tetris.iOS</AssemblyName>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\Tetris.Core.csproj" />
- </ItemGroup>
- <ItemGroup>
- <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb">
- <Link>Content\Content.mgcb</Link>
- </MonoGameContentReference>
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.*" />
- <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
- </ItemGroup>
- </Project>
|