SamplesContentBuilder.iOS.csproj 811 B

1234567891011121314151617181920
  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. <AssemblyName>SamplesContentBuilder.iOS</AssemblyName>
  8. <RootNamespace>SamplesContentBuilder.iOS</RootNamespace>
  9. <SupportedOSPlatformVersion>11.0</SupportedOSPlatformVersion>
  10. <ProvisioningType>automatic</ProvisioningType>
  11. <MonoGamePlatform>iOS</MonoGamePlatform>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="MonoGame.Framework.iOS" Version="3.8.*" />
  15. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <MonoGameContentReference Include="..\..\Core\Content\Content-iOS.mgcb" />
  19. </ItemGroup>
  20. </Project>