Skip to content

Commit bde8abb

Browse files
committed
Updated iOS support and provisioning, added commented properties, and dynamic package versioning
Updated the `SupportedOSPlatformVersion` from `13.0` to `10.0`, lowering the minimum supported iOS version. Added a new `ProvisioningType` property set to `manual` for manual app provisioning. Set the `RuntimeIdentifier` to `iossimulator-x64` for building the app for the iOS simulator on a 64-bit architecture. Added two commented out properties, `RuntimeIdentifier` set to `ios-arm64` and `CodesignKey`, for future use on real iOS devices. Changed the `Avalonia.iOS` package reference version from hardcoded `11.0.9` to a variable `$(AvaloniaVersion)` for dynamic version setting.
1 parent e3acc03 commit bde8abb

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

src/CodeBreaker.Avalonia/CodeBreaker.Avalonia.iOS/CodeBreaker.Avalonia.iOS.csproj

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,18 @@
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
44
<TargetFramework>net8.0-ios</TargetFramework>
5-
<SupportedOSPlatformVersion>13.0</SupportedOSPlatformVersion>
5+
<SupportedOSPlatformVersion>10.0</SupportedOSPlatformVersion>
6+
<ProvisioningType>manual</ProvisioningType>
67
<Nullable>enable</Nullable>
8+
<RuntimeIdentifier>iossimulator-x64</RuntimeIdentifier>
9+
10+
<!-- These properties need to be set in order to run on a real iDevice -->
11+
<!--<RuntimeIdentifier>ios-arm64</RuntimeIdentifier>-->
12+
<!--<CodesignKey></CodesignKey>-->
713
</PropertyGroup>
814

915
<ItemGroup>
10-
<PackageReference Include="Avalonia.iOS" Version="11.0.9" />
16+
<PackageReference Include="Avalonia.iOS" Version="$(AvaloniaVersion)" />
1117
</ItemGroup>
1218

1319
<ItemGroup>

0 commit comments

Comments
 (0)