main
wxs 14 lines 492 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
10 <InstallExecuteSequence>
11 <Custom Action="Action1" After="InstallFiles" />
12 </InstallExecuteSequence>
13 </Fragment>
14 </Wix>