2
0

PerPixelCollisionSample.DesktopGL.csproj 1007 B

1234567891011121314151617181920212223242526272829
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <RollForward>Major</RollForward>
  6. <PublishReadyToRun>false</PublishReadyToRun>
  7. <TieredCompilation>false</TieredCompilation>
  8. <AssemblyName>PerPixelCollisionSample.DesktopGL</AssemblyName>
  9. <RootNamespace>PerPixelCollision</RootNamespace>
  10. <ApplicationIcon>..\..\Core\Content\Game.ico</ApplicationIcon>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
  14. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="..\..\Core\PerPixelCollisionSample.Core.csproj" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  21. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  22. </Content>
  23. </ItemGroup>
  24. </Project>