aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration
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
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')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/BundleWithPackageGroupRef/Bundle.wxs5
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/SimpleBundle/Bundle.wxs15
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/SimpleBundle/MultiFileBootstrapperApplication.wxs5
3 files changed, 14 insertions, 11 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/BundleWithPackageGroupRef/Bundle.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/BundleWithPackageGroupRef/Bundle.wxs
index 207a8de1..e738b407 100644
--- a/src/test/WixToolsetTest.CoreIntegration/TestData/BundleWithPackageGroupRef/Bundle.wxs
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/BundleWithPackageGroupRef/Bundle.wxs
@@ -1,7 +1,8 @@
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 <Bundle Name="BurnBundle" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="B94478B1-E1F3-4700-9CE8-6AA090854AEC"> 2 <Bundle Name="BurnBundle" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="B94478B1-E1F3-4700-9CE8-6AA090854AEC">
4 <BootstrapperApplication SourceFile="fakeba.dll" /> 3 <BootstrapperApplication>
4 <BootstrapperApplicationDll SourceFile="fakeba.dll" />
5 </BootstrapperApplication>
5 <Chain> 6 <Chain>
6 <PackageGroupRef Id="BundlePackages" /> 7 <PackageGroupRef Id="BundlePackages" />
7 </Chain> 8 </Chain>
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/SimpleBundle/Bundle.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/SimpleBundle/Bundle.wxs
index 7ef1fc05..21749c07 100644
--- a/src/test/WixToolsetTest.CoreIntegration/TestData/SimpleBundle/Bundle.wxs
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/SimpleBundle/Bundle.wxs
@@ -1,11 +1,12 @@
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 <Bundle Name="!(loc.BundleName)" Version="!(bind.packageVersion.test.msi)" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a"> 2 <Bundle Name="!(loc.BundleName)" Version="!(bind.packageVersion.test.msi)" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a">
4 <BootstrapperApplication SourceFile="fakeba.dll" /> 3 <BootstrapperApplication>
5 <Chain> 4 <BootstrapperApplicationDll SourceFile="fakeba.dll" />
6 <MsiPackage SourceFile="test.msi"> 5 </BootstrapperApplication>
7 <MsiProperty Name="TEST" Value="1" /> 6 <Chain>
8 </MsiPackage> 7 <MsiPackage SourceFile="test.msi">
9 </Chain> 8 <MsiProperty Name="TEST" Value="1" />
9 </MsiPackage>
10 </Chain>
10 </Bundle> 11 </Bundle>
11</Wix> 12</Wix>
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>