Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Build/Errors/InvalidProjectFileException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public InvalidProjectFileException(string message, Exception innerException)
/// The assumption is that all the metadata for the outer exception comes from the inner exception, eg., they have the same error code.
/// </summary>
internal InvalidProjectFileException(string message, InvalidProjectFileException innerException)
: this(innerException.ProjectFile, innerException.LineNumber, innerException.ColumnNumber, innerException.EndLineNumber, innerException.EndColumnNumber, message, innerException.ErrorSubcategory, innerException.ErrorCode, innerException.HelpKeyword)
: this(innerException.ProjectFile ?? "MSBUILD", innerException.LineNumber, innerException.ColumnNumber, innerException.EndLineNumber, innerException.EndColumnNumber, message, innerException.ErrorSubcategory, innerException.ErrorCode, innerException.HelpKeyword)
{
}

Expand Down
Loading