aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Compiler.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-06-21 16:40:17 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-06-22 14:16:11 +1000
commitb3197fdf8b437d0d8fcc2e564cb1e3484bb1392a (patch)
tree33e93073e5fb4939984dcef95a7c4a93653d1d66 /src/WixToolset.Core/Compiler.cs
parent89416eb8c4e7dc8ae4dd2aa27aa7c5930421f61a (diff)
downloadwix-b3197fdf8b437d0d8fcc2e564cb1e3484bb1392a.tar.gz
wix-b3197fdf8b437d0d8fcc2e564cb1e3484bb1392a.tar.bz2
wix-b3197fdf8b437d0d8fcc2e564cb1e3484bb1392a.zip
Add BundleCustomDataRef element.
Default BundleCustomData to Type=bootstrapperApplication.
Diffstat (limited to 'src/WixToolset.Core/Compiler.cs')
-rw-r--r--src/WixToolset.Core/Compiler.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs
index cb85281d..9681cb3f 100644
--- a/src/WixToolset.Core/Compiler.cs
+++ b/src/WixToolset.Core/Compiler.cs
@@ -6229,6 +6229,9 @@ namespace WixToolset.Core
6229 case "BundleCustomData": 6229 case "BundleCustomData":
6230 this.ParseBundleCustomDataElement(child); 6230 this.ParseBundleCustomDataElement(child);
6231 break; 6231 break;
6232 case "BundleCustomDataRef":
6233 this.ParseBundleCustomDataRefElement(child);
6234 break;
6232 case "BundleExtension": 6235 case "BundleExtension":
6233 this.ParseBundleExtensionElement(child); 6236 this.ParseBundleExtensionElement(child);
6234 break; 6237 break;