// 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 { /// /// Managed bootstrapper application entry point. /// public static class ManagedBootstrapperApplication { /// /// Run the managed bootstrapper application. /// /// Bootstrapper applciation to run. public static void Run(IBootstrapperApplication application) { MbaNative.BootstrapperApplicationRun(application); } } }