InstallerProjets scripts have been added

This commit is contained in:
Andrey Mishechkin (GITHUB INC)
2020-09-07 17:05:11 +04:00
parent c2c26d2c17
commit ece0348c18
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
################################################################################
## 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/0.9.8/vspackage'
Install-VsixExtension -Url $InstallerProjectsUrl -name "InstallerProjects.vsix" -VSversion "2019"
Invoke-PesterTests -TestFile "InstallerProjects"