Fix format

This commit is contained in:
William Li 2017-04-14 10:27:24 -07:00
parent 83f3a3ec86
commit def4322783
2 changed files with 5 additions and 4 deletions

View file

@ -9,9 +9,9 @@ namespace MSBuildTestApp
{
public static void Main(string[] args)
{
if (args.Length > 0)
if (args.Length > 0)
{
Console.WriteLine("echo args:"+ String.Join(";", args));
Console.WriteLine("echo args:" + string.Join(";", args));
}
Console.WriteLine("Hello World!");
}

View file

@ -24,9 +24,10 @@ namespace Microsoft.DotNet.Cli
Console.WriteLine(result.Diagram());
if (result.UnparsedTokens.Any()) {
if (result.UnparsedTokens.Any())
{
Console.WriteLine("Unparsed Tokens: ");
Console.WriteLine(string.Join(" ", (result.UnparsedTokens)));
Console.WriteLine(string.Join(" ", result.UnparsedTokens));
}
var optionValuesToBeForwarded = result.AppliedCommand()