We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f591c2 commit 4836f50Copy full SHA for 4836f50
src/lsptoolshost/dotnetRuntimeExtensionResolver.ts
@@ -153,7 +153,7 @@ export class DotnetRuntimeExtensionResolver implements IHostExecutableResolver {
153
let matchingRuntime: RuntimeInfo | undefined = undefined;
154
for (const runtime of coreRuntimeVersions) {
155
// We consider a match if the runtime is greater than or equal to the required version since we roll forward.
156
- if (semver.gt(runtime.Version, requiredRuntimeVersion)) {
+ if (semver.gte(runtime.Version, requiredRuntimeVersion)) {
157
matchingRuntime = runtime;
158
break;
159
}
0 commit comments