1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-15 03:48:02 +08:00

VS: Fix .sln support for VS Version Selector with VS 2019

VS 2019 changed the naming pattern used by 2015 and 2017.

Fixes: #20783
This commit is contained in:
Brad King
2020-06-02 10:30:33 -04:00
parent e647949539
commit b69010b719

View File

@@ -167,7 +167,7 @@ void cmGlobalVisualStudioGenerator::WriteSLNHeader(std::ostream& fout)
if (this->ExpressEdition) { if (this->ExpressEdition) {
fout << "# Visual Studio Express 16 for Windows Desktop\n"; fout << "# Visual Studio Express 16 for Windows Desktop\n";
} else { } else {
fout << "# Visual Studio 16\n"; fout << "# Visual Studio Version 16\n";
} }
break; break;
} }