chore: bump iOS nuget package to net9.0 (#1049)
Some checks are pending
CI / Check formatting (push) Waiting to run
CI / Check typos (push) Waiting to run
CI / Checks [linux] (push) Blocked by required conditions
CI / Checks [macos] (push) Blocked by required conditions
CI / Checks [windows] (push) Blocked by required conditions
CI / Fuzzing (push) Blocked by required conditions
CI / Web Client (push) Blocked by required conditions
CI / FFI (push) Blocked by required conditions
CI / Success (push) Blocked by required conditions
Coverage / Coverage Report (push) Waiting to run
Release crates / Release crates (push) Waiting to run
Release crates / Open release PR (push) Waiting to run

The `net8.0-ios` workload is out of support and won't build
out-of-the-box anymore. Bump the target framework to `net9.0-ios`.
This commit is contained in:
Richard Markiewicz 2025-12-04 11:45:49 -05:00 committed by GitHub
parent da5db5bf11
commit 632ad86f67
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -337,7 +337,7 @@ jobs:
run: |
# net8.0 target packaged as Devolutions.IronRdp
dotnet build .\ffi\dotnet\Devolutions.IronRdp\Devolutions.IronRdp.csproj -c Release
# net8.0-ios target packaged as Devolutions.IronRdp.iOS
# net9.0-ios target packaged as Devolutions.IronRdp.iOS
dotnet build .\ffi\dotnet\Devolutions.IronRdp\Devolutions.IronRdp.csproj -c Release /p:PackageId=Devolutions.IronRdp.iOS
shell: pwsh

View file

@ -1,6 +1,6 @@
<Project>
<PropertyGroup Condition="$(PackageId.EndsWith('iOS'))">
<TargetFrameworks>net8.0-ios</TargetFrameworks>
<TargetFrameworks>net9.0-ios</TargetFrameworks>
<SupportedOSPlatformVersion>12.1</SupportedOSPlatformVersion>
</PropertyGroup>