-
Notifications
You must be signed in to change notification settings - Fork 216
Conversation
src/corehost/cli/fxr/fx_muxer.cpp
Outdated
(ver.get_major() == specified.get_major() && ver.get_minor() == specified.get_minor() && | ||
(ver.get_patch() / 100) == (specified.get_patch() / 100))) | ||
(ver.get_patch() / 100) == (specified.get_patch() / 100) && (ver == std::max(ver, specified)))) |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
src/corehost/cli/fxr/fx_muxer.cpp
Outdated
// Pick the greatest version that differs only in the 'minor-patch' if a global cli version is specified. | ||
// If a global cli version is specified: | ||
// pick the greatest version that differs only in the 'minor-patch' | ||
// and is semantically greater than or equal to the global cli version specified. |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Is master the right branch for this? I would hope that we can get it fixed in 2.1. |
@jaredpar |
LGTM I'm hesistant to actually submit an approve review. The code looks good to me but I'm not very familiar with the contents of this repository. But to my eye it looks good. |
I've approved, but it would be good for @steveharter or @eerhardt to look as well. |
The process in the dotnet/core* repos is to first get the PR into master, and then once approved in shiproom, port/cherry-pick the change into the appropriate release branch. |
@eerhardt Ah yes. I always forget that. |
Update the SDK muxer behavior; modify the SDK muxer tests.
Prior SDK muxer behavior:
Newer SDK muxer behavior:
@davidebbo
@dotnet/dotnet-cli
Related: https://github.com/dotnet/core-setup/issues/3805