RectangleCollisionSample.iOS.csproj 908 B

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