diff options
author | Rob Mensching <rob@firegiant.com> | 2017-10-07 15:07:20 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-10-07 15:07:20 -0700 |
commit | fbf986eb97f68396797a89fc7d40dec07b775440 (patch) | |
tree | 0ed7743a1ce95afc96aae5710479188bb5bdf08f /src/WixToolset.Core/CommandLine/CommandLine.cs | |
parent | 50bd11c35ebc48137eb01d69bdeb783c66479517 (diff) | |
download | wix-fbf986eb97f68396797a89fc7d40dec07b775440.tar.gz wix-fbf986eb97f68396797a89fc7d40dec07b775440.tar.bz2 wix-fbf986eb97f68396797a89fc7d40dec07b775440.zip |
Rename ICommand to ICommandLineCommand
Removes conflicts with existing ICommand. More refactoring coming.
Diffstat (limited to 'src/WixToolset.Core/CommandLine/CommandLine.cs')
-rw-r--r-- | src/WixToolset.Core/CommandLine/CommandLine.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core/CommandLine/CommandLine.cs b/src/WixToolset.Core/CommandLine/CommandLine.cs index c95a2db4..a3a6831c 100644 --- a/src/WixToolset.Core/CommandLine/CommandLine.cs +++ b/src/WixToolset.Core/CommandLine/CommandLine.cs | |||
@@ -41,14 +41,14 @@ namespace WixToolset.Core | |||
41 | 41 | ||
42 | public bool ShowHelp { get; set; } | 42 | public bool ShowHelp { get; set; } |
43 | 43 | ||
44 | public static ICommand ParseStandardCommandLine(string commandLineString) | 44 | public static ICommandLineCommand ParseStandardCommandLine(string commandLineString) |
45 | { | 45 | { |
46 | var args = CommandLine.ParseArgumentsToArray(commandLineString).ToArray(); | 46 | var args = CommandLine.ParseArgumentsToArray(commandLineString).ToArray(); |
47 | 47 | ||
48 | return ParseStandardCommandLine(args); | 48 | return ParseStandardCommandLine(args); |
49 | } | 49 | } |
50 | 50 | ||
51 | public static ICommand ParseStandardCommandLine(string[] args) | 51 | public static ICommandLineCommand ParseStandardCommandLine(string[] args) |
52 | { | 52 | { |
53 | var next = String.Empty; | 53 | var next = String.Empty; |
54 | 54 | ||