dotnet backend should use semVerLevel when searching NuGet
#10283
|
I was looking to install
When adding this field to the NuGet search for mise, the tool is successfully returned. It would be great if |
Replies: 1 comment 6 replies
|
Also, |
The
semVerLevel=2.0.0change is merged in #10384 and will be in the next release.On the prerelease point you raised — that one is intentional: mise''s NuGet search always requests
prerelease=trueso it fetches the full version list, then filters by the tool''sprereleaseoption (and the globalprereleasessetting) during version resolution. So the hard-codedtruein the query doesn''t force prereleases on you; it just keeps them available to resolve when you opt in. (Forroslyn-language-serverspecifically, every published version is a prerelease, so you''ll still wantdotnet:roslyn-language-server[prerelease=true]to install it.)Thanks for the detailed investigation!