| 1 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> |
| 2 | |
| 3 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 4 | <Fragment> |
| 5 | <ComponentGroup Id="ProductComponents"> |
| 6 | <ComponentRef Id="RegistryComponent2" /> |
| 7 | </ComponentGroup> |
| 8 | </Fragment> |
| 9 | |
| 10 | <Fragment> |
| 11 | <Component Id="RegistryComponent2" Directory="INSTALLFOLDER"> |
| 12 | <RegistryValue Root="HKLM" Key="Software\WiX\Tests\$(var.TestGroupName)" Name="$(var.PackageName)2" Value="!(bind.Property.TestVersion)" Type="string" /> |
| 13 | </Component> |
| 14 | </Fragment> |
| 15 | </Wix> |