2
0

GemstoneHunter.DesktopGL.csproj 936 B

12345678910111213141516171819202122
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <OutputType>Exe</OutputType>
  5. <RootNamespace>GemstoneHunter.DesktopGL</RootNamespace>
  6. <AssemblyName>GemstoneHunter.DesktopGL</AssemblyName>
  7. <ApplicationIcon>..\..\Core\Content\Game.ico</ApplicationIcon>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <ProjectReference Include="..\..\Core\GemstoneHunter.Core.csproj" />
  11. <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  15. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  16. </Content>
  17. <Content Include="..\..\Core\Content\**\*.MAP" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  18. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  19. </Content>
  20. </ItemGroup>
  21. </Project>