diff options
| author | Rob Mensching <rob@firegiant.com> | 2020-06-06 15:24:04 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2020-06-08 16:34:16 -0700 |
| commit | de389d8c8803c3d2fbbf65620695be30fa24754e (patch) | |
| tree | 88740a12432eb641e3e9199cb8dce93e1c32398e /src/WixToolset.Extensibility/BaseExtensionCommandLine.cs | |
| parent | 59e358df2f15d478e5bd9f48e3e0824d8a59d7f4 (diff) | |
| download | wix-de389d8c8803c3d2fbbf65620695be30fa24754e.tar.gz wix-de389d8c8803c3d2fbbf65620695be30fa24754e.tar.bz2 wix-de389d8c8803c3d2fbbf65620695be30fa24754e.zip | |
Add the argument to command command-line processing and add xmldoc
Diffstat (limited to 'src/WixToolset.Extensibility/BaseExtensionCommandLine.cs')
| -rw-r--r-- | src/WixToolset.Extensibility/BaseExtensionCommandLine.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Extensibility/BaseExtensionCommandLine.cs b/src/WixToolset.Extensibility/BaseExtensionCommandLine.cs index 77e8a5bd..5f2ca109 100644 --- a/src/WixToolset.Extensibility/BaseExtensionCommandLine.cs +++ b/src/WixToolset.Extensibility/BaseExtensionCommandLine.cs | |||
| @@ -9,7 +9,7 @@ namespace WixToolset.Extensibility | |||
| 9 | 9 | ||
| 10 | public abstract class BaseExtensionCommandLine : IExtensionCommandLine | 10 | public abstract class BaseExtensionCommandLine : IExtensionCommandLine |
| 11 | { | 11 | { |
| 12 | public IEnumerable<ExtensionCommandLineSwitch> CommandLineSwitches => Enumerable.Empty<ExtensionCommandLineSwitch>(); | 12 | public virtual IEnumerable<ExtensionCommandLineSwitch> CommandLineSwitches => Enumerable.Empty<ExtensionCommandLineSwitch>(); |
| 13 | 13 | ||
| 14 | public virtual void PostParse() | 14 | public virtual void PostParse() |
| 15 | { | 15 | { |
| @@ -24,7 +24,7 @@ namespace WixToolset.Extensibility | |||
| 24 | return false; | 24 | return false; |
| 25 | } | 25 | } |
| 26 | 26 | ||
| 27 | public virtual bool TryParseCommand(ICommandLineParser parser, out ICommandLineCommand command) | 27 | public virtual bool TryParseCommand(ICommandLineParser parser, string argument, out ICommandLineCommand command) |
| 28 | { | 28 | { |
| 29 | command = null; | 29 | command = null; |
| 30 | return false; | 30 | return false; |
