// 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.BootstrapperApplicationApi { using System; using System.Runtime.InteropServices; /// /// This is no longer used. /// [Obsolete("Bootstrapper applications now run out of proc and do not use a BootstrapperApplicationFactory. Remove your BootstrapperApplicationFactory class. See https://wixtoolset.org/docs/fiveforfour/ for more details.")] public abstract class BaseBootstrapperApplicationFactory : IBootstrapperApplicationFactory { /// /// This is no longer used. /// /// This is no longer used. /// This is no longer used. public void Create(IntPtr pArgs, IntPtr pResults) { throw new NotImplementedException(); } /// /// This is no longer used. /// /// This is no longer used. /// This is no longer used. /// This is no longer used. protected abstract IBootstrapperApplication Create(IEngine engine, IBootstrapperCommand bootstrapperCommand); /// /// This is no longer used. /// /// This is no longer used. /// This is no longer used. /// This is no longer used. public static void InitializeFromCreateArgs(IntPtr pArgs, out IEngine engine, out IBootstrapperCommand bootstrapperCommand) { throw new NotImplementedException(); } /// /// This is no longer used. /// /// This is no longer used. /// This is no longer used. public static void StoreBAInCreateResults(IntPtr pResults, IBootstrapperApplication ba) { throw new NotImplementedException(); } } }