Primitives.iOS.csproj 800 B

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