Update ProjectManager error message
This commit is contained in:
parent
9f8906fdac
commit
4dff646f5d
2 changed files with 3 additions and 3 deletions
|
@ -23,8 +23,8 @@ namespace Microsoft.DotNet.ProjectModel
|
|||
public int Column { get; private set; }
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return string.Format("{0}({1},{2}): {3}", Path, Line, Column, base.Message);
|
||||
{
|
||||
return $"{Path}({Line},{Column}): Error: {base.ToString()}";
|
||||
}
|
||||
|
||||
internal static FileFormatException Create(Exception exception, string filePath)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue