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/test/burn/WixToolset.WixBA/WixBAFactory.cs | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 src/test/burn/WixToolset.WixBA/WixBAFactory.cs (limited to 'src/test/burn/WixToolset.WixBA/WixBAFactory.cs') diff --git a/src/test/burn/WixToolset.WixBA/WixBAFactory.cs b/src/test/burn/WixToolset.WixBA/WixBAFactory.cs deleted file mode 100644 index 67fcc4b5..00000000 --- a/src/test/burn/WixToolset.WixBA/WixBAFactory.cs +++ /dev/null @@ -1,17 +0,0 @@ -// 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. - -// Identifies the class that derives from IBootstrapperApplicationFactory and is the BAFactory class that gets -// instantiated by the interop layer -[assembly: WixToolset.Mba.Core.BootstrapperApplicationFactory(typeof(WixToolset.WixBA.WixBAFactory))] -namespace WixToolset.WixBA -{ - using WixToolset.Mba.Core; - - public class WixBAFactory : BaseBootstrapperApplicationFactory - { - protected override IBootstrapperApplication Create(IEngine engine, IBootstrapperCommand command) - { - return new WixBA(engine, command); - } - } -} -- cgit v1.2.3-55-g6feb