aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/UnscheduledCustomAction.wxs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/UnscheduledCustomAction.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/UnscheduledCustomAction.wxs
index 00ac2810..780529d6 100644
--- a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/UnscheduledCustomAction.wxs
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/UnscheduledCustomAction.wxs
@@ -9,5 +9,21 @@
9 <CustomAction Id="CustomAction1" BinaryKey="Binary1" DllEntry="InvalidEntryPoint" /> 9 <CustomAction Id="CustomAction1" BinaryKey="Binary1" DllEntry="InvalidEntryPoint" />
10 <CustomAction Id="DiscardOptimismAllBeingsWhoProceed" Error="Abandon hope all ye who enter here." /> 10 <CustomAction Id="DiscardOptimismAllBeingsWhoProceed" Error="Abandon hope all ye who enter here." />
11 <CustomAction Id="CustomActionWithHiddenTarget" BinaryKey="Binary1" DllEntry="InvalidEntryPoint" Execute="deferred" HideTarget="yes" /> 11 <CustomAction Id="CustomActionWithHiddenTarget" BinaryKey="Binary1" DllEntry="InvalidEntryPoint" Execute="deferred" HideTarget="yes" />
12 <CustomAction Id="CustomAction2" Property="TestAdvtExecuteSequenceProperty" Value="1" />
13 <AdminExecuteSequence>
14 <Custom Action="CustomAction2" After="CostInitialize" />
15 </AdminExecuteSequence>
16 <AdminUISequence>
17 <Custom Action="CustomAction2" After="CostInitialize" />
18 </AdminUISequence>
19 <AdvertiseExecuteSequence>
20 <Custom Action="CustomAction2" After="CostInitialize" />
21 </AdvertiseExecuteSequence>
22 <InstallExecuteSequence>
23 <Custom Action="CustomAction2" After="CostInitialize" />
24 </InstallExecuteSequence>
25 <InstallUISequence>
26 <Custom Action="CustomAction2" After="CostInitialize" />
27 </InstallUISequence>
12 </Fragment> 28 </Fragment>
13</Wix> 29</Wix>