ReachGraphicsDemo.Windows.csproj 930 B

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