GameComponents.csproj 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net9.0</TargetFramework>
  4. <RootNamespace>GameComponents.DesktopGL</RootNamespace>
  5. <AssemblyName>GameComponents</AssemblyName>
  6. <OutputType>Exe</OutputType>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <ProjectReference Include="..\..\Core\GameComponents.Core.csproj" />
  10. </ItemGroup>
  11. <ItemGroup>
  12. <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <Content Include="..\..\..\CompiledContent\Windows\Content\Textures\logo.xnb" Link="Content\logo.xnb">
  16. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  17. </Content>
  18. <Content Include="..\..\..\CompiledContent\Windows\Content\Fonts\Arial.xnb" Link="Content\Font.xnb">
  19. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  20. </Content>
  21. </ItemGroup>
  22. <ItemGroup>
  23. <None Include="GameComponents.icns">
  24. <Link>$(AssemblyName).icns</Link>
  25. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  26. </None>
  27. </ItemGroup>
  28. </Project>