main
wxs 32 lines 1.45 KB
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="CustomAction1" DllEntry="InvalidEntryPoint" BinaryRef="Binary1" />
9 <CustomAction Id="DiscardOptimismAllBeingsWhoProceed" Error="Abandon hope all ye who enter here." />
10 <CustomAction Id="CustomActionWithHiddenTarget" DllEntry="InvalidEntryPoint" Execute="deferred" HideTarget="yes" BinaryRef="Binary1" />
11 <CustomAction Id="CustomAction2" Property="TestAdvtExecuteSequenceProperty" Value="1" />
12 <AdminExecuteSequence>
13 <Custom Action="CustomAction2" After="CostInitialize" />
14 </AdminExecuteSequence>
15 <AdminUISequence>
16 <Custom Action="CustomAction2" After="CostInitialize" />
17 </AdminUISequence>
18 <AdvertiseExecuteSequence>
19 <Custom Action="CustomAction2" After="CostInitialize" />
20 </AdvertiseExecuteSequence>
21 <InstallExecuteSequence>
22 <Custom Action="CustomAction2" After="CostInitialize" />
23 </InstallExecuteSequence>
24 <InstallUISequence>
25 <Custom Action="CustomAction2" After="CostInitialize" />
26 </InstallUISequence>
27
28 <UI>
29 <ProgressText Action="CustomAction2" Message="Progess2Text" />
30 </UI>
31 </Fragment>
32 </Wix>