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
`Could not do a version check of vscode because could not parse version number: actual vscode version ${vscodeVersion} or minimum supported vscode version ${minVersion}.`
1328
+
);
1329
+
return;
1330
+
}
1331
+
1332
+
if(semver.lt(parsedVersion,parsedMinVersion)){
1333
+
constmessage=`The CodeQL extension requires VS Code version ${minVersion} or later. Current version is ${vscodeVersion}. Please update VS Code to get the latest features of CodeQL.`;
1334
+
voidshowAndLogWarningMessage(message);
1335
+
}
1336
+
}catch(e){
1337
+
voidshowAndLogWarningMessage(`Could not do a version check because of an error: ${getErrorMessage(e)}`);
0 commit comments