blob: 72d5e4a5606bf2deca30428fb2b45958942385ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?xml version="1.0" encoding="utf-8"?>
<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" BinaryKey="Binary1" DllEntry="EntryPoint1" />
<InstallExecuteSequence>
<Custom Action="Action1" After="InstallFiles" />
</InstallExecuteSequence>
</Fragment>
</Wix>
|