Skip to content

Commit 86e86be

Browse files
[clr-ios] Support targeting Apple mobile platforms with CoreCLR (#51429)
Co-authored-by: Rolf Bjarne Kvinge <[email protected]>
1 parent 02fc420 commit 86e86be

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

src/Layout/redist/targets/GenerateBundledVersions.targets

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,9 +252,21 @@
252252
android-x64;
253253
" />
254254

255+
<Net110RuntimePackRids Include="
256+
@(Net100RuntimePackRids);
257+
ios-arm64;
258+
iossimulator-arm64;
259+
iossimulator-x64;
260+
tvos-arm64;
261+
tvossimulator-arm64;
262+
tvossimulator-x64;
263+
maccatalyst-x64;
264+
maccatalyst-arm64;
265+
" />
266+
255267
<NetCoreAppHostRids Include="@(Net90AppHostRids)" />
256268

257-
<NetCoreRuntimePackRids Include="@(Net100RuntimePackRids)" />
269+
<NetCoreRuntimePackRids Include="@(Net110RuntimePackRids)" />
258270

259271
<!--
260272
In source-only builds, we build the current RID from source, which may be
@@ -692,7 +704,7 @@ Copyright (c) .NET Foundation. All rights reserved.
692704
TargetingPackName="Microsoft.NETCore.App.Ref"
693705
TargetingPackVersion="$(MicrosoftNETCoreAppRefPackageVersion)"
694706
RuntimePackNamePatterns="Microsoft.NETCore.App.Runtime.**RID**"
695-
RuntimePackRuntimeIdentifiers="@(NetCoreRuntimePackRids, '%3B')"
707+
RuntimePackRuntimeIdentifiers="@(Net100RuntimePackRids, '%3B')"
696708
/>
697709
698710
<KnownAppHostPack Include="Microsoft.NETCore.App"

0 commit comments

Comments
 (0)