diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Extensibility/Services/ICommandLine.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/WixToolset.Extensibility/Services/ICommandLine.cs b/src/WixToolset.Extensibility/Services/ICommandLine.cs index 9dd247ff..48f3620f 100644 --- a/src/WixToolset.Extensibility/Services/ICommandLine.cs +++ b/src/WixToolset.Extensibility/Services/ICommandLine.cs | |||
@@ -2,8 +2,14 @@ | |||
2 | 2 | ||
3 | namespace WixToolset.Extensibility.Services | 3 | namespace WixToolset.Extensibility.Services |
4 | { | 4 | { |
5 | using WixToolset.Extensibility.Data; | ||
6 | |||
5 | public interface ICommandLine | 7 | public interface ICommandLine |
6 | { | 8 | { |
7 | ICommandLineCommand ParseStandardCommandLine(ICommandLineContext commandLineContext); | 9 | IExtensionManager ExtensionManager { get; set; } |
10 | |||
11 | ICommandLineArguments Arguments { get; set; } | ||
12 | |||
13 | ICommandLineCommand ParseStandardCommandLine(); | ||
8 | } | 14 | } |
9 | } | 15 | } |