diff options
Diffstat (limited to 'src/WixToolset.Extensibility/Data')
| -rw-r--r-- | src/WixToolset.Extensibility/Data/ICommandLineArguments.cs | 2 | ||||
| -rw-r--r-- | src/WixToolset.Extensibility/Data/ICommandLineCommand.cs | 10 |
2 files changed, 10 insertions, 2 deletions
diff --git a/src/WixToolset.Extensibility/Data/ICommandLineArguments.cs b/src/WixToolset.Extensibility/Data/ICommandLineArguments.cs index 5729ff36..dfa81762 100644 --- a/src/WixToolset.Extensibility/Data/ICommandLineArguments.cs +++ b/src/WixToolset.Extensibility/Data/ICommandLineArguments.cs | |||
| @@ -18,6 +18,6 @@ namespace WixToolset.Extensibility.Data | |||
| 18 | 18 | ||
| 19 | void Populate(string[] args); | 19 | void Populate(string[] args); |
| 20 | 20 | ||
| 21 | IParseCommandLine Parse(); | 21 | ICommandLineParser Parse(); |
| 22 | } | 22 | } |
| 23 | } | 23 | } |
diff --git a/src/WixToolset.Extensibility/Data/ICommandLineCommand.cs b/src/WixToolset.Extensibility/Data/ICommandLineCommand.cs index 1146d40a..1c6de205 100644 --- a/src/WixToolset.Extensibility/Data/ICommandLineCommand.cs +++ b/src/WixToolset.Extensibility/Data/ICommandLineCommand.cs | |||
| @@ -1,9 +1,17 @@ | |||
| 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. |
| 2 | 2 | ||
| 3 | namespace WixToolset.Extensibility.Data | 3 | namespace WixToolset.Extensibility.Data |
| 4 | { | 4 | { |
| 5 | using WixToolset.Extensibility.Services; | ||
| 6 | |||
| 5 | public interface ICommandLineCommand | 7 | public interface ICommandLineCommand |
| 6 | { | 8 | { |
| 9 | bool ShowLogo { get; } | ||
| 10 | |||
| 11 | bool StopParsing { get; } | ||
| 12 | |||
| 7 | int Execute(); | 13 | int Execute(); |
| 14 | |||
| 15 | bool TryParseArgument(ICommandLineParser parser, string argument); | ||
| 8 | } | 16 | } |
| 9 | } | 17 | } |
