aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Extensibility/IHeatCore.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/Extensibility/IHeatCore.cs')
-rw-r--r--src/WixToolset.Core/Extensibility/IHeatCore.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/WixToolset.Core/Extensibility/IHeatCore.cs b/src/WixToolset.Core/Extensibility/IHeatCore.cs
index 031c8132..1365dfaf 100644
--- a/src/WixToolset.Core/Extensibility/IHeatCore.cs
+++ b/src/WixToolset.Core/Extensibility/IHeatCore.cs
@@ -2,20 +2,12 @@
2 2
3namespace WixToolset.Core.Extensibility 3namespace WixToolset.Core.Extensibility
4{ 4{
5 using WixToolset.Data;
6
7 /// <summary> 5 /// <summary>
8 /// The WiX Toolset Harvester application core. 6 /// The WiX Toolset Harvester application core.
9 /// </summary> 7 /// </summary>
10 public interface IHeatCore 8 public interface IHeatCore
11 { 9 {
12 /// <summary> 10 /// <summary>
13 /// Gets whether the mutator core encountered an error while processing.
14 /// </summary>
15 /// <value>Flag if core encountered an error during processing.</value>
16 bool EncounteredError { get; }
17
18 /// <summary>
19 /// Gets the harvester. 11 /// Gets the harvester.
20 /// </summary> 12 /// </summary>
21 /// <value>The harvester.</value> 13 /// <value>The harvester.</value>
@@ -26,11 +18,5 @@ namespace WixToolset.Core.Extensibility
26 /// </summary> 18 /// </summary>
27 /// <value>The mutator.</value> 19 /// <value>The mutator.</value>
28 Mutator Mutator { get; } 20 Mutator Mutator { get; }
29
30 /// <summary>
31 /// Sends a message to the message delegate if there is one.
32 /// </summary>
33 /// <param name="mea">Message event arguments.</param>
34 void OnMessage(MessageEventArgs mea);
35 } 21 }
36} 22}