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