aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/Registry/DuplicateRegistryValueIds.wxs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/Registry/DuplicateRegistryValueIds.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/Registry/DuplicateRegistryValueIds.wxs
new file mode 100644
index 00000000..452aea69
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/Registry/DuplicateRegistryValueIds.wxs
@@ -0,0 +1,14 @@
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>
6 <RegistryKey Root="HKLM" Key="Software\Acme\Foobar 1.0">
7 <RegistryValue Type="string" Name="InstallDir" Value="[TARGETDIR]" />
8 <RegistryValue Type="string" Name="InstallDir" Value="[INSTALLDIR]" />
9 <RegistryValue Type="string" Name="InstallDir" Value="[ProgramFilesFolder]" />
10 </RegistryKey>
11 </Component>
12 </ComponentGroup>
13 </Fragment>
14</Wix>