From 02ee982cf4ceabd64dbe966dc3771d272d53a085 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sat, 8 Jan 2022 05:51:26 -0800 Subject: Centralize common command-line switches parsing --- src/api/wix/WixToolset.Extensibility/Data/ICommandLineCommand.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/api') 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 @@ -11,10 +11,15 @@ namespace WixToolset.Extensibility.Data /// public interface ICommandLineCommand { + /// + /// Indicates the command-line should show help for the command. + /// + bool ShowHelp { get; set; } + /// /// Indicates the command-line should show the command-line logo. /// - bool ShowLogo { get; } + bool ShowLogo { get; set; } /// /// Indicates the command-line parsing can stop. -- cgit v1.2.3-55-g6feb