aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Extensibility/IHarvesterCore.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/Extensibility/IHarvesterCore.cs')
-rw-r--r--src/WixToolset.Core/Extensibility/IHarvesterCore.cs18
1 files changed, 2 insertions, 16 deletions
diff --git a/src/WixToolset.Core/Extensibility/IHarvesterCore.cs b/src/WixToolset.Core/Extensibility/IHarvesterCore.cs
index 9a6fd10c..a9001b46 100644
--- a/src/WixToolset.Core/Extensibility/IHarvesterCore.cs
+++ b/src/WixToolset.Core/Extensibility/IHarvesterCore.cs
@@ -2,22 +2,14 @@
2 2
3namespace WixToolset 3namespace WixToolset
4{ 4{
5 using System; 5 using WixToolset.Extensibility.Services;
6 using System.Diagnostics.CodeAnalysis;
7 using System.IO;
8 using WixToolset.Data;
9 using Wix = WixToolset.Data.Serialize;
10 6
11 /// <summary> 7 /// <summary>
12 /// The WiX Toolset harvester core. 8 /// The WiX Toolset harvester core.
13 /// </summary> 9 /// </summary>
14 public interface IHarvesterCore 10 public interface IHarvesterCore
15 { 11 {
16 /// <summary> 12 IMessaging Messaging { get; set; }
17 /// Gets whether the harvester core encountered an error while processing.
18 /// </summary>
19 /// <value>Flag if core encountered an error during processing.</value>
20 bool EncounteredError { get; }
21 13
22 /// <summary> 14 /// <summary>
23 /// Gets or sets the value of the extension argument passed to heat. 15 /// Gets or sets the value of the extension argument passed to heat.
@@ -47,12 +39,6 @@ namespace WixToolset
47 string GenerateIdentifier(string prefix, params string[] args); 39 string GenerateIdentifier(string prefix, params string[] args);
48 40
49 /// <summary> 41 /// <summary>
50 /// Sends a message to the message delegate if there is one.
51 /// </summary>
52 /// <param name="mea">Message event arguments.</param>
53 void OnMessage(MessageEventArgs mea);
54
55 /// <summary>
56 /// Resolves a file's path if the Wix.File.Source value starts with "SourceDir\". 42 /// Resolves a file's path if the Wix.File.Source value starts with "SourceDir\".
57 /// </summary> 43 /// </summary>
58 /// <param name="fileSource">The Wix.File.Source value with "SourceDir\".</param> 44 /// <param name="fileSource">The Wix.File.Source value with "SourceDir\".</param>