aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2019-11-07 15:27:31 +1000
committerSean Hall <r.sean.hall@gmail.com>2019-11-07 15:55:16 +1000
commit38d85261d5a64f97d6260b5bf07d101711ca9ed9 (patch)
tree9257c88901c67da77f649bfe4a7a8fc8f0665d91 /src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction
parentbc085061963069953d609284ab48d16d7e1ccc99 (diff)
downloadwix-38d85261d5a64f97d6260b5bf07d101711ca9ed9.tar.gz
wix-38d85261d5a64f97d6260b5bf07d101711ca9ed9.tar.bz2
wix-38d85261d5a64f97d6260b5bf07d101711ca9ed9.zip
Update PopulatesCustomActionTable to verify scheduling of a custom action.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction')
-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>