mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
15 lines
615 B
PowerShell
15 lines
615 B
PowerShell
################################################################################
|
|
## File: Install-Wix.ps1
|
|
## Desc: Install WIX.
|
|
################################################################################
|
|
|
|
Import-Module -Name ImageHelpers -Force;
|
|
|
|
choco install wixtoolset -y --force
|
|
|
|
$extensionUrl = "https://wixtoolset.gallerycdn.vsassets.io/extensions/wixtoolset/wixtoolsetvisualstudio2019extension/1.0.0.4/1563296438961/Votive2019.vsix"
|
|
$extensionName = "Votive2019.vsix"
|
|
|
|
#Installing VS extension 'Wix Toolset Visual Studio 2019 Extension'
|
|
Install-VsixExtension -Url $extensionUrl -Name $extensionName
|