diff options
| author | Rob Mensching <rob@firegiant.com> | 2018-10-24 15:03:23 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@robmensching.com> | 2018-10-24 21:11:31 -0700 |
| commit | b86e235ef4f9423624fc93e1c417484e938245df (patch) | |
| tree | b8cb21285a24334aa236bd294b5b3ddf573503b2 /src/WixToolset.Extensibility/IExtensionCommandLine.cs | |
| parent | 780fd42d094e7d9f020bf08b4be55b150b9957e4 (diff) | |
| download | wix-b86e235ef4f9423624fc93e1c417484e938245df.tar.gz wix-b86e235ef4f9423624fc93e1c417484e938245df.tar.bz2 wix-b86e235ef4f9423624fc93e1c417484e938245df.zip | |
Re-organize command-line processing and add support for custom commands
Diffstat (limited to 'src/WixToolset.Extensibility/IExtensionCommandLine.cs')
| -rw-r--r-- | src/WixToolset.Extensibility/IExtensionCommandLine.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/WixToolset.Extensibility/IExtensionCommandLine.cs b/src/WixToolset.Extensibility/IExtensionCommandLine.cs index 5c6f578d..0cbf84d9 100644 --- a/src/WixToolset.Extensibility/IExtensionCommandLine.cs +++ b/src/WixToolset.Extensibility/IExtensionCommandLine.cs | |||
| @@ -19,7 +19,9 @@ namespace WixToolset.Extensibility | |||
| 19 | 19 | ||
| 20 | void PreParse(ICommandLineContext context); | 20 | void PreParse(ICommandLineContext context); |
| 21 | 21 | ||
| 22 | bool TryParseArgument(IParseCommandLine parseCommandLine, string arg); | 22 | bool TryParseArgument(ICommandLineParser parser, string argument); |
| 23 | |||
| 24 | bool TryParseCommand(ICommandLineParser parser, out ICommandLineCommand command); | ||
| 23 | 25 | ||
| 24 | void PostParse(); | 26 | void PostParse(); |
| 25 | } | 27 | } |
