| 123456789101112131415161718192021 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0-android</TargetFramework>
- <OutputType>Exe</OutputType>
- <RootNamespace>Tetris.Android</RootNamespace>
- <AssemblyName>Tetris.Android</AssemblyName>
- <MonoGamePlatform>Android</MonoGamePlatform>
- </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.Android" Version="3.8.*" />
- <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
- </ItemGroup>
- </Project>
|