diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-04-10 15:04:04 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-04-12 10:24:01 -0700 |
| commit | 3441afb46c4dc056493ab84f9b27434c4185d713 (patch) | |
| tree | ec5d6b43292d34e256ebcbf6bf8795b4da46bc80 /src/test/WixToolsetTest.CoreIntegration/TestData | |
| parent | e7b745b08c51b173c80253432a82583e73c46157 (diff) | |
| download | wix-3441afb46c4dc056493ab84f9b27434c4185d713.tar.gz wix-3441afb46c4dc056493ab84f9b27434c4185d713.tar.bz2 wix-3441afb46c4dc056493ab84f9b27434c4185d713.zip | |
Improve implicit Component/@Id generation and duplicate GUID errors
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/Component/GuidCollision.wxs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/Component/GuidCollision.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/Component/GuidCollision.wxs new file mode 100644 index 00000000..a0e921cb --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/Component/GuidCollision.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 Guid="5917d193-7b5f-4d5d-bc2e-06aa210699cb"> | ||
| 6 | <RegistryValue Root="HKLM" Key="SOFTWARE\WixToolset" Name="Test" Value="test value" /> | ||
| 7 | </Component> | ||
| 8 | |||
| 9 | <Component Guid="5917d193-7b5f-4d5d-bc2e-06aa210699cb"> | ||
| 10 | <File Source="test.txt" /> | ||
| 11 | </Component> | ||
| 12 | </ComponentGroup> | ||
| 13 | </Fragment> | ||
| 14 | </Wix> | ||
