PRS.Avalonia.iOS.csproj 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net9.0-ios</TargetFramework>
  5. <SupportedOSPlatformVersion>13.0</SupportedOSPlatformVersion>
  6. <Nullable>enable</Nullable>
  7. <Configurations>Debug;Release;Publish</Configurations>
  8. <Platforms>AnyCPU</Platforms>
  9. <!-- <IsAotCompatible>false</IsAotCompatible>-->
  10. <!-- <EnableNativeAOT>false</EnableNativeAOT>-->
  11. <!-- <PublishAot>false</PublishAot>-->
  12. <!-- <PublishAotUsingRuntimePack>false</PublishAotUsingRuntimePack>-->
  13. <!-- <MtouchUseLlvm>false</MtouchUseLlvm>-->
  14. </PropertyGroup>
  15. <!-- Forces the use of the iOS interpreter during builds -->
  16. <!-- <PropertyGroup Condition="$(TargetFramework.Contains('-ios'))">-->
  17. <!-- <UseInterpreter>true</UseInterpreter>-->
  18. <!-- </PropertyGroup>-->
  19. <!-- 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 -->
  20. <!-- <Target Name="SelectStaticRegistrar" AfterTargets="SelectRegistrar">-->
  21. <!-- <PropertyGroup Condition="'$(Registrar)' == 'managed-static'">-->
  22. <!-- <Registrar>static</Registrar>-->
  23. <!-- </PropertyGroup>-->
  24. <!-- </Target>-->
  25. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  26. <CodesignKey>iPhone Developer</CodesignKey>
  27. <!-- <MtouchDebug>true</MtouchDebug>-->
  28. <!-- <IOSDebugOverWiFi>true</IOSDebugOverWiFi>-->
  29. <CodesignProvision>Development (com.prs.avalonia)</CodesignProvision>
  30. </PropertyGroup>
  31. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  32. <CodesignKey>iPhone Distribution</CodesignKey>
  33. <CodesignProvision>Ad hoc (com.prs.avalonia)</CodesignProvision>
  34. </PropertyGroup>
  35. <PropertyGroup Condition=" '$(Configuration)' == 'Publish' ">
  36. <CodesignKey>iPhone Distribution</CodesignKey>
  37. <CodesignProvision>App Store (com.prs.avalonia)</CodesignProvision>
  38. </PropertyGroup>
  39. <ItemGroup>
  40. <ProjectReference Include="..\..\..\inabox\InABox.Avalonia.Platform.iOS\InABox.Avalonia.Platform.iOS.csproj" />
  41. <ProjectReference Include="..\..\..\inabox\InABox.Avalonia.Platform\InABox.Avalonia.Platform.csproj" />
  42. <ProjectReference Include="..\PRS.Avalonia\PRS.Avalonia.csproj"/>
  43. </ItemGroup>
  44. <ItemGroup>
  45. <PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.2" />
  46. <PackageReference Include="Avalonia.iOS" Version="11.2.2" />
  47. </ItemGroup>
  48. <ItemGroup>
  49. <Folder Include="Assets.xcassets\" />
  50. </ItemGroup>
  51. </Project>