diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-04-22 17:38:36 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-04-29 16:49:19 -0700 |
| commit | 35606d2cd04a7b1bec1d669f9619501dff2bf9dc (patch) | |
| tree | 9dfdca153ab55e842f1e0ae6962fa1214c488c00 /src/heat/Data/HeatCommandLineOption.cs | |
| parent | 19f147cc9d56924b8f556bebfa9be5ab3dbeb186 (diff) | |
| download | wix-35606d2cd04a7b1bec1d669f9619501dff2bf9dc.tar.gz wix-35606d2cd04a7b1bec1d669f9619501dff2bf9dc.tar.bz2 wix-35606d2cd04a7b1bec1d669f9619501dff2bf9dc.zip | |
Simplify heat by creating a single executable
Diffstat (limited to 'src/heat/Data/HeatCommandLineOption.cs')
| -rw-r--r-- | src/heat/Data/HeatCommandLineOption.cs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/heat/Data/HeatCommandLineOption.cs b/src/heat/Data/HeatCommandLineOption.cs new file mode 100644 index 00000000..5815abf0 --- /dev/null +++ b/src/heat/Data/HeatCommandLineOption.cs | |||
| @@ -0,0 +1,31 @@ | |||
| 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.Data | ||
| 4 | { | ||
| 5 | /// <summary> | ||
| 6 | /// A command line option. | ||
| 7 | /// </summary> | ||
| 8 | public struct HeatCommandLineOption | ||
| 9 | { | ||
| 10 | /// <summary> | ||
| 11 | /// The option name used on the command line. | ||
| 12 | /// </summary> | ||
| 13 | public string Option; | ||
| 14 | |||
| 15 | /// <summary> | ||
| 16 | /// Description shown in Help command. | ||
| 17 | /// </summary> | ||
| 18 | public string Description; | ||
| 19 | |||
| 20 | /// <summary> | ||
| 21 | /// Instantiates a new CommandLineOption. | ||
| 22 | /// </summary> | ||
| 23 | /// <param name="option">The option name.</param> | ||
| 24 | /// <param name="description">The description of the option.</param> | ||
| 25 | public HeatCommandLineOption(string option, string description) | ||
| 26 | { | ||
| 27 | this.Option = option; | ||
| 28 | this.Description = description; | ||
| 29 | } | ||
| 30 | } | ||
| 31 | } | ||
