SafeAreaDemo.iOS.csproj 739 B

123456789101112131415161718
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net7.0-ios</TargetFramework>
  5. <SupportedOSPlatformVersion>10.0</SupportedOSPlatformVersion>
  6. <ProvisioningType>manual</ProvisioningType>
  7. <Nullable>enable</Nullable>
  8. <RuntimeIdentifier>iossimulator-x64</RuntimeIdentifier>
  9. <!-- These properties need to be set in order to run on a real iDevice -->
  10. <!--<RuntimeIdentifier>ios-arm64</RuntimeIdentifier>-->
  11. <!--<CodesignKey></CodesignKey>-->
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <ProjectReference Include="..\SafeAreaDemo\SafeAreaDemo.csproj" />
  15. <ProjectReference Include="..\..\src\iOS\Avalonia.iOS\Avalonia.iOS.csproj" />
  16. </ItemGroup>
  17. </Project>