main
cs 19 lines 553 Bytes
Raw
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 Example.WPFCoreMBA
4 {
5 using WixToolset.BootstrapperApplicationApi;
6 // using WixToolset.BootstrapperApplications.Managed;
7
8 public class Program
9 {
10 public static int Main(string[] args)
11 {
12 var app = new WPFCoreBA();
13
14 ManagedBootstrapperApplication.Run(app);
15
16 return 0;
17 }
18 }
19 }