ControlCatalog.iOS.csproj 825 B

12345678910111213141516171819
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <ProvisioningType>manual</ProvisioningType>
  5. <TargetFramework>net6.0-ios</TargetFramework>
  6. <SupportedOSPlatformVersion>13.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. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  13. <CodesignKey>iPhone Developer</CodesignKey>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\..\src\iOS\Avalonia.iOS\Avalonia.iOS.csproj" />
  17. <ProjectReference Include="..\ControlCatalog\ControlCatalog.csproj" />
  18. </ItemGroup>
  19. </Project>