23 lines
761 B
XML
23 lines
761 B
XML
<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>
|
|
<PackageReference Include="Avalonia.iOS" Version="11.0.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\FrontendAvalonia\FrontendAvalonia.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|