// 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; /// /// 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.")] [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = false)] public sealed class BootstrapperApplicationFactoryAttribute : Attribute { /// /// This is no longer used. /// /// This is no longer used public BootstrapperApplicationFactoryAttribute(Type bootstrapperApplicationFactoryType) { throw new NotImplementedException(); } /// /// This is no longer used. /// public Type BootstrapperApplicationFactoryType { get { throw new NotImplementedException(); } } } }