mirror of
https://github.com/microsoft/terminal.git
synced 2025-12-10 18:43:54 -06:00
Apparently, we were using the package containing the CRT _source code_ to determine the version of the tools. Also apparently, VS does not guarantee that that package has the same version as the tools package. We should use the version of the tools package instead.
9 lines
642 B
PowerShell
9 lines
642 B
PowerShell
$VSInstances = ([xml](& 'C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere.exe' -latest -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -include packages -format xml))
|
|
$VSPackages = $VSInstances.instances.instance.packages.package
|
|
$LatestVCPackage = ($VSInstances.instances.instance.packages.package | ? { $_.id -eq "Microsoft.VisualCpp.Tools.Core" })
|
|
$LatestVCToolsVersion = $LatestVCPackage.version;
|
|
|
|
Write-Output "Latest VCToolsVersion: $LatestVCToolsVersion"
|
|
Write-Output "Updating VCToolsVersion environment variable for job"
|
|
Write-Output "##vso[task.setvariable variable=VCToolsVersion]$LatestVCToolsVersion"
|