diff options
| author | Rob Mensching <rob@firegiant.com> | 2017-12-02 00:45:33 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2017-12-02 00:45:33 -0800 |
| commit | fb2df0e24c0709ce94c396624cf86c70e02da01f (patch) | |
| tree | e0a16a342dca4f9b343afa945d89116856950b83 /src/WixToolset.Extensibility/IExtensionCommandLine.cs | |
| parent | 404f34f00ecce034a8a06fe4757789c6ce62f3f6 (diff) | |
| download | wix-fb2df0e24c0709ce94c396624cf86c70e02da01f.tar.gz wix-fb2df0e24c0709ce94c396624cf86c70e02da01f.tar.bz2 wix-fb2df0e24c0709ce94c396624cf86c70e02da01f.zip | |
Fix IExtensionCommandLine and IPreprocessorExtension
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 | } |
