summaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.Util/TestData/XmlConfigModule/Module.wxs
blob: 29e8555bfdd3bb3749ee93e1a24c97bea88916b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util">
    <Module Id="XmlConfigModule" Language="1033" Version="1.0.0.0" Guid="047730a5-30fe-4a62-a520-da9381b8226a">

        <Component Id="Parent" Directory="INSTALLFOLDER">
            <File Id="my.xml" Source="my.xml" />
            <util:XmlConfig Id="AddElement" File="[my.xml]" Action="create" Node="element" VerifyPath="xxx" ElementPath="//root/sub" On="install" Sequence="1" />
        </Component>

        <Component Id="Child" Directory="INSTALLFOLDER" Guid="4613414c-11f5-40fa-a1f1-a0ba722a6895">
            <util:XmlConfig Id="ChildElement" File="[my.xml]" VerifyPath="xxx" ElementId="AddElement" Sequence="1" />
        </Component>
    </Module>

    <Fragment>
            <StandardDirectory Id="ProgramFilesFolder">
                <Directory Id="INSTALLFOLDER" Name="MsiPackage" />
            </StandardDirectory>
        </Fragment>
</Wix>