diff options
author | Rob Mensching <rob@firegiant.com> | 2017-12-19 12:25:40 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-12-19 12:25:40 -0800 |
commit | 155a6e96346e0cb3d9ab6f5372fa29b46ebaee89 (patch) | |
tree | 59d1f151bfde8068b6014b05b5c8cfea3402c974 /src/WixToolset.Core/Extensibility/IHeatCore.cs | |
parent | 6f1665ed759b31bd095f186f9239232c653597cd (diff) | |
download | wix-155a6e96346e0cb3d9ab6f5372fa29b46ebaee89.tar.gz wix-155a6e96346e0cb3d9ab6f5372fa29b46ebaee89.tar.bz2 wix-155a6e96346e0cb3d9ab6f5372fa29b46ebaee89.zip |
Integrate simplified message handling
Diffstat (limited to 'src/WixToolset.Core/Extensibility/IHeatCore.cs')
-rw-r--r-- | src/WixToolset.Core/Extensibility/IHeatCore.cs | 14 |
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 | ||
3 | namespace WixToolset.Core.Extensibility | 3 | namespace 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 | } |