aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/CustomActionCycle.wxs
blob: be991c6522040c4624104665c7140e4b3896a993 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
    <Fragment>
        <ComponentGroup Id="ProductComponents">
            <ComponentGroupRef Id="MinimalComponentGroup" />
        </ComponentGroup>

        <Binary Id="Binary1" SourceFile="test.txt" />
        <CustomAction Id="Action1" DllEntry="EntryPoint1" BinaryRef="Binary1" />
        <CustomAction Id="Action2" DllEntry="EntryPoint2" BinaryRef="Binary1" />
        <CustomAction Id="Action3" DllEntry="EntryPoint3" BinaryRef="Binary1" />

        <InstallExecuteSequence>
            <Custom Action="Action1" After="Action2" />
            <Custom Action="Action2" After="Action3" />
            <Custom Action="Action3" After="Action1" />
        </InstallExecuteSequence>
    </Fragment>
</Wix>