diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-03-26 15:21:06 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-03-30 21:30:04 +1000 |
commit | afbc6889c73d58136cb8851858ca3c17f41dc2c5 (patch) | |
tree | 1d7c66218176c7e8a28d49a4e22c60fe1e4e4c0d /src/WixToolset.Core/Compiler.cs | |
parent | 192c5aa59b5d8e5e9df9095982317c224f3d4f04 (diff) | |
download | wix-afbc6889c73d58136cb8851858ca3c17f41dc2c5.tar.gz wix-afbc6889c73d58136cb8851858ca3c17f41dc2c5.tar.bz2 wix-afbc6889c73d58136cb8851858ca3c17f41dc2c5.zip |
Add BundleExtension element.
Add GetTestXml.
Fix issue with building with current version of burn.
Diffstat (limited to 'src/WixToolset.Core/Compiler.cs')
-rw-r--r-- | src/WixToolset.Core/Compiler.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs index 8c0c4a39..6f122f7b 100644 --- a/src/WixToolset.Core/Compiler.cs +++ b/src/WixToolset.Core/Compiler.cs | |||
@@ -6121,6 +6121,12 @@ namespace WixToolset.Core | |||
6121 | case "BootstrapperApplicationRef": | 6121 | case "BootstrapperApplicationRef": |
6122 | this.ParseBootstrapperApplicationRefElement(child); | 6122 | this.ParseBootstrapperApplicationRefElement(child); |
6123 | break; | 6123 | break; |
6124 | case "BundleExtension": | ||
6125 | this.ParseBundleExtensionElement(child); | ||
6126 | break; | ||
6127 | case "BundleExtensionRef": | ||
6128 | this.ParseSimpleRefElement(child, "WixBundleExtension"); | ||
6129 | break; | ||
6124 | case "ComplianceCheck": | 6130 | case "ComplianceCheck": |
6125 | this.ParseComplianceCheckElement(child); | 6131 | this.ParseComplianceCheckElement(child); |
6126 | break; | 6132 | break; |