You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In .NET 6 we added support for implied/partial RIDs, as well as flags for specifying the OS portions of a RID. If this flag are specified, any missing RID portions are inferred from the current SDK execution context. For example, dotnet publish --os linux run on an x64 Windows system results in a final RID of linux-x64.
This support exists already in the dotnet build command. We should also support this flags on the restore command, since it already allows for RID-specific restores via the -r/--runtime flag. This should be done similar to the existing dotnet restore --arch flag.
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Describe the solution you'd like
In .NET 6 we added support for implied/partial RIDs, as well as flags for specifying the OS portions of a RID. If this flag are specified, any missing RID portions are inferred from the current SDK execution context. For example,
dotnet publish --os linux
run on an x64 Windows system results in a final RID oflinux-x64
.This support exists already in the
dotnet build
command. We should also support this flags on the restore command, since it already allows for RID-specific restores via the-r
/--runtime
flag. This should be done similar to the existingdotnet restore --arch
flag.The text was updated successfully, but these errors were encountered: