| 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 | using System.CodeDom.Compiler; |
| 7 | using System.Runtime.InteropServices; |
| 8 | |
| 9 | /// <summary> |
| 10 | /// This is no longer used. |
| 11 | /// </summary> |
| 12 | [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.")] |
| 13 | public interface IBootstrapperApplicationFactory |
| 14 | { |
| 15 | /// <summary> |
| 16 | /// This is no longer used. |
| 17 | /// </summary> |
| 18 | /// <param name="pArgs">This is no longer used.</param> |
| 19 | /// <param name="pResults">This is no longer used.</param> |
| 20 | void Create(IntPtr pArgs, IntPtr pResults); |
| 21 | } |
| 22 | } |