mirror of
https://gitlab.com/fabinfra/fabaccess/borepin_tmp.git
synced 2025-03-12 23:01:49 +01:00
23 lines
743 B
XML
23 lines
743 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.9" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Borepin\Borepin.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|