aboutsummaryrefslogtreecommitdiff
path: root/src/tools/heat/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/tools/heat/Program.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tools/heat/Program.cs b/src/tools/heat/Program.cs
index f74def8f..80423e18 100644
--- a/src/tools/heat/Program.cs
+++ b/src/tools/heat/Program.cs
@@ -12,6 +12,7 @@ namespace WixToolset.Tools.Heat
12 using WixToolset.Extensibility.Data; 12 using WixToolset.Extensibility.Data;
13 using WixToolset.Extensibility.Services; 13 using WixToolset.Extensibility.Services;
14 using WixToolset.Harvesters; 14 using WixToolset.Harvesters;
15 using WixToolset.Harvesters.Data;
15 using WixToolset.Harvesters.Extensibility; 16 using WixToolset.Harvesters.Extensibility;
16 using WixToolset.Tools.Core; 17 using WixToolset.Tools.Core;
17 18
@@ -78,6 +79,9 @@ namespace WixToolset.Tools.Heat
78 79
79 var commandLine = HeatCommandLineFactory.CreateCommandLine(serviceProvider, heatExtensions); 80 var commandLine = HeatCommandLineFactory.CreateCommandLine(serviceProvider, heatExtensions);
80 var command = commandLine.ParseStandardCommandLine(arguments); 81 var command = commandLine.ParseStandardCommandLine(arguments);
82
83 messaging.Write(HarvesterWarnings.HeatIsDeprecated());
84
81 return command?.ExecuteAsync(CancellationToken.None) ?? Task.FromResult(1); 85 return command?.ExecuteAsync(CancellationToken.None) ?? Task.FromResult(1);
82 } 86 }
83 } 87 }