[Windows] Add installer projects to VS on Windows-2022 (#4715)

* [Windows] Add installer projects to VS on windows-2022

* [Windows] Improve the function Install-VsixExtension
This commit is contained in:
V-Zabayrachny
2021-12-14 11:31:48 +03:00
committed by GitHub
parent ea705c4d63
commit 573c5aa999
3 changed files with 12 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ if (-not $vsixPackagesList) {
$vsVersion = $toolset.visualStudio.Version
$vsixPackagesList | ForEach-Object {
# Retrieve cdn endpoint to avoid HTTP error 429 https://github.com/actions/virtual-environments/issues/3074
# Retrieve cdn endpoint to avoid HTTP error 429 https://github.com/actions/virtual-environments/issues/3074
$vsixPackage = Get-VsixExtenstionFromMarketplace -ExtensionMarketPlaceName $_
Install-VsixExtension -Url $vsixPackage.DownloadUri -Name $vsixPackage.FileName -VSversion $vsVersion
}