From 39e930d9aaff250e0fd5019eeedaa40717a6c6fe Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Wed, 29 Apr 2020 19:28:50 +1000 Subject: Add DotNetCoreBootstrapperApplicationHost for an SCD-style .NET Core BA. --- src/wixext/BalCompiler.cs | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/wixext/BalCompiler.cs') 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 { switch (attribute.Name.LocalName) { + case "BAFactoryAssembly": + if (YesNoType.Yes == this.ParseHelper.GetAttributeYesNoValue(sourceLineNumbers, attribute)) + { + section.AddTuple(new WixBalBAFactoryAssemblyTuple(sourceLineNumbers) + { + PayloadId = payloadId, + }); + } + break; case "BAFunctions": if (YesNoType.Yes == this.ParseHelper.GetAttributeYesNoValue(sourceLineNumbers, attribute)) { -- cgit v1.2.3-55-g6feb