Tetris.iOS.csproj 707 B

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