aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/SimpleBundle/MultiFileBootstrapperApplication.wxs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-12-08 15:09:31 -0600
committerSean Hall <r.sean.hall@gmail.com>2020-12-08 15:18:03 -0600
commit0106f99945266b2391b18a8389d056375cfff0b0 (patch)
tree59de6526892e962aa987692c77891aa8aea6665e /src/test/WixToolsetTest.CoreIntegration/TestData/SimpleBundle/MultiFileBootstrapperApplication.wxs
parent3261d8d93365d866f5323b7806837655f1e5e084 (diff)
downloadwix-0106f99945266b2391b18a8389d056375cfff0b0.tar.gz
wix-0106f99945266b2391b18a8389d056375cfff0b0.tar.bz2
wix-0106f99945266b2391b18a8389d056375cfff0b0.zip
WIXFEAT:6209 - Move BA entry point to its own element.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/SimpleBundle/MultiFileBootstrapperApplication.wxs')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/SimpleBundle/MultiFileBootstrapperApplication.wxs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/SimpleBundle/MultiFileBootstrapperApplication.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/SimpleBundle/MultiFileBootstrapperApplication.wxs
index 88c4cf1b..f5fe9885 100644
--- a/src/test/WixToolsetTest.CoreIntegration/TestData/SimpleBundle/MultiFileBootstrapperApplication.wxs
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/SimpleBundle/MultiFileBootstrapperApplication.wxs
@@ -1,6 +1,7 @@
1<?xml version="1.0" encoding="utf-8"?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> 1<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Fragment> 2 <Fragment>
4 <BootstrapperApplication Id="fakeba" SourceFile="fakeba.dll" /> 3 <BootstrapperApplication Id="fakeba">
4 <BootstrapperApplicationDll SourceFile="fakeba.dll" />
5 </BootstrapperApplication>
5 </Fragment> 6 </Fragment>
6</Wix> 7</Wix>