Thanks to visit codestin.com Credit goes to github.com
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 6eb7ea3 commit 14525bfCopy full SHA for 14525bf
lib/import/find-visualstudio.js
@@ -341,7 +341,12 @@ VisualStudioFinder.prototype = {
341
},
342
343
// Find an installation of Visual Studio 2015 to use
344
- findVisualStudio2015: function findVisualStudio2015 (cb) {
+ findVisualStudio2015: function findVisualStudio2015(cb) {
345
+ if (this.nodeSemver.major >= 19) {
346
+ this.addLog(
347
+ 'not looking for VS2015 as it is only supported up to Node.js 18')
348
+ return cb(null)
349
+ }
350
return this.findOldVS({
351
version: '14.0',
352
versionMajor: 14,
0 commit comments