PRS.DigitalKey.iOS.csproj 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFrameworks>net8.0-ios;net9.0-ios</TargetFrameworks>
  5. <SupportedOSPlatformVersion>13.0</SupportedOSPlatformVersion>
  6. <Nullable>enable</Nullable>
  7. <BuiltInComInteropSupport>true</BuiltInComInteropSupport>
  8. <AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
  9. <PublishTrimmed>True</PublishTrimmed>
  10. <IsTrimmable>True</IsTrimmable>
  11. <RuntimeIdentifier>ios-arm64</RuntimeIdentifier>
  12. <Configurations>Debug;Release;Publish</Configurations>
  13. <Platforms>AnyCPU</Platforms>
  14. </PropertyGroup>
  15. <PropertyGroup>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  18. <CodesignKey>iPhone Developer</CodesignKey>
  19. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  21. <CodesignKey>iPhone Distribution</CodesignKey>
  22. </PropertyGroup>
  23. <!-- <ItemGroup>-->
  24. <!-- <PackageReference Include="Avalonia" Version="11.2.5" />-->
  25. <!-- <PackageReference Include="Avalonia.Desktop" Version="11.2.5" />-->
  26. <!-- <PackageReference Include="Avalonia.Themes.Fluent" Version="11.2.5" />-->
  27. <!-- <PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.5" />-->
  28. <!-- &lt;!&ndash;Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.&ndash;&gt;-->
  29. <!-- <PackageReference Include="Avalonia.Diagnostics" Version="11.2.5">-->
  30. <!-- <IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>-->
  31. <!-- <PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>-->
  32. <!-- </PackageReference>-->
  33. <!-- </ItemGroup>-->
  34. <ItemGroup>
  35. <ProjectReference Include="..\..\..\inabox\InABox.Avalonia.Platform.iOS\InABox.Avalonia.Platform.iOS.csproj" />
  36. <ProjectReference Include="..\..\..\inabox\InABox.Avalonia.Platform\InABox.Avalonia.Platform.csproj" />
  37. <ProjectReference Include="..\PRS.DigitalKey\PRS.DigitalKey.csproj" />
  38. </ItemGroup>
  39. <ItemGroup>
  40. <PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.2" />
  41. <PackageReference Include="Avalonia.iOS" Version="11.3.2" />
  42. </ItemGroup>
  43. </Project>