aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Util/test/WixToolsetTest.Util/TestData/RemoveFolderExPackage/PackageComponents.wxs
blob: 0e277546232c05df5083b8ed3dd777f32b554e7d (plain)
1
2
3
4
5
6
7
8
9
10
11
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util">
    <Fragment>
        <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
            <Component>
                <File Source="example.txt" />
                <RegistryValue Root="HKLM" Key="SOFTWARE\[Manufacturer]\[ProductName]" Name="InstallFolder" Value="[INSTALLFOLDER]" />
                <util:RemoveFolderEx On="both" Property="REMOVEPROP" />
            </Component>
        </ComponentGroup>
    </Fragment>
</Wix>