ReachGraphicsDemo.DesktopGL.csproj 878 B

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