Add linux-bionic-* known runtime packs.
Without this, `dotnet publish -r linux-bionic-x64` uses vanilla linux-x64
This commit is contained in:
parent
bd50ad2297
commit
ea927d477b
1 changed files with 10 additions and 2 deletions
|
@ -162,8 +162,16 @@
|
|||
<!-- In .NET 6 the browser-wasm runtime pack started using the Mono naming pattern -->
|
||||
<Net60RuntimePackRids Remove="browser-wasm" />
|
||||
|
||||
<NetCoreAppHostRids Include="@(Net60AppHostRids)" />
|
||||
<NetCoreRuntimePackRids Include="@(Net60RuntimePackRids)" />
|
||||
<NetCoreAppHostRids Include="
|
||||
@(Net60AppHostRids);
|
||||
linux-bionic-arm64;
|
||||
linux-bionic-x64;
|
||||
" />
|
||||
<NetCoreRuntimePackRids Include="
|
||||
@(Net60RuntimePackRids);
|
||||
linux-bionic-arm64;
|
||||
linux-bionic-x64;
|
||||
" />
|
||||
|
||||
<!--
|
||||
In source-build, we build the current RID from source, which may be
|
||||
|
|
Loading…
Reference in a new issue