PRS.Avalonia.iOS.csproj 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-ios</TargetFramework>
  4. <SupportedOSPlatformVersion>13.0</SupportedOSPlatformVersion>
  5. <Nullable>enable</Nullable>
  6. <PublishTrimmed>True</PublishTrimmed>
  7. <IsTrimmable>True</IsTrimmable>
  8. <OutputType>Exe</OutputType>
  9. <RuntimeIdentifiers>ios-arm64;iossimulator-x64</RuntimeIdentifiers>
  10. </PropertyGroup>
  11. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  12. <CodesignKey>iPhone Developer</CodesignKey>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  15. <CodesignKey>iPhone Distribution</CodesignKey>
  16. </PropertyGroup>
  17. <ItemGroup>
  18. <ProjectReference Include="..\..\..\inabox\InABox.Avalonia.Platform.iOS\InABox.Avalonia.Platform.iOS.csproj" />
  19. <ProjectReference Include="..\..\..\inabox\InABox.Avalonia.Platform\InABox.Avalonia.Platform.csproj" />
  20. <ProjectReference Include="..\PRS.Avalonia\PRS.Avalonia.csproj"/>
  21. </ItemGroup>
  22. <ItemGroup>
  23. <PackageReference Include="Avalonia.iOS" Version="11.2.2" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <Folder Include="Assets.xcassets\" />
  27. </ItemGroup>
  28. </Project>