[Windows] Add WiX to VS on Windows-2022 (#4895)

* [Windows] Add wix to VS on Windows-2022

* [Windows] Move WiX in toolset on windows 16, 19
This commit is contained in:
V-Zabayrachny
2022-01-21 18:40:37 +03:00
committed by GitHub
parent e2ebfcd1e9
commit df0e83c8f7
5 changed files with 5 additions and 33 deletions

View File

@@ -8,16 +8,4 @@ Describe "Wix" {
It "Wix Toolset version from registry" {
$version | Should -Not -BeNullOrEmpty
}
It "Wix Toolset version from system" -Skip:(Test-IsWin22) {
if (Test-IsWin19)
{
$exVersion = Get-VSExtensionVersion -packageName "WixToolset.VisualStudioExtension.Dev16"
}
else
{
$exVersion = Get-VSExtensionVersion -packageName "WixToolset.VisualStudioExtension.Dev15"
}
$exVersion | Should -Not -BeNullOrEmpty
}
}