mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
Case has been fixed
This commit is contained in:
@@ -6,15 +6,15 @@
|
|||||||
$ErrorActionPreference = "Stop"
|
$ErrorActionPreference = "Stop"
|
||||||
|
|
||||||
$toolset = Get-ToolsetContent
|
$toolset = Get-ToolsetContent
|
||||||
$VsixPackagesList = $toolset.visualStudio.vsix
|
$vsixPackagesList = $toolset.visualStudio.vsix
|
||||||
if (-not $VsixPackagesList) {
|
if (-not $vsixPackagesList) {
|
||||||
Write-Host "No extensions to install"
|
Write-Host "No extensions to install"
|
||||||
exit 0
|
exit 0
|
||||||
}
|
}
|
||||||
|
|
||||||
$VsVersion = $toolset.visualStudio.Version
|
$vsVersion = $toolset.visualStudio.Version
|
||||||
$VsixPackagesList | ForEach-Object {
|
$vsixPackagesList | ForEach-Object {
|
||||||
Install-VsixExtension -url $_.url -name $_.name -VsVersion $VsVersion
|
Install-VsixExtension -Url $_.url -Name $_.name -VSversion $vsVersion
|
||||||
}
|
}
|
||||||
|
|
||||||
Invoke-PesterTests -TestFile "Vsix"
|
Invoke-PesterTests -TestFile "Vsix"
|
||||||
Reference in New Issue
Block a user