123456789101112131415161718 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net7.0-ios</TargetFramework>
- <SupportedOSPlatformVersion>10.0</SupportedOSPlatformVersion>
- <ProvisioningType>manual</ProvisioningType>
- <Nullable>enable</Nullable>
- <RuntimeIdentifier>iossimulator-x64</RuntimeIdentifier>
-
- <!-- These properties need to be set in order to run on a real iDevice -->
- <!--<RuntimeIdentifier>ios-arm64</RuntimeIdentifier>-->
- <!--<CodesignKey></CodesignKey>-->
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\SafeAreaDemo\SafeAreaDemo.csproj" />
- <ProjectReference Include="..\..\src\iOS\Avalonia.iOS\Avalonia.iOS.csproj" />
- </ItemGroup>
- </Project>
|