CollisionSample.Windows.csproj 1.1 KB

12345678910111213141516171819202122232425262728
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <RollForward>Major</RollForward>
  6. <PublishReadyToRun>false</PublishReadyToRun>
  7. <TieredCompilation>false</TieredCompilation>
  8. <UseWindowsForms>true</UseWindowsForms>
  9. <AssemblyName>Collision</AssemblyName>
  10. <RootNamespace>CollisionSample</RootNamespace>
  11. <ApplicationManifest>..\..\Core\Content\app.manifest</ApplicationManifest>
  12. <ApplicationIcon>..\..\Core\Content\Game.ico</ApplicationIcon>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
  16. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  17. <ProjectReference Include="..\..\Core\CollisionSample.Core.csproj" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <Content Include="..\..\..\CompiledContent\Android\Content\Fonts\Arial.xnb" Link="Content\Arial.xnb">
  21. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  22. </Content>
  23. </ItemGroup>
  24. </Project>