PerPixelCollisionSample.iOS.csproj 854 B

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-ios</TargetFramework>
  4. <OutputType>Exe</OutputType>
  5. <RollForward>Major</RollForward>
  6. <IsPackable>false</IsPackable>
  7. <SupportedOSPlatformVersion>11.0</SupportedOSPlatformVersion>
  8. <AssemblyName>PerPixelCollisionSample.iOS</AssemblyName>
  9. <RootNamespace>PerPixelCollision</RootNamespace>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.*" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <ProjectReference Include="..\..\Core\PerPixelCollisionSample.Core.csproj" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  19. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  20. </Content>
  21. </ItemGroup>
  22. </Project>