NativeEmbedSample.iOS.csproj 716 B

12345678910111213141516
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0-ios</TargetFramework>
  4. <ProvisioningType>manual</ProvisioningType>
  5. <OutputType>Exe</OutputType>
  6. <Nullable>enable</Nullable>
  7. <ImplicitUsings>true</ImplicitUsings>
  8. <SupportedOSPlatformVersion>11.2</SupportedOSPlatformVersion>
  9. <RuntimeIdentifier>iossimulator-x64</RuntimeIdentifier>
  10. <!-- <RuntimeIdentifier>ios-arm64</RuntimeIdentifier>-->
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="..\..\..\src\iOS\Avalonia.iOS\Avalonia.iOS.csproj" />
  14. <ProjectReference Include="..\NativeEmbedSample\NativeEmbedSample.csproj" />
  15. </ItemGroup>
  16. </Project>