aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2019-11-05 19:27:06 -0500
committerBob Arnson <bob@firegiant.com>2019-11-05 19:32:42 -0500
commit0f65aaaca2faf1b6fc233c445216d547f08c6fa5 (patch)
tree656e070ac1fe3b8e609002196f325386f6220731 /src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction
parente6f381b0ce2011ced88697ca7ddaae8a053b57d7 (diff)
downloadwix-0f65aaaca2faf1b6fc233c445216d547f08c6fa5.tar.gz
wix-0f65aaaca2faf1b6fc233c445216d547f08c6fa5.tar.bz2
wix-0f65aaaca2faf1b6fc233c445216d547f08c6fa5.zip
Move creation of hidden properties...
...for deferred CAs with HideTarget="yes" to the MSI backend where it belongs.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/UnscheduledCustomAction.wxs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/UnscheduledCustomAction.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/UnscheduledCustomAction.wxs
index e4b066e9..00ac2810 100644
--- a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/UnscheduledCustomAction.wxs
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/UnscheduledCustomAction.wxs
@@ -6,7 +6,8 @@
6 </ComponentGroup> 6 </ComponentGroup>
7 7
8 <Binary Id="Binary1" SourceFile="test.txt"></Binary> 8 <Binary Id="Binary1" SourceFile="test.txt"></Binary>
9 <CustomAction Id="CustomAction1" BinaryKey="Binary1" DllEntry="InvalidEntryPoint"></CustomAction> 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 </Fragment> 12 </Fragment>
12</Wix> 13</Wix>