diff options
Diffstat (limited to 'src/api')
-rw-r--r-- | src/api/wix/WixToolset.Extensibility/Data/ICommandLineCommand.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/api/wix/WixToolset.Extensibility/Data/ICommandLineCommand.cs b/src/api/wix/WixToolset.Extensibility/Data/ICommandLineCommand.cs index b03a18f4..b6c9ef3e 100644 --- a/src/api/wix/WixToolset.Extensibility/Data/ICommandLineCommand.cs +++ b/src/api/wix/WixToolset.Extensibility/Data/ICommandLineCommand.cs | |||
@@ -12,9 +12,14 @@ namespace WixToolset.Extensibility.Data | |||
12 | public interface ICommandLineCommand | 12 | public interface ICommandLineCommand |
13 | { | 13 | { |
14 | /// <summary> | 14 | /// <summary> |
15 | /// Indicates the command-line should show help for the command. | ||
16 | /// </summary> | ||
17 | bool ShowHelp { get; set; } | ||
18 | |||
19 | /// <summary> | ||
15 | /// Indicates the command-line should show the command-line logo. | 20 | /// Indicates the command-line should show the command-line logo. |
16 | /// </summary> | 21 | /// </summary> |
17 | bool ShowLogo { get; } | 22 | bool ShowLogo { get; set; } |
18 | 23 | ||
19 | /// <summary> | 24 | /// <summary> |
20 | /// Indicates the command-line parsing can stop. | 25 | /// Indicates the command-line parsing can stop. |