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,7 @@
Import-Module -Name VsSetup -Force
Describe "InstallProjects" {
It "InstallProjects exists" {
$InstallProjects = (Get-VSSetupInstance | Select-VsSetupInstance -Product *).Packages | Where-Object {$_.id -eq 'VSInstallerProjects' }
$InstallProjects | Should -Not -BeNullOrEmpty
}
}