From 0d3d54992104288e9ee0c834d0b96e8502fd2d42 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 11 Jan 2024 18:26:20 -0800 Subject: Move the BootstrapperApplication out of proc --- src/ext/Bal/test/examples/FullFramework4MBA/Program.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/ext/Bal/test/examples/FullFramework4MBA/Program.cs (limited to 'src/ext/Bal/test/examples/FullFramework4MBA/Program.cs') diff --git a/src/ext/Bal/test/examples/FullFramework4MBA/Program.cs b/src/ext/Bal/test/examples/FullFramework4MBA/Program.cs new file mode 100644 index 00000000..23fb6851 --- /dev/null +++ b/src/ext/Bal/test/examples/FullFramework4MBA/Program.cs @@ -0,0 +1,18 @@ +// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. + +namespace Example.FullFramework4MBA +{ + using WixToolset.Mba.Core; + + internal class Program + { + private static int Main() + { + var application = new FullFramework4BA(); + + ManagedBootstrapperApplication.Run(application); + + return 0; + } + } +} -- cgit v1.2.3-55-g6feb