Fix format
This commit is contained in:
parent
83f3a3ec86
commit
def4322783
2 changed files with 5 additions and 4 deletions
|
@ -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!");
|
||||
}
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue