From 7d3b34466ee9c4742ef9aa47bf1fe726d72df0bc Mon Sep 17 00:00:00 2001 From: Gregory Pakosz Date: Wed, 4 Mar 2026 16:50:05 +0100 Subject: [PATCH] Add support for Visual Studio 2026 (vsversion: "2026") --- lib.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib.js b/lib.js index e1774d89..ba4919f1 100644 --- a/lib.js +++ b/lib.js @@ -9,9 +9,10 @@ const PROGRAM_FILES = [process.env['ProgramFiles(x86)'], process.env['ProgramFil const EDITIONS = ['Enterprise', 'Professional', 'Community', 'BuildTools'] -const YEARS = ['2022', '2019', '2017'] +const YEARS = ['2026', '2022', '2019', '2017'] const VsYearVersion = { + '2026': '18.0', '2022': '17.0', '2019': '16.0', '2017': '15.0',