Преглед изворни кода

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

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

Fixes: #20783
Brad King пре 5 година
родитељ
комит
b69010b719
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      Source/cmGlobalVisualStudioGenerator.cxx

+ 1 - 1
Source/cmGlobalVisualStudioGenerator.cxx

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