blob: ff8741cf633e0275b48ae79dc9dc795ef2430385 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<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" />
<InstallExecuteSequence>
<Custom Action="Action1" After="InstallFiles" />
</InstallExecuteSequence>
</Fragment>
</Wix>
|