aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplicationFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplicationFactory.h')
-rw-r--r--src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplicationFactory.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplicationFactory.h b/src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplicationFactory.h
deleted file mode 100644
index 86f6e3cb..00000000
--- a/src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplicationFactory.h
+++ /dev/null
@@ -1,25 +0,0 @@
1#pragma once
2// 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.
3
4namespace WixToolsetTest
5{
6namespace MbaHost
7{
8namespace Native
9{
10 using namespace System;
11 using namespace WixToolset::Mba::Core;
12
13 public ref class TestManagedBootstrapperApplicationFactory : public BaseBootstrapperApplicationFactory
14 {
15 protected:
16 virtual IBootstrapperApplication^ Create(IEngine^ engine, IBootstrapperCommand^ /*command*/) override
17 {
18 return gcnew TestManagedBootstrapperApplication(engine);
19 }
20 };
21
22 [assembly:BootstrapperApplicationFactory(TestManagedBootstrapperApplicationFactory::typeid)];
23}
24}
25} \ No newline at end of file