aboutsummaryrefslogtreecommitdiff
path: root/src/test/examples/FullFramework4MBA/FullFramework4BA.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/examples/FullFramework4MBA/FullFramework4BA.cs')
-rw-r--r--src/test/examples/FullFramework4MBA/FullFramework4BA.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/test/examples/FullFramework4MBA/FullFramework4BA.cs b/src/test/examples/FullFramework4MBA/FullFramework4BA.cs
new file mode 100644
index 00000000..556a61a7
--- /dev/null
+++ b/src/test/examples/FullFramework4MBA/FullFramework4BA.cs
@@ -0,0 +1,27 @@
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
3namespace Example.FullFramework4MBA
4{
5 using WixToolset.Mba.Core;
6
7 public class FullFramework4BA : BootstrapperApplication
8 {
9 public FullFramework4BA(IEngine engine)
10 : base(engine)
11 {
12
13 }
14
15 protected override void Run()
16 {
17 }
18
19 protected override void OnShutdown(ShutdownEventArgs args)
20 {
21 base.OnShutdown(args);
22
23 var message = "Shutdown," + args.Action.ToString() + "," + args.HResult.ToString();
24 this.engine.Log(LogLevel.Standard, message);
25 }
26 }
27}