diff options
| author | Bob Arnson <bob@firegiant.com> | 2020-09-19 21:20:31 -0400 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2020-09-19 21:24:09 -0400 |
| commit | 27124207afa517da564cdce557dd21654f1a9078 (patch) | |
| tree | 463cc9e3faf129fe7969f29c75a8c77f1ae21cbc /src/WixToolset.Core.Burn | |
| parent | 3f05c650723ecd0a8fe7ab151c67db6c13cb5d75 (diff) | |
| download | wix-27124207afa517da564cdce557dd21654f1a9078.tar.gz wix-27124207afa517da564cdce557dd21654f1a9078.tar.bz2 wix-27124207afa517da564cdce557dd21654f1a9078.zip | |
Remove 32-bit ARM support.
Diffstat (limited to 'src/WixToolset.Core.Burn')
| -rw-r--r-- | src/WixToolset.Core.Burn/Bundles/ProcessMsiPackageCommand.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core.Burn/Bundles/ProcessMsiPackageCommand.cs b/src/WixToolset.Core.Burn/Bundles/ProcessMsiPackageCommand.cs index 3eb97ee6..7adbfcfd 100644 --- a/src/WixToolset.Core.Burn/Bundles/ProcessMsiPackageCommand.cs +++ b/src/WixToolset.Core.Burn/Bundles/ProcessMsiPackageCommand.cs | |||
| @@ -80,7 +80,7 @@ namespace WixToolset.Core.Burn.Bundles | |||
| 80 | // "Elevated privileges are not required to install this package." | 80 | // "Elevated privileges are not required to install this package." |
| 81 | // in MSI 4.5 and below, if this bit is 0, elevation is required. | 81 | // in MSI 4.5 and below, if this bit is 0, elevation is required. |
| 82 | var perMachine = (0 == (sumInfo.WordCount & 8)); | 82 | var perMachine = (0 == (sumInfo.WordCount & 8)); |
| 83 | var x64 = (sumInfo.Template.Contains("x64") || sumInfo.Template.Contains("Intel64")); | 83 | var x64 = sumInfo.Template.Contains("x64"); |
| 84 | 84 | ||
| 85 | this.Facade.PackageSymbol.PerMachine = perMachine ? YesNoDefaultType.Yes : YesNoDefaultType.No; | 85 | this.Facade.PackageSymbol.PerMachine = perMachine ? YesNoDefaultType.Yes : YesNoDefaultType.No; |
| 86 | this.Facade.PackageSymbol.Win64 = x64; | 86 | this.Facade.PackageSymbol.Win64 = x64; |
