aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/HeatCore.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/HeatCore.cs')
-rw-r--r--src/WixToolset.Core/HeatCore.cs43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/WixToolset.Core/HeatCore.cs b/src/WixToolset.Core/HeatCore.cs
deleted file mode 100644
index d43b5f3d..00000000
--- a/src/WixToolset.Core/HeatCore.cs
+++ /dev/null
@@ -1,43 +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 WixToolset.Core
4{
5 using WixToolset.Core.Extensibility;
6
7 /// <summary>
8 /// The WiX Toolset Harvester application core.
9 /// </summary>
10 public class HeatCore : IHeatCore
11 {
12 private Harvester harvester;
13 private Mutator mutator;
14
15 /// <summary>
16 /// Instantiates a new HeatCore.
17 /// </summary>
18 /// <param name="messageHandler">The message handler for the core.</param>
19 public HeatCore()
20 {
21 this.harvester = new Harvester();
22 this.mutator = new Mutator();
23 }
24
25 /// <summary>
26 /// Gets the harvester.
27 /// </summary>
28 /// <value>The harvester.</value>
29 public Harvester Harvester
30 {
31 get { return this.harvester; }
32 }
33
34 /// <summary>
35 /// Gets the mutator.
36 /// </summary>
37 /// <value>The mutator.</value>
38 public Mutator Mutator
39 {
40 get { return this.mutator; }
41 }
42 }
43}