aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Data/ICommandLineCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Extensibility/Data/ICommandLineCommand.cs')
-rw-r--r--src/WixToolset.Extensibility/Data/ICommandLineCommand.cs10
1 files changed, 9 insertions, 1 deletions
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
3namespace WixToolset.Extensibility.Data 3namespace 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}