Update dotnet projectmodel tests

This commit is contained in:
Troy Dai 2016-02-29 22:09:38 -08:00
parent bcd656daec
commit 9f8906fdac
7 changed files with 18 additions and 12 deletions

View file

@ -24,7 +24,7 @@ namespace Microsoft.DotNet.ProjectModel
public override string ToString()
{
return $"{Path}({Line},{Column}): Error: {base.ToString()}";
return string.Format("{0}({1},{2}): {3}", Path, Line, Column, base.Message);
}
internal static FileFormatException Create(Exception exception, string filePath)