aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplication.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplication.h')
-rw-r--r--src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplication.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplication.h b/src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplication.h
index 1dfd0d4d..d74d90c5 100644
--- a/src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplication.h
+++ b/src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplication.h
@@ -13,6 +13,12 @@ namespace Native
13 public ref class TestManagedBootstrapperApplication : BootstrapperApplication 13 public ref class TestManagedBootstrapperApplication : BootstrapperApplication
14 { 14 {
15 public: 15 public:
16 TestManagedBootstrapperApplication(WixToolset::BootstrapperCore::Engine^ engine, WixToolset::BootstrapperCore::Command command)
17 : BootstrapperApplication(engine, command)
18 {
19
20 }
21
16 virtual void Run() override 22 virtual void Run() override
17 { 23 {
18 } 24 }
@@ -23,8 +29,6 @@ namespace Native
23 this->Engine->Log(LogLevel::Standard, message); 29 this->Engine->Log(LogLevel::Standard, message);
24 } 30 }
25 }; 31 };
26
27 [assembly:BootstrapperApplication(TestManagedBootstrapperApplication::typeid)];
28} 32}
29} 33}
30} \ No newline at end of file 34} \ No newline at end of file