PerPixelCollisionSample.Windows.csproj 1.1 KB

12345678910111213141516171819202122232425262728293031
  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>PerPixelCollisionSample.Windows</AssemblyName>
  10. <RootNamespace>PerPixelCollision</RootNamespace>
  11. <ApplicationIcon>..\..\Core\Content\Game.ico</ApplicationIcon>
  12. <ApplicationManifest>app.manifest</ApplicationManifest>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
  16. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <ProjectReference Include="..\..\Core\PerPixelCollisionSample.Core.csproj" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  23. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  24. </Content>
  25. </ItemGroup>
  26. </Project>