Skip to content

Commit c17a37f

Browse files
authored
Fixed bug with profile detection in MSVC 18. (#19348)
1 parent 8bdbf02 commit c17a37f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conan/internal/api/detect/detect_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ def default_msvc_ide_version(version):
469469

470470
def _detect_vs_ide_version():
471471
from conan.internal.api.detect.detect_vs import vs_installation_path
472-
msvc_versions = "17", "16", "15"
472+
msvc_versions = "18", "17", "16", "15"
473473
for version in msvc_versions:
474474
vs_path = os.getenv('vs%s0comntools' % version)
475475
path = vs_path or vs_installation_path(version)

0 commit comments

Comments
 (0)