Flocking.DesktopGL.csproj 611 B

123456789101112131415161718192021
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <RootNamespace>Flocking.DesktopGL</RootNamespace>
  6. <AssemblyName>Flocking.DesktopGL</AssemblyName>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <ProjectReference Include="..\..\Core\Flocking.Core.csproj" />
  10. <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <Content Include="..\..\Core\Content\**\*.xnb">
  14. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  15. </Content>
  16. </ItemGroup>
  17. </Project>