aboutsummaryrefslogtreecommitdiff
path: root/src/api/burn/WixToolset.BootstrapperApplicationApi/ManagedBootstrapperApplication.cs
blob: 77c5eaca4530f0c17c4b866fa22d197ca7118c07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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
{
    /// <summary>
    /// Managed bootstrapper application entry point.
    /// </summary>
    public static class ManagedBootstrapperApplication
    {
        /// <summary>
        /// Run the managed bootstrapper application.
        /// </summary>
        /// <param name="application">Bootstrapper applciation to run.</param>
        public static void Run(IBootstrapperApplication application)
        {
            MbaNative.BootstrapperApplicationRun(application);
        }
    }
}