aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2020-06-17 12:10:28 -0700
committerRob Mensching <rob@firegiant.com>2020-06-23 02:10:31 -0700
commit457c144720964a7f50b1d184e6b19faa930e970e (patch)
tree1ec77949cafae525204a381de2145362f1c1b59b /src/test/WixToolsetTest.CoreIntegration/TestData
parent461350c09839f1e59fb3dafe1a67e74bf152f803 (diff)
downloadwix-457c144720964a7f50b1d184e6b19faa930e970e.tar.gz
wix-457c144720964a7f50b1d184e6b19faa930e970e.tar.bz2
wix-457c144720964a7f50b1d184e6b19faa930e970e.zip
Introduce Value attribute on MultiString/MultiStringValue elements
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/Registry/RegistryValueMultiString.wxs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/Registry/RegistryValueMultiString.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/Registry/RegistryValueMultiString.wxs
new file mode 100644
index 00000000..d5c680ee
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/Registry/RegistryValueMultiString.wxs
@@ -0,0 +1,15 @@
1<?xml version="1.0" encoding="utf-8" ?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Fragment>
4 <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
5 <Component Id="MultiStringComponent" Guid="7C40C257-AB36-4B8C-8FD1-C56E0AC4AAEF">
6 <RegistryValue Root="HKLM" Key="Path\To\Key" Type="multiString" KeyPath="yes">
7 <MultiString Value="a" />
8 <MultiStringValue Value="b" />
9 <MultiString Value="c" />
10 </RegistryValue>
11 <RegistryValue Root="HKLM" Key="Path\To\AnotherKey" Name="Secret" Type="binary" />
12 </Component>
13 </ComponentGroup>
14 </Fragment>
15</Wix>