GooCursor.iOS.csproj 924 B

12345678910111213141516171819202122
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-ios</TargetFramework>
  4. <OutputType>Exe</OutputType>
  5. <RollForward>Major</RollForward>
  6. <PublishReadyToRun>false</PublishReadyToRun>
  7. <TieredCompilation>false</TieredCompilation>
  8. <UseInterpreter>false</UseInterpreter>
  9. <SupportedOSPlatformVersion>11.0</SupportedOSPlatformVersion>
  10. <EnableMGCBItems>false</EnableMGCBItems>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="../../Core/GooCursor.Core.csproj" />
  14. <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.*" />
  15. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  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>