We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1573e4e commit 5423247Copy full SHA for 5423247
engine/Tools/SboxBuild/Platform/WindowsPlatform.cs
@@ -33,7 +33,7 @@ private string FindVsDevCmdPath()
33
using ( Process vsWhere = new Process() )
34
{
35
vsWhere.StartInfo.FileName = "src\\devtools\\bin\\win64\\vswhere";
36
- vsWhere.StartInfo.Arguments = "-latest -prerelease -products * -property installationPath";
+ vsWhere.StartInfo.Arguments = "-latest -prerelease -products Microsoft.VisualStudio.Product.Enterprise Microsoft.VisualStudio.Product.Professional Microsoft.VisualStudio.Product.Community Microsoft.VisualStudio.Product.BuildTools -property installationPath";
37
vsWhere.StartInfo.UseShellExecute = false;
38
vsWhere.StartInfo.RedirectStandardOutput = true;
39
vsWhere.StartInfo.CreateNoWindow = true;
0 commit comments