IronRDP/ffi/dotnet/Devolutions.IronRdp/Devolutions.IronRdp.Build.iOS.props
Richard Markiewicz 632ad86f67
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
chore: bump iOS nuget package to net9.0 (#1049)
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`.
2025-12-04 11:45:49 -05:00

22 lines
897 B
XML

<Project>
<PropertyGroup Condition="$(PackageId.EndsWith('iOS'))">
<TargetFrameworks>net9.0-ios</TargetFrameworks>
<SupportedOSPlatformVersion>12.1</SupportedOSPlatformVersion>
</PropertyGroup>
<ItemGroup Condition="Exists('$(NativeLibPath_ios_framework)')">
<None Include="$(RuntimesPath)/ios-universal/native/*.framework/**">
<PackagePath>runtimes/ios/native/</PackagePath>
<Pack>true</Pack>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup Condition="!$(PackageId.EndsWith('iOS'))">
<Content Include="Devolutions.IronRdp.iOS.props" PackagePath="build/Devolutions.IronRdp.props" Pack="true" />
</ItemGroup>
<ItemGroup Condition="$(PackageId.EndsWith('iOS'))">
<Content Include="Devolutions.IronRdp.iOS.props" PackagePath="build/Devolutions.IronRdp.iOS.props" Pack="true" />
</ItemGroup>
</Project>