From bfba90f1714724ab661e43af5cc48bc148bdef70 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 11 Feb 2021 15:22:03 -0800 Subject: Replace Win64 attribute with Bitness attribute --- .../TestData/BundleWithSearches/Bundle.wxs | 14 +++++++++++- .../WixToolsetTest.Util/UtilExtensionFixture.cs | 4 +++- src/wixext/UtilCompiler.cs | 25 +++++++++++++++++----- 3 files changed, 36 insertions(+), 7 deletions(-) (limited to 'src') diff --git a/src/test/WixToolsetTest.Util/TestData/BundleWithSearches/Bundle.wxs b/src/test/WixToolsetTest.Util/TestData/BundleWithSearches/Bundle.wxs index 3c40b09a..7fef0725 100644 --- a/src/test/WixToolsetTest.Util/TestData/BundleWithSearches/Bundle.wxs +++ b/src/test/WixToolsetTest.Util/TestData/BundleWithSearches/Bundle.wxs @@ -1,10 +1,11 @@ - + + @@ -26,6 +27,17 @@ Result="value" /> + + + + diff --git a/src/test/WixToolsetTest.Util/UtilExtensionFixture.cs b/src/test/WixToolsetTest.Util/UtilExtensionFixture.cs index d9440614..e1a608d3 100644 --- a/src/test/WixToolsetTest.Util/UtilExtensionFixture.cs +++ b/src/test/WixToolsetTest.Util/UtilExtensionFixture.cs @@ -243,7 +243,7 @@ namespace WixToolsetTest.Util "", bundleExtensionDatas[0].GetTestXml()); var utilSearches = extractResult.SelectManifestNodes("/burn:BurnManifest/*[self::burn:ExtensionSearch or self::burn:FileSearch or self::burn:MsiProductSearch or self::burn:RegistrySearch]"); - Assert.Equal(4, utilSearches.Count); + Assert.Equal(5, utilSearches.Count); Assert.Equal("", utilSearches[0].GetTestXml()); Assert.Equal("", utilSearches[2].GetTestXml()); Assert.Equal("", utilSearches[3].GetTestXml()); + Assert.Equal("", utilSearches[4].GetTestXml()); } } diff --git a/src/wixext/UtilCompiler.cs b/src/wixext/UtilCompiler.cs index 7314570e..183f286b 100644 --- a/src/wixext/UtilCompiler.cs +++ b/src/wixext/UtilCompiler.cs @@ -2684,7 +2684,7 @@ namespace WixToolset.Util string key = null; string value = null; var expand = YesNoType.NotSet; - var win64 = YesNoType.NotSet; + var win64 = this.Context.IsCurrentPlatform64Bit; var attributes = WixRegistrySearchAttributes.Raw | WixRegistrySearchAttributes.WantValue; foreach (var attrib in element.Attributes()) @@ -2699,6 +2699,24 @@ namespace WixToolset.Util case "After": this.ParseCommonSearchAttributes(sourceLineNumbers, attrib, ref id, ref variable, ref condition, ref after); break; + case "Bitness": + var bitnessValue = this.ParseHelper.GetAttributeValue(sourceLineNumbers, attrib); + switch (bitnessValue) + { + case "always32": + win64 = false; + break; + case "always64": + win64 = true; + break; + case "default": + case "": + break; + default: + this.Messaging.Write(ErrorMessages.IllegalAttributeValue(sourceLineNumbers, attrib.Name.LocalName, attrib.Name.LocalName, bitnessValue, "default", "always32", "always64")); + break; + } + break; case "Root": root = this.ParseHelper.GetAttributeRegistryRootValue(sourceLineNumbers, attrib, false); break; @@ -2741,9 +2759,6 @@ namespace WixToolset.Util break; } break; - case "Win64": - win64 = this.ParseHelper.GetAttributeYesNoValue(sourceLineNumbers, attrib); - break; default: this.ParseHelper.UnexpectedAttribute(element, attrib); break; @@ -2780,7 +2795,7 @@ namespace WixToolset.Util attributes |= WixRegistrySearchAttributes.ExpandEnvironmentVariables; } - if (win64 == YesNoType.Yes) + if (win64) { attributes |= WixRegistrySearchAttributes.Win64; } -- cgit v1.2.3-55-g6feb