aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Services/ICommandLineArguments.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Extensibility/Services/ICommandLineArguments.cs')
-rw-r--r--src/WixToolset.Extensibility/Services/ICommandLineArguments.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/Services/ICommandLineArguments.cs b/src/WixToolset.Extensibility/Services/ICommandLineArguments.cs
new file mode 100644
index 00000000..eb1f8765
--- /dev/null
+++ b/src/WixToolset.Extensibility/Services/ICommandLineArguments.cs
@@ -0,0 +1,23 @@
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
3namespace WixToolset.Extensibility.Services
4{
5 using System.Collections.Generic;
6
7 public interface ICommandLineArguments
8 {
9 string[] OriginalArguments { get; set; }
10
11 string[] Arguments { get; set; }
12
13 string[] Extensions { get; set; }
14
15 string ErrorArgument { get; set; }
16
17 void Populate(string commandLine);
18
19 void Populate(string[] args);
20
21 IParseCommandLine Parse();
22 }
23}