aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/SimpleCustomAction.wxs
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-09-06 21:09:19 -0400
committerBob Arnson <bob@firegiant.com>2020-09-06 21:13:01 -0400
commit3f05c650723ecd0a8fe7ab151c67db6c13cb5d75 (patch)
tree0e53fd0b2aac76716fc1a3407c6b0d40c95693eb /src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/SimpleCustomAction.wxs
parentcb6bd363baef3a7d458dfda053b94131420822f0 (diff)
downloadwix-3f05c650723ecd0a8fe7ab151c67db6c13cb5d75.tar.gz
wix-3f05c650723ecd0a8fe7ab151c67db6c13cb5d75.tar.bz2
wix-3f05c650723ecd0a8fe7ab151c67db6c13cb5d75.zip
Replace BinaryKey with BinaryRef and FileKey with FileRef.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/SimpleCustomAction.wxs')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/SimpleCustomAction.wxs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/SimpleCustomAction.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/SimpleCustomAction.wxs
index 72d5e4a5..ff8741cf 100644
--- a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/SimpleCustomAction.wxs
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomAction/SimpleCustomAction.wxs
@@ -1,12 +1,11 @@
1<?xml version="1.0" encoding="utf-8"?> 1<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Fragment> 2 <Fragment>
4 <ComponentGroup Id="ProductComponents"> 3 <ComponentGroup Id="ProductComponents">
5 <ComponentGroupRef Id="MinimalComponentGroup" /> 4 <ComponentGroupRef Id="MinimalComponentGroup" />
6 </ComponentGroup> 5 </ComponentGroup>
7 6
8 <Binary Id="Binary1" SourceFile="test.txt" /> 7 <Binary Id="Binary1" SourceFile="test.txt" />
9 <CustomAction Id="Action1" BinaryKey="Binary1" DllEntry="EntryPoint1" /> 8 <CustomAction Id="Action1" DllEntry="EntryPoint1" BinaryRef="Binary1" />
10 9
11 <InstallExecuteSequence> 10 <InstallExecuteSequence>
12 <Custom Action="Action1" After="InstallFiles" /> 11 <Custom Action="Action1" After="InstallFiles" />