main
cs 29 lines 825 Bytes
Raw
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
3 namespace WixToolset.Harvesters.Extensibility
4 {
5 using WixToolset.Extensibility.Services;
6
7 /// <summary>
8 /// The WiX Toolset Harvester application core.
9 /// </summary>
10 public interface IHeatCore
11 {
12 /// <summary>
13 /// Gets the harvester.
14 /// </summary>
15 /// <value>The harvester.</value>
16 IHarvester Harvester { get; }
17
18 /// <summary>
19 ///
20 /// </summary>
21 IMessaging Messaging { get; }
22
23 /// <summary>
24 /// Gets the mutator.
25 /// </summary>
26 /// <value>The mutator.</value>
27 IMutator Mutator { get; }
28 }
29 }