aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2019-09-30 10:01:55 +1000
committerSean Hall <r.sean.hall@gmail.com>2019-09-30 13:14:35 +1000
commita96ae75e256712829ac2174688c71e6a14ba1943 (patch)
tree5be2520a1166cc1585879f9b44c376efd7bf1e1e /src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction
parent1b266e62a450813718d0ff1c78f4470055adc5f3 (diff)
downloadwix-a96ae75e256712829ac2174688c71e6a14ba1943.tar.gz
wix-a96ae75e256712829ac2174688c71e6a14ba1943.tar.bz2
wix-a96ae75e256712829ac2174688c71e6a14ba1943.zip
Add failing test for CustomAction.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/UnscheduledCustomAction.wxs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/UnscheduledCustomAction.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/UnscheduledCustomAction.wxs
new file mode 100644
index 00000000..d9633869
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/UnscheduledCustomAction.wxs
@@ -0,0 +1,11 @@
1<?xml version="1.0" encoding="utf-8"?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Fragment>
4 <ComponentGroup Id="ProductComponents">
5 <ComponentGroupRef Id="MinimalComponentGroup"></ComponentGroupRef>
6 </ComponentGroup>
7
8 <Binary Id="Binary1" SourceFile="test.txt"></Binary>
9 <CustomAction Id="CustomAction1" BinaryKey="Binary1" DllEntry="InvalidEntryPoint"></CustomAction>
10 </Fragment>
11</Wix>