Fix linux-musl-arm apphost
The linux-musl-arm RID in the GenerateBundledVersions.targets was accidentally added in Net50RuntimePackRids instead of Net50AppHostRids. That caused a wrong host (linux-arm) to be extracted during dotnet publish.
This commit is contained in:
parent
e8ba2c5ea8
commit
03bb2be7fe
1 changed files with 4 additions and 2 deletions
|
@ -76,11 +76,13 @@
|
|||
|
||||
<NetCore31RuntimePackRids Include="@(NetCore30RuntimePackRids)"/>
|
||||
|
||||
<Net50AppHostRids Include="@(NetCore31RuntimePackRids)"/>
|
||||
<Net50AppHostRids Include="
|
||||
@(NetCore31RuntimePackRids);
|
||||
linux-musl-arm;
|
||||
"/>
|
||||
|
||||
<Net50RuntimePackRids Include="
|
||||
@(Net50AppHostRids);
|
||||
linux-musl-arm;
|
||||
ios-arm64;
|
||||
ios-arm;
|
||||
ios-x64;
|
||||
|
|
Loading…
Reference in a new issue