2024-02-14 23:32:20 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2024-02-27 13:47:37 +01:00
|
|
|
|
<TargetFramework>net8.0-ios16.1</TargetFramework>
|
2024-02-14 23:32:20 +01:00
|
|
|
|
<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>
|
2024-02-18 21:51:15 +01:00
|
|
|
|
<PackageReference Include="Avalonia.iOS" Version="11.0.9" />
|
2024-02-14 23:32:20 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Borepin\Borepin.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|