diff options
Diffstat (limited to 'src/WixToolset.Extensibility/IExtensionCommandLine.cs')
| -rw-r--r-- | src/WixToolset.Extensibility/IExtensionCommandLine.cs | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/src/WixToolset.Extensibility/IExtensionCommandLine.cs b/src/WixToolset.Extensibility/IExtensionCommandLine.cs index b6cff5d0..1f8e6ed8 100644 --- a/src/WixToolset.Extensibility/IExtensionCommandLine.cs +++ b/src/WixToolset.Extensibility/IExtensionCommandLine.cs | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | namespace WixToolset.Extensibility | 3 | namespace WixToolset.Extensibility |
| 4 | { | 4 | { |
| 5 | using System.Collections.Generic; | 5 | using System.Collections.Generic; |
| 6 | using WixToolset.Data; | 6 | using WixToolset.Extensibility.Services; |
| 7 | 7 | ||
| 8 | /// <summary> | 8 | /// <summary> |
| 9 | /// A command line option. | 9 | /// A command line option. |
| @@ -21,22 +21,13 @@ namespace WixToolset.Extensibility | |||
| 21 | public interface IExtensionCommandLine | 21 | public interface IExtensionCommandLine |
| 22 | { | 22 | { |
| 23 | /// <summary> | 23 | /// <summary> |
| 24 | /// Sets the message handler for the extension. | ||
| 25 | /// </summary> | ||
| 26 | /// <value>Message handler for the extension.</value> | ||
| 27 | IMessageHandler MessageHandler { set; } | ||
| 28 | |||
| 29 | /// <summary> | ||
| 30 | /// Gets the supported command line types for this extension. | 24 | /// Gets the supported command line types for this extension. |
| 31 | /// </summary> | 25 | /// </summary> |
| 32 | /// <value>The supported command line types for this extension.</value> | 26 | /// <value>The supported command line types for this extension.</value> |
| 33 | IEnumerable<ExtensionCommandLineSwitch> CommandLineSwitches { get; } | 27 | IEnumerable<ExtensionCommandLineSwitch> CommandLineSwitches { get; } |
| 34 | 28 | ||
| 35 | /// <summary> | 29 | void PreParse(ICommandLineContext context); |
| 36 | /// Parse the commandline arguments. | 30 | |
| 37 | /// </summary> | 31 | bool TryParseArgument(IParseCommandLine parseCommandLine, string arg); |
| 38 | /// <param name="args">Commandline arguments.</param> | ||
| 39 | /// <returns>Unparsed commandline arguments.</returns> | ||
| 40 | string[] ParseCommandLine(string[] args); | ||
| 41 | } | 32 | } |
| 42 | } | 33 | } |
