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.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/WixToolset.Core/Extensibility/IHeatCore.cs b/src/WixToolset.Core/Extensibility/IHeatCore.cs
deleted file mode 100644
index 1365dfaf..00000000
--- a/src/WixToolset.Core/Extensibility/IHeatCore.cs
+++ /dev/null
@@ -1,22 +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.Extensibility
4{
5 /// <summary>
6 /// The WiX Toolset Harvester application core.
7 /// </summary>
8 public interface IHeatCore
9 {
10 /// <summary>
11 /// Gets the harvester.
12 /// </summary>
13 /// <value>The harvester.</value>
14 Harvester Harvester { get; }
15
16 /// <summary>
17 /// Gets the mutator.
18 /// </summary>
19 /// <value>The mutator.</value>
20 Mutator Mutator { get; }
21 }
22}