aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Util/test/WixToolsetTest.Util/TestData
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2022-11-15 15:47:48 -0800
committerRob Mensching <rob@firegiant.com>2022-11-15 22:04:07 -0800
commitd14c02d4ca6ee820b7111b789d9f904e0fd52804 (patch)
tree012cf555619080c80a8688ad44257bd5e9d7a90b /src/ext/Util/test/WixToolsetTest.Util/TestData
parent266aed497296cdb087eac157c575e95253ed67ca (diff)
downloadwix-d14c02d4ca6ee820b7111b789d9f904e0fd52804.tar.gz
wix-d14c02d4ca6ee820b7111b789d9f904e0fd52804.tar.bz2
wix-d14c02d4ca6ee820b7111b789d9f904e0fd52804.zip
Fix when xmlns placed directly on PermissionEx
This is NOT recommended in v4 and its converter will move namespaces to the root element, but WiX v3 allowed it so we'll continued to do so in v4. Fixes 7010
Diffstat (limited to 'src/ext/Util/test/WixToolsetTest.Util/TestData')
-rw-r--r--src/ext/Util/test/WixToolsetTest.Util/TestData/PermissionEx/PackageComponents.wxs9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/ext/Util/test/WixToolsetTest.Util/TestData/PermissionEx/PackageComponents.wxs b/src/ext/Util/test/WixToolsetTest.Util/TestData/PermissionEx/PackageComponents.wxs
index 0634d7d4..09f0a724 100644
--- a/src/ext/Util/test/WixToolsetTest.Util/TestData/PermissionEx/PackageComponents.wxs
+++ b/src/ext/Util/test/WixToolsetTest.Util/TestData/PermissionEx/PackageComponents.wxs
@@ -1,4 +1,4 @@
1<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util"> 1<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util">
2 <Fragment> 2 <Fragment>
3 <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> 3 <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
4 <Component> 4 <Component>
@@ -15,7 +15,12 @@
15 <util:PermissionEx User="Everyone" GenericAll="yes" /> 15 <util:PermissionEx User="Everyone" GenericAll="yes" />
16 </RegistryKey> 16 </RegistryKey>
17 <RegistryValue Root="HKLM" Key="TestRegistryValueKey" Value="abc"> 17 <RegistryValue Root="HKLM" Key="TestRegistryValueKey" Value="abc">
18 <util:PermissionEx User="Everyone" GenericAll="yes" /> 18 <!--
19 Example of placing the namespace on the extension element. This is NOT recommended
20 in v4 and its converter will move namespaces to the root, but WiX v3 allowed it so
21 we'll continued to do so for now.
22 -->
23 <PermissionEx User="Everyone" GenericAll="yes" xmlns="http://wixtoolset.org/schemas/v4/wxs/util" />
19 </RegistryValue> 24 </RegistryValue>
20 </Component> 25 </Component>
21 </ComponentGroup> 26 </ComponentGroup>