| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net9.0-ios</TargetFramework>
- <SupportedOSPlatformVersion>13.0</SupportedOSPlatformVersion>
- <Nullable>enable</Nullable>
- <Configurations>Debug;Release;Publish</Configurations>
- <Platforms>AnyCPU</Platforms>
- <!-- <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>Development (com.prs.avalonia)</CodesignProvision>
- </PropertyGroup>
-
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <CodesignKey>iPhone Distribution</CodesignKey>
- <CodesignProvision>Ad hoc (com.prs.avalonia)</CodesignProvision>
- </PropertyGroup>
-
- <PropertyGroup Condition=" '$(Configuration)' == 'Publish' ">
- <CodesignKey>iPhone Distribution</CodesignKey>
- <CodesignProvision>App Store (com.prs.avalonia)</CodesignProvision>
- </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>
|