aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/CommandLine/CommandLine.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-10-07 15:07:20 -0700
committerRob Mensching <rob@firegiant.com>2017-10-07 15:07:20 -0700
commitfbf986eb97f68396797a89fc7d40dec07b775440 (patch)
tree0ed7743a1ce95afc96aae5710479188bb5bdf08f /src/WixToolset.Core/CommandLine/CommandLine.cs
parent50bd11c35ebc48137eb01d69bdeb783c66479517 (diff)
downloadwix-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.cs4
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