From fbf986eb97f68396797a89fc7d40dec07b775440 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sat, 7 Oct 2017 15:07:20 -0700 Subject: Rename ICommand to ICommandLineCommand Removes conflicts with existing ICommand. More refactoring coming. --- src/WixToolset.Core/CommandLine/CommandLine.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/WixToolset.Core/CommandLine/CommandLine.cs') 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 public bool ShowHelp { get; set; } - public static ICommand ParseStandardCommandLine(string commandLineString) + public static ICommandLineCommand ParseStandardCommandLine(string commandLineString) { var args = CommandLine.ParseArgumentsToArray(commandLineString).ToArray(); return ParseStandardCommandLine(args); } - public static ICommand ParseStandardCommandLine(string[] args) + public static ICommandLineCommand ParseStandardCommandLine(string[] args) { var next = String.Empty; -- cgit v1.2.3-55-g6feb