From dea2e36d390bc0171413ae376a425c9772530e3b Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 17 Jan 2018 07:29:18 +0000 Subject: [PATCH 1/2] Update recommended WiX toolset link to be generic to WiX 3.x but mention that the latest version of 3.11 has to be taken. --- build.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.psm1 b/build.psm1 index b17a39842ab..74d22ef4d1b 100644 --- a/build.psm1 +++ b/build.psm1 @@ -2109,7 +2109,7 @@ function New-MSIPackage Write-Verbose "Ensure Wix Toolset is present on the machine @ $wixToolsetBinPath" if (-not (Test-Path $wixToolsetBinPath)) { - throw "Wix Toolset is required to create MSI package. Please install it from https://github.com/wixtoolset/wix3/releases/download/wix311rtm/wix311.exe" + throw "Wix Toolset 3.11 is required to create MSI package. Please install it from https://github.com/wixtoolset/wix3/releases" } ## Get the latest if multiple versions exist. From 07acab9c9af9dcb0d22d0a30401f6ba64a988f76 Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 17 Jan 2018 07:36:47 +0000 Subject: [PATCH 2/2] tweak message --- build.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.psm1 b/build.psm1 index 74d22ef4d1b..3cd9e7cb285 100644 --- a/build.psm1 +++ b/build.psm1 @@ -2109,7 +2109,7 @@ function New-MSIPackage Write-Verbose "Ensure Wix Toolset is present on the machine @ $wixToolsetBinPath" if (-not (Test-Path $wixToolsetBinPath)) { - throw "Wix Toolset 3.11 is required to create MSI package. Please install it from https://github.com/wixtoolset/wix3/releases" + throw "The latest version of Wix Toolset 3.11 is required to create MSI package. Please install it from https://github.com/wixtoolset/wix3/releases" } ## Get the latest if multiple versions exist.