Fixed Write -> WriteLine

This commit is contained in:
David Fowler 2016-01-08 23:50:34 -08:00
parent a9cf27c44d
commit 67cdc1b755

View file

@ -409,7 +409,7 @@ namespace Microsoft.DotNet.Tools.Compiler
Reporter.Output.WriteLine();
Reporter.Output.Write($"Time elapsed {sw.Elapsed}");
Reporter.Output.WriteLine($"Time elapsed {sw.Elapsed}");
return success;
}