| 1 | // 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. |
| 2 | |
| 3 | namespace WixToolset.BootstrapperApplicationApi |
| 4 | { |
| 5 | using System; |
| 6 | |
| 7 | /// <summary> |
| 8 | /// This is no longer used. |
| 9 | /// </summary> |
| 10 | [Obsolete("Bootstrapper applications now run out of proc and do not use a BootstrapperApplicationFactory. Remove your BootstrapperApplicationFactory class. See https://wixtoolset.org/docs/fivefour/ for more details.")] |
| 11 | [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = false)] |
| 12 | public sealed class BootstrapperApplicationFactoryAttribute : Attribute |
| 13 | { |
| 14 | /// <summary> |
| 15 | /// This is no longer used. |
| 16 | /// </summary> |
| 17 | /// <param name="bootstrapperApplicationFactoryType">This is no longer used</param> |
| 18 | public BootstrapperApplicationFactoryAttribute(Type bootstrapperApplicationFactoryType) |
| 19 | { |
| 20 | throw new NotImplementedException(); |
| 21 | } |
| 22 | |
| 23 | /// <summary> |
| 24 | /// This is no longer used. |
| 25 | /// </summary> |
| 26 | public Type BootstrapperApplicationFactoryType |
| 27 | { |
| 28 | get { throw new NotImplementedException(); } |
| 29 | } |
| 30 | } |
| 31 | } |