Add Microsoft.DotNet.Tools.Interactive

This commit is contained in:
Charles Stoner 2015-10-30 10:34:02 -07:00
parent 54847cf032
commit e2cdf17e2e
14 changed files with 278 additions and 37 deletions

View file

@ -44,7 +44,7 @@ namespace Microsoft.DotNet.Cli.Utils
public static Command Create(string executable, IEnumerable<string> args)
{
return Create(executable, args.Any() ? string.Join(" ", args) : string.Empty);
return Create(executable, string.Join(" ", args));
}
public static Command Create(string executable, string args)