Files
runner-images/images/win/scripts/Installers/Windows2019/Install-InstallerProjects.ps1
Andrey Mishechkin (GITHUB INC) 86faddeb95 Installer project URL has been corrected
2020-09-08 11:01:42 +04:00

11 lines
654 B
PowerShell

################################################################################
## File: Install-InstallerProjects.ps1
## Desc: Install the InstallerProjects Visual Studio Extension
################################################################################
Import-Module -Name ImageHelpers -Force
$InstallerProjectsUrl = 'https://marketplace.visualstudio.com/_apis/public/gallery/publishers/VisualStudioClient/vsextensions/MicrosoftVisualStudio2017InstallerProjects/latest/vspackage'
Install-VsixExtension -Url $InstallerProjectsUrl -name "InstallerProjects.vsix" -VSversion "2019"
Invoke-PesterTests -TestFile "InstallerProjects"