From 929f43b2d48f9d35803064774e357c7a2cf76713 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Fri, 22 May 2020 20:09:02 +1000 Subject: Add heat.exe --- src/heat/Program.cs | 74 +++++++++++++++++++++++++++ src/heat/heat.csproj | 34 ++++++++++++ src/heat/heat.net461.v3.ncrunchproject | 5 ++ src/heat/heat.netcoreapp2.1.v3.ncrunchproject | 5 ++ 4 files changed, 118 insertions(+) create mode 100644 src/heat/Program.cs create mode 100644 src/heat/heat.csproj create mode 100644 src/heat/heat.net461.v3.ncrunchproject create mode 100644 src/heat/heat.netcoreapp2.1.v3.ncrunchproject (limited to 'src') diff --git a/src/heat/Program.cs b/src/heat/Program.cs new file mode 100644 index 00000000..38d6d401 --- /dev/null +++ b/src/heat/Program.cs @@ -0,0 +1,74 @@ +// 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. + +namespace WixToolset.Tools.Heat +{ + using System; + using System.Runtime.InteropServices; + using WixToolset.Core; + using WixToolset.Data; + using WixToolset.Extensibility; + using WixToolset.Extensibility.Data; + using WixToolset.Extensibility.Services; + using WixToolset.Harvesters; + using WixToolset.Tools.Core; + + /// + /// Wix Toolset Harvester. + /// + public sealed class Program + { + /// + /// The main entry point for the application. + /// + /// Commandline arguments for the application. + /// Returns the application error code. + [MTAThread] + public static int Main(string[] args) + { + var serviceProvider = WixToolsetServiceProviderFactory.CreateServiceProvider(); + var listener = new ConsoleMessageListener("HEAT", "heat.exe"); + + try + { + var program = new Program(); + return program.Run(serviceProvider, listener, args); + } + catch (WixException e) + { + listener.Write(e.Error); + + return e.Error.Id; + } + catch (Exception e) + { + listener.Write(ErrorMessages.UnexpectedException(e)); + + if (e is NullReferenceException || e is SEHException) + { + throw; + } + + return e.HResult; + } + } + + /// + /// Run the application with the given arguments. + /// + /// Service provider to use throughout this execution. + /// The commandline arguments. + /// Returns the application error code. + public int Run(IWixToolsetServiceProvider serviceProvider, IMessageListener listener, string[] args) + { + var messaging = serviceProvider.GetService(); + messaging.SetListener(listener); + + var arguments = serviceProvider.GetService(); + arguments.Populate(args); + + var commandLine = HeatCommandLineFactory.CreateCommandLine(serviceProvider); + var command = commandLine.ParseStandardCommandLine(arguments); + return command?.Execute() ?? 1; + } + } +} diff --git a/src/heat/heat.csproj b/src/heat/heat.csproj new file mode 100644 index 00000000..fd56c6c8 --- /dev/null +++ b/src/heat/heat.csproj @@ -0,0 +1,34 @@ + + + + + + netcoreapp2.1;net461;net472 + Exe + Harvester + WiX Harvester + embedded + true + + win-x86 + AnyCPU + + + + NU1701 + + + + + + + + + + + + + + + + diff --git a/src/heat/heat.net461.v3.ncrunchproject b/src/heat/heat.net461.v3.ncrunchproject new file mode 100644 index 00000000..cf22dfa9 --- /dev/null +++ b/src/heat/heat.net461.v3.ncrunchproject @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/heat/heat.netcoreapp2.1.v3.ncrunchproject b/src/heat/heat.netcoreapp2.1.v3.ncrunchproject new file mode 100644 index 00000000..cf22dfa9 --- /dev/null +++ b/src/heat/heat.netcoreapp2.1.v3.ncrunchproject @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file -- cgit v1.2.3-55-g6feb