Merge pull request #7482 from dotnet/remove-apphost-rids

Don't include ios, tvos, android, and browser RIDs for AppHosts
This commit is contained in:
Daniel Plaisted 2020-05-14 14:39:29 -07:00 committed by GitHub
commit ec77e82e95
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,8 +73,10 @@
<NetCore31RuntimePackRids Include="@(NetCore30RuntimePackRids)"/> <NetCore31RuntimePackRids Include="@(NetCore30RuntimePackRids)"/>
<NetCore5AppHostRids Include="@(NetCore31RuntimePackRids)"/>
<NetCore5RuntimePackRids Include=" <NetCore5RuntimePackRids Include="
@(NetCore31RuntimePackRids); @(NetCore5AppHostRids);
ios-arm64; ios-arm64;
ios-arm; ios-arm;
ios-x64; ios-x64;
@ -88,7 +90,8 @@
browser-wasm; browser-wasm;
" /> " />
<NetCoreRuntimePackRids Include="@(NetCore5RuntimePackRids)"/> <NetCoreAppHostRids Include="@(NetCore5AppHostRids)" />
<NetCoreRuntimePackRids Include="@(NetCore5RuntimePackRids)" />
<AspNetCore30RuntimePackRids Include=" <AspNetCore30RuntimePackRids Include="
win-x64; win-x64;
@ -215,7 +218,7 @@ Copyright (c) .NET Foundation. All rights reserved.
TargetFramework="netcoreapp5.0" TargetFramework="netcoreapp5.0"
AppHostPackNamePattern="Microsoft.NETCore.App.Host.**RID**" AppHostPackNamePattern="Microsoft.NETCore.App.Host.**RID**"
AppHostPackVersion="$(_NETCoreAppPackageVersion)" AppHostPackVersion="$(_NETCoreAppPackageVersion)"
AppHostRuntimeIdentifiers="@(NetCoreRuntimePackRids, '%3B')" AppHostRuntimeIdentifiers="@(NetCoreAppHostRids, '%3B')"
/> />
<KnownCrossgen2Pack Include="Microsoft.NETCore.App.Crossgen2" <KnownCrossgen2Pack Include="Microsoft.NETCore.App.Crossgen2"