blob: 0a0c8cb663f4ff584f85afbcb2bf7076b57c75d6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util">
<Fragment>
<ComponentGroup Id="ModuleComponents" Directory="INSTALLFOLDER">
<Component>
<File Source="ModuleComponents.wxs" />
<util:RemoveRegistryKey Root="HKLM" Key="SOFTWARE\Example" On="install" />
</Component>
</ComponentGroup>
</Fragment>
</Wix>
|