main
wxs 18 lines 761 Bytes
Raw
1 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Fragment>
3 <ComponentGroup Id="ProductComponents">
4 <ComponentGroupRef Id="MinimalComponentGroup" />
5 </ComponentGroup>
6
7 <Binary Id="Binary1" SourceFile="test.txt" />
8 <CustomAction Id="Action1" DllEntry="EntryPoint1" BinaryRef="Binary1" />
9 <CustomAction Id="Action2" DllEntry="EntryPoint2" BinaryRef="Binary1" />
10 <CustomAction Id="Action3" DllEntry="EntryPoint3" BinaryRef="Binary1" />
11
12 <InstallExecuteSequence>
13 <Custom Action="Action1" After="Action2" />
14 <Custom Action="Action2" After="Action3" />
15 <Custom Action="Action3" After="Action1" />
16 </InstallExecuteSequence>
17 </Fragment>
18 </Wix>