Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions autobuild/autobuild_tool_source_environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ class SourceEnvError(common.AutobuildError):
"15": "v141", # 2017
"16": "v142", # 2019
"17": "v143", # 2022
"18": "v145", # 2026
}

# From VS 2017 on, we have to look for vswhere.exe at this canonical path to
Expand Down Expand Up @@ -738,6 +739,7 @@ def internal_source_environment(configurations, varsfile):
'15': "Visual Studio 15 2017",
'16': "Visual Studio 16 2019",
'17': "Visual Studio 17 2022",
'18': "Visual Studio 18 2026",
}[vsver[:-1]]
except KeyError:
# We don't have a specific mapping for this value of vsver. Take
Expand Down
Loading