aboutsummaryrefslogtreecommitdiff
path: root/src/api/burn/WixToolset.BootstrapperApplicationApi/IBootstrapperApplicationFactory.cs
blob: ac90c0b79034e0d355c9d02520301756ca84e0b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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.CodeDom.Compiler;
    using System.Runtime.InteropServices;

    /// <summary>
    /// This is no longer used.
    /// </summary>
    [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 interface IBootstrapperApplicationFactory
    {
        /// <summary>
        /// This is no longer used.
        /// </summary>
        /// <param name="pArgs">This is no longer used.</param>
        /// <param name="pResults">This is no longer used.</param>
        void Create(IntPtr pArgs, IntPtr pResults);
    }
}