aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Mba.Host/BootstrapperApplicationFactory.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-04-29 19:28:50 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-04-29 19:53:29 +1000
commit39e930d9aaff250e0fd5019eeedaa40717a6c6fe (patch)
treebc0865bc6c9ced1b4a06b408ff60cb83ef73cad3 /src/WixToolset.Mba.Host/BootstrapperApplicationFactory.cs
parentf4b14ff16f78435285bb20f16d5d62b902e6ba17 (diff)
downloadwix-39e930d9aaff250e0fd5019eeedaa40717a6c6fe.tar.gz
wix-39e930d9aaff250e0fd5019eeedaa40717a6c6fe.tar.bz2
wix-39e930d9aaff250e0fd5019eeedaa40717a6c6fe.zip
Add DotNetCoreBootstrapperApplicationHost for an SCD-style .NET Core BA.
Diffstat (limited to 'src/WixToolset.Mba.Host/BootstrapperApplicationFactory.cs')
-rw-r--r--src/WixToolset.Mba.Host/BootstrapperApplicationFactory.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/WixToolset.Mba.Host/BootstrapperApplicationFactory.cs b/src/WixToolset.Mba.Host/BootstrapperApplicationFactory.cs
index 9385d1d1..78e68bd9 100644
--- a/src/WixToolset.Mba.Host/BootstrapperApplicationFactory.cs
+++ b/src/WixToolset.Mba.Host/BootstrapperApplicationFactory.cs
@@ -9,13 +9,14 @@ namespace WixToolset.Mba.Host
9 using WixToolset.Mba.Core; 9 using WixToolset.Mba.Core;
10 10
11 /// <summary> 11 /// <summary>
12 /// Entry point for the MBA host to create and return the BA to the engine. 12 /// Entry point for the managed host to create and return the BA to the engine.
13 /// </summary> 13 /// </summary>
14 [ClassInterface(ClassInterfaceType.None)] 14 [ClassInterface(ClassInterfaceType.None)]
15 public sealed class BootstrapperApplicationFactory : MarshalByRefObject, IBootstrapperApplicationFactory 15 public sealed class BootstrapperApplicationFactory : MarshalByRefObject, IBootstrapperApplicationFactory
16 { 16 {
17 /// <summary> 17 /// <summary>
18 /// Creates a new instance of the <see cref="BootstrapperApplicationFactory"/> class. 18 /// Creates a new instance of the <see cref="BootstrapperApplicationFactory"/> class.
19 /// Entry point for the MBA host.
19 /// </summary> 20 /// </summary>
20 public BootstrapperApplicationFactory() 21 public BootstrapperApplicationFactory()
21 { 22 {