Merge pull request #18561 from neikeq/fix-find-msbuild-2

Fix editor detecting msbuild with a msvc 'tools only' install
This commit is contained in:
Ignacio Etcheverry 2018-05-02 15:13:44 +02:00 committed by GitHub
commit c0192e405d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -174,6 +174,8 @@ String find_msbuild_tools_path() {
List<String> vswhere_args;
vswhere_args.push_back("-latest");
vswhere_args.push_back("-products");
vswhere_args.push_back("*");
vswhere_args.push_back("-requires");
vswhere_args.push_back("Microsoft.Component.MSBuild");