| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFrameworks>net8.0-ios;net9.0-ios</TargetFrameworks>
- <SupportedOSPlatformVersion>13.0</SupportedOSPlatformVersion>
- <Nullable>enable</Nullable>
- <!-- <IsAotCompatible>false</IsAotCompatible>-->
- <!-- <EnableNativeAOT>false</EnableNativeAOT>-->
- <!-- <PublishAot>false</PublishAot>-->
- <!-- <PublishAotUsingRuntimePack>false</PublishAotUsingRuntimePack>-->
- <MtouchUseLlvm>false</MtouchUseLlvm>
- </PropertyGroup>
-
- <!-- Forces the use of the iOS interpreter during builds -->
- <!-- <PropertyGroup Condition="$(TargetFramework.Contains('-ios'))">-->
- <!-- <UseInterpreter>true</UseInterpreter>-->
- <!-- </PropertyGroup>-->
- <!-- Disables the new "managed-static" registrar. Could cause the app's size to be slightly larger. May enable in the future --><!-- See : https://github.com/xamarin/xamarin-macios/wiki/.NET-9-release-notes#type-registrar-managed-static-as-the-new-default -->
- <!-- <Target Name="SelectStaticRegistrar" AfterTargets="SelectRegistrar">-->
- <!-- <PropertyGroup Condition="'$(Registrar)' == 'managed-static'">-->
- <!-- <Registrar>static</Registrar>-->
- <!-- </PropertyGroup>-->
- <!-- </Target>-->
-
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <CodesignKey>iPhone Developer</CodesignKey>
- <MtouchDebug>true</MtouchDebug>
- <IOSDebugOverWiFi>true</IOSDebugOverWiFi>
- <CodesignProvision>PRS Avalonia Development</CodesignProvision>
- </PropertyGroup>
-
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <CodesignKey>iPhone Distribution</CodesignKey>
- </PropertyGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\..\..\inabox\InABox.Avalonia.Platform.iOS\InABox.Avalonia.Platform.iOS.csproj" />
- <ProjectReference Include="..\..\..\inabox\InABox.Avalonia.Platform\InABox.Avalonia.Platform.csproj" />
- <ProjectReference Include="..\PRS.Avalonia\PRS.Avalonia.csproj"/>
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.2" />
- <PackageReference Include="Avalonia.iOS" Version="11.2.2" />
- </ItemGroup>
- <ItemGroup>
- <Folder Include="Assets.xcassets\" />
- </ItemGroup>
-
- </Project>
|