GooCursor.Windows.csproj 1.0 KB

12345678910111213141516171819202122232425
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <RollForward>Major</RollForward>
  6. <PublishReadyToRun>false</PublishReadyToRun>
  7. <TieredCompilation>false</TieredCompilation>
  8. <UseWindowsForms>true</UseWindowsForms>
  9. <EnableMGCBItems>false</EnableMGCBItems>
  10. </PropertyGroup>
  11. <PropertyGroup>
  12. <ApplicationManifest>app.manifest</ApplicationManifest>
  13. <ApplicationIcon>../../Core/Content/Game.ico</ApplicationIcon>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="../../Core/GooCursor.Core.csproj" />
  17. <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
  18. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  22. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  23. </Content>
  24. </ItemGroup>
  25. </Project>