Draw2D.DesktopGL.csproj 927 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <RootNamespace>Draw2D.DesktopGL</RootNamespace>
  5. <AssemblyName>Draw2D.DesktopGL</AssemblyName>
  6. <GenerateAssemblyInfo>true</GenerateAssemblyInfo>
  7. <OutputType>Exe</OutputType>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <ProjectReference Include="..\..\Core\Draw2D.Core.csproj" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <Content Include="..\..\..\CompiledContent\Windows\Content\Textures\logo.xnb" Link="Content\logo.xnb">
  17. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  18. </Content>
  19. <Content Include="..\..\..\CompiledContent\Windows\Content\Fonts\Arial.xnb" Link="Content\Font.xnb">
  20. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  21. </Content>
  22. </ItemGroup>
  23. </Project>