Collision.csproj 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project Sdk="Microsoft.NET.Sdk">
  3. <PropertyGroup>
  4. <OutputType>Exe</OutputType>
  5. <TargetFramework>net9.0</TargetFramework>
  6. <RootNamespace>CollisionSample</RootNamespace>
  7. <AssemblyName>Collision</AssemblyName>
  8. <AssemblyTitle>Collision</AssemblyTitle>
  9. <MonoGamePlatform>DesktopGL</MonoGamePlatform>
  10. <Description>DesktopGL platform for Collision Sample.</Description>
  11. <Authors>CartBlanche</Authors>
  12. <Company>MonoGame Foundation</Company>
  13. <GenerateAssemblyInfo>true</GenerateAssemblyInfo>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\..\Core\CollisionSample.Core.csproj" />
  17. <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
  18. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <Content Include="..\..\..\CompiledContent\Android\Content\Fonts\Arial.xnb" Link="Content\Arial.xnb">
  22. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  23. </Content>
  24. </ItemGroup>
  25. <ItemGroup>
  26. <None Include="Collision.icns">
  27. <Link>$(AssemblyName).icns</Link>
  28. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  29. </None>
  30. </ItemGroup>
  31. </Project>