From ea864b56d115e4f7a7205827ecaaba0e1db81d41 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Mon, 31 Dec 2018 23:57:35 -0600 Subject: Integrate into latest v4. --- src/wixext/BalExtensionFactory.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/wixext/BalExtensionFactory.cs (limited to 'src/wixext/BalExtensionFactory.cs') diff --git a/src/wixext/BalExtensionFactory.cs b/src/wixext/BalExtensionFactory.cs new file mode 100644 index 00000000..936686a6 --- /dev/null +++ b/src/wixext/BalExtensionFactory.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 WixToolset.Bal +{ + using System; + using System.Collections.Generic; + using WixToolset.Extensibility; + + public class BalExtensionFactory : BaseExtensionFactory + { + protected override IEnumerable ExtensionTypes => new[] + { + typeof(BalCompiler), + typeof(BalExtensionData), + typeof(BalWindowsInstallerBackendBinderExtension), + }; + } +} -- cgit v1.2.3-55-g6feb