diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-10-31 19:54:44 -0500 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2020-10-31 20:18:04 -0500 |
| commit | 0031d5e8f859b342ac9860b7055bb738b6303ec0 (patch) | |
| tree | cab128899b5372135cdd578bc9df21e394c1d1b0 /src/test/WixToolsetTest.Bal/TestData | |
| parent | fefb8f0571400937ca8bd9c7e5984bbb24a94181 (diff) | |
| download | wix-0031d5e8f859b342ac9860b7055bb738b6303ec0.tar.gz wix-0031d5e8f859b342ac9860b7055bb738b6303ec0.tar.bz2 wix-0031d5e8f859b342ac9860b7055bb738b6303ec0.zip | |
Add test for Overridable.
Also, reenable MBA test.
Diffstat (limited to 'src/test/WixToolsetTest.Bal/TestData')
| -rw-r--r-- | src/test/WixToolsetTest.Bal/TestData/MBA/Bundle.wxs | 2 | ||||
| -rw-r--r-- | src/test/WixToolsetTest.Bal/TestData/Overridable/Bundle.wxs | 13 |
2 files changed, 14 insertions, 1 deletions
diff --git a/src/test/WixToolsetTest.Bal/TestData/MBA/Bundle.wxs b/src/test/WixToolsetTest.Bal/TestData/MBA/Bundle.wxs index b3538c68..e6f1d566 100644 --- a/src/test/WixToolsetTest.Bal/TestData/MBA/Bundle.wxs +++ b/src/test/WixToolsetTest.Bal/TestData/MBA/Bundle.wxs | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | <Bundle Name="WixStdBa" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="75D5D534-E177-4689-AAE9-CAC1C39002C2"> | 4 | <Bundle Name="WixStdBa" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="75D5D534-E177-4689-AAE9-CAC1C39002C2"> |
| 5 | <BootstrapperApplicationRef Id="ManagedBootstrapperApplicationHost" /> | 5 | <BootstrapperApplicationRef Id="ManagedBootstrapperApplicationHost" /> |
| 6 | <Chain> | 6 | <Chain> |
| 7 | <PackageGroupRef Id="NetFx462Redist" /> | 7 | <ExePackage SourceFile="runtimes\win-x86\native\wixnative.exe" /> |
| 8 | </Chain> | 8 | </Chain> |
| 9 | </Bundle> | 9 | </Bundle> |
| 10 | </Wix> | 10 | </Wix> |
diff --git a/src/test/WixToolsetTest.Bal/TestData/Overridable/Bundle.wxs b/src/test/WixToolsetTest.Bal/TestData/Overridable/Bundle.wxs new file mode 100644 index 00000000..3ac3df60 --- /dev/null +++ b/src/test/WixToolsetTest.Bal/TestData/Overridable/Bundle.wxs | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" | ||
| 3 | xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal"> | ||
| 4 | <Bundle Name="WixStdBa" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="75D5D534-E177-4689-AAE9-CAC1C39002C2"> | ||
| 5 | <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.HyperlinkLicense"> | ||
| 6 | <bal:WixStandardBootstrapperApplication LicenseUrl="http://wixtoolset.org/about/license/" /> | ||
| 7 | </BootstrapperApplicationRef> | ||
| 8 | <Variable Name="Test1" bal:Overridable="yes" /> | ||
| 9 | <Chain> | ||
| 10 | <ExePackage SourceFile="runtimes\win-x86\native\wixnative.exe" /> | ||
| 11 | </Chain> | ||
| 12 | </Bundle> | ||
| 13 | </Wix> | ||
