aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/BalCompiler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/BalCompiler.cs')
-rw-r--r--src/wixext/BalCompiler.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/wixext/BalCompiler.cs b/src/wixext/BalCompiler.cs
index da32234c..33400f3b 100644
--- a/src/wixext/BalCompiler.cs
+++ b/src/wixext/BalCompiler.cs
@@ -197,6 +197,15 @@ namespace WixToolset.Bal
197 { 197 {
198 switch (attribute.Name.LocalName) 198 switch (attribute.Name.LocalName)
199 { 199 {
200 case "BAFactoryAssembly":
201 if (YesNoType.Yes == this.ParseHelper.GetAttributeYesNoValue(sourceLineNumbers, attribute))
202 {
203 section.AddTuple(new WixBalBAFactoryAssemblyTuple(sourceLineNumbers)
204 {
205 PayloadId = payloadId,
206 });
207 }
208 break;
200 case "BAFunctions": 209 case "BAFunctions":
201 if (YesNoType.Yes == this.ParseHelper.GetAttributeYesNoValue(sourceLineNumbers, attribute)) 210 if (YesNoType.Yes == this.ParseHelper.GetAttributeYesNoValue(sourceLineNumbers, attribute))
202 { 211 {