aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2021-02-07 19:06:11 -0500
committerBob Arnson <bob@firegiant.com>2021-02-08 16:20:11 -0500
commit3588e1453240ca59ead8b5f8e63cdb8989bf8f84 (patch)
tree6ad226994dfc38054be916f207e7a38673f6dc75 /src/test/WixToolsetTest.CoreIntegration/TestData
parent7342d571cbe4778c202e2a8beb44c7e9555dfc89 (diff)
downloadwix-3588e1453240ca59ead8b5f8e63cdb8989bf8f84.tar.gz
wix-3588e1453240ca59ead8b5f8e63cdb8989bf8f84.tar.bz2
wix-3588e1453240ca59ead8b5f8e63cdb8989bf8f84.zip
Improve duplicate-id reporting.
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>