ControlCatalog.iOS.csproj 692 B

12345678910111213141516
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <ProvisioningType>manual</ProvisioningType>
  5. <TargetFramework>net6.0-ios</TargetFramework>
  6. <SupportedOSPlatformVersion>10.0</SupportedOSPlatformVersion>
  7. <!-- temporal workaround for our GL interface backend -->
  8. <UseInterpreter>True</UseInterpreter>
  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="..\ControlCatalog\ControlCatalog.csproj" />
  15. </ItemGroup>
  16. </Project>