Waypoint.csproj 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net9.0</TargetFramework>
  4. <OutputType>WinExe</OutputType>
  5. <RootNamespace>Waypoint.DesktopGL</RootNamespace>
  6. <AssemblyName>Waypoint</AssemblyName>
  7. <Nullable>enable</Nullable>
  8. <ImplicitUsings>enable</ImplicitUsings>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <ProjectReference Include="..\..\Core\Waypoint.Core.csproj" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <Content Include="..\..\..\CompiledContent\Windows\Content\Fonts\HUDFont.xnb" Link="Content\HUDFont.xnb">
  18. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  19. </Content>
  20. <Content Include="..\..\..\CompiledContent\Windows\Content\Textures\tank.xnb" Link="Content\tank.xnb">
  21. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  22. </Content>
  23. <Content Include="..\..\..\CompiledContent\Windows\Content\Textures\circle.xnb" Link="Content\dot.xnb">
  24. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  25. </Content>
  26. <Content Include="..\..\..\CompiledContent\Windows\Content\Textures\cursor.xnb" Link="Content\cursor.xnb">
  27. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  28. </Content>
  29. </ItemGroup>
  30. <ItemGroup>
  31. <None Include="Waypoint.icns">
  32. <Link>$(AssemblyName).icns</Link>
  33. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  34. </None>
  35. </ItemGroup>
  36. </Project>