Primitives.DesktopGL.csproj 1.2 KB

12345678910111213141516171819202122232425262728
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <AssemblyName>Primitives.DesktopGL</AssemblyName>
  6. <RootNamespace>PrimitivesSample</RootNamespace>
  7. <ApplicationIcon>..\..\Core\Content\Game.ico</ApplicationIcon>
  8. <AssemblyTitle>MonoGame.Samples.Primitives.DesktopGL</AssemblyTitle>
  9. <AssemblyDescription></AssemblyDescription>
  10. <AssemblyConfiguration></AssemblyConfiguration>
  11. <AssemblyCompany>Savage Software Solutions Ltd.</AssemblyCompany>
  12. <AssemblyProduct></AssemblyProduct>
  13. <AssemblyCopyright>Savage Software Solutions Ltd.</AssemblyCopyright>
  14. <AssemblyTrademark></AssemblyTrademark>
  15. <AssemblyCulture></AssemblyCulture>
  16. <AssemblyVersion>1.0</AssemblyVersion>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
  20. <ProjectReference Include="..\..\Core\Primitives.Core.csproj" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  24. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  25. </Content>
  26. </ItemGroup>
  27. </Project>