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 7d0c83d commit 131d1a4Copy full SHA for 131d1a4
lib/find-visualstudio.js
@@ -347,6 +347,11 @@ VisualStudioFinder.prototype = {
347
348
// Find an installation of Visual Studio 2015 to use
349
findVisualStudio2015: function findVisualStudio2015 (cb) {
350
+ if (this.nodeSemver.major >= 19) {
351
+ this.addLog(
352
+ 'not looking for VS2015 as it is only supported up to Node.js 18')
353
+ return cb(null)
354
+ }
355
return this.findOldVS({
356
version: '14.0',
357
versionMajor: 14,
0 commit comments