Tetris.Windows.csproj 772 B

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