diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-10-09 16:38:21 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-10-09 16:42:40 -0700 |
| commit | ab7a1abc93473dc1b7fcb341a4d104e3a77afd87 (patch) | |
| tree | 38fd94149e4a03cecd2bdf84258207dd1f100c46 /scripts | |
| parent | d7c60c2048d8d71915478de871caae2767bd80e6 (diff) | |
| download | vcpkg-ab7a1abc93473dc1b7fcb341a4d104e3a77afd87.tar.gz vcpkg-ab7a1abc93473dc1b7fcb341a4d104e3a77afd87.zip | |
[VS detection] Add -products * flag to vswhere. This includes Express and BuildTools SKUs
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/findVisualStudioInstallationInstances.ps1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/findVisualStudioInstallationInstances.ps1 b/scripts/findVisualStudioInstallationInstances.ps1 index 8c67ef6d6..b2f186478 100644 --- a/scripts/findVisualStudioInstallationInstances.ps1 +++ b/scripts/findVisualStudioInstallationInstances.ps1 @@ -6,7 +6,7 @@ param( $scriptsDir = split-path -parent $MyInvocation.MyCommand.Definition $vswhereExe = & $scriptsDir\fetchDependency.ps1 "vswhere" -$output = & $vswhereExe -prerelease -legacy -format xml +$output = & $vswhereExe -prerelease -legacy -products * -format xml [xml]$asXml = $output $results = New-Object System.Collections.ArrayList |
