-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
-version does not allow for a single version value #270
Comments
This is the documented behavior and consistent with VSIXInstaller version ranges. A single version means [17,). Not to mention, changing this would be a breaking change for anyone looking for, say, 15+ via |
If anything, perhaps we can expand on the version syntax or at least link to https://github.com/microsoft/vswhere/wiki/Examples (maybe add a heading directly for version syntax, or add a new page and link to that from examples). |
Fixes microsoft#276. Also resolves microsoft#270 by including link to more details on versioning syntax.
Fixes microsoft#276. Also resolves microsoft#270 by including link to more details on versioning syntax.
Running
vswhere.exe -version 17
doesn't set the version range to be[17,18)
but rather uses the max version for the upper bound. It may be less confusing to support a single version value for-version
and set the maximum of the range to be the same as the minimum.The text was updated successfully, but these errors were encountered: