mirror of
https://github.com/Devolutions/IronRDP.git
synced 2025-12-23 12:26:46 +00:00
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`.
22 lines
897 B
XML
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>
|