File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1818 - name : Build interpreter and extensions (Developer PowerShell)
1919 shell : powershell
2020 run : |
21- $vswhere = Join-Path $env:' ProgramFiles(x86)' 'Microsoft Visual Studio\Installer\vswhere.exe'
21+ $vswhere = Join-Path ${ env:ProgramFiles(x86)} 'Microsoft Visual Studio\Installer\vswhere.exe'
2222 if (-not (Test-Path $vswhere)) { Write-Error "vswhere not found at $vswhere"; exit 1 }
2323 $inst = & $vswhere -latest -products * -requires Microsoft.Component.MSBuild -property installationPath
2424 if (-not $inst) { Write-Error 'Visual Studio installation not found'; exit 1 }
2929 - name : Run tests (Developer PowerShell)
3030 shell : powershell
3131 run : |
32- $vswhere = Join-Path $env:' ProgramFiles(x86)' 'Microsoft Visual Studio\Installer\vswhere.exe'
32+ $vswhere = Join-Path ${ env:ProgramFiles(x86)} 'Microsoft Visual Studio\Installer\vswhere.exe'
3333 if (-not (Test-Path $vswhere)) { Write-Error "vswhere not found at $vswhere"; exit 1 }
3434 $inst = & $vswhere -latest -products * -requires Microsoft.Component.MSBuild -property installationPath
3535 if (-not $inst) { Write-Error 'Visual Studio installation not found'; exit 1 }
You can’t perform that action at this time.
0 commit comments