aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/IExtensionCommandLine.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-12-18 20:09:31 -0600
committerSean Hall <r.sean.hall@gmail.com>2020-12-18 23:35:39 -0600
commitf1b37c3a4d620298f8c646ac0a308a6fae1b662d (patch)
tree51712eea98cc2ca090b18d30d93dad88c3f9ac8e /src/WixToolset.Extensibility/IExtensionCommandLine.cs
parent8e08acb229ade411b7418df63b14198220aaaaa7 (diff)
downloadwix-f1b37c3a4d620298f8c646ac0a308a6fae1b662d.tar.gz
wix-f1b37c3a4d620298f8c646ac0a308a6fae1b662d.tar.bz2
wix-f1b37c3a4d620298f8c646ac0a308a6fae1b662d.zip
Enable XML doc and delete obsolete IParseHelper methods.
Diffstat (limited to 'src/WixToolset.Extensibility/IExtensionCommandLine.cs')
-rw-r--r--src/WixToolset.Extensibility/IExtensionCommandLine.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/WixToolset.Extensibility/IExtensionCommandLine.cs b/src/WixToolset.Extensibility/IExtensionCommandLine.cs
index 45683373..2c7d0a7e 100644
--- a/src/WixToolset.Extensibility/IExtensionCommandLine.cs
+++ b/src/WixToolset.Extensibility/IExtensionCommandLine.cs
@@ -34,11 +34,10 @@ namespace WixToolset.Extensibility
34 /// <summary> 34 /// <summary>
35 /// Gives the extension an opportunity to provide a command. 35 /// Gives the extension an opportunity to provide a command.
36 /// </summary> 36 /// </summary>
37 /// </summary>
38 /// <param name="parser">Parser to help parse the argument and additional arguments.</param> 37 /// <param name="parser">Parser to help parse the argument and additional arguments.</param>
39 /// <param name="argument">Argument to parse.</param> 38 /// <param name="argument">Argument to parse.</param>
40 /// <param name="command"></param> 39 /// <param name="command"></param>
41 /// <returns>True if the argument is recognized as a commond; otherwise false to allow another extension to process it.</returns> 40 /// <returns>True if the argument is recognized as a command; otherwise false to allow another extension to process it.</returns>
42 bool TryParseCommand(ICommandLineParser parser, string argument, out ICommandLineCommand command); 41 bool TryParseCommand(ICommandLineParser parser, string argument, out ICommandLineCommand command);
43 42
44 /// <summary> 43 /// <summary>