From d4f0216f5b0a937765c9361ec9d160e048bc820a Mon Sep 17 00:00:00 2001 From: Relintai Date: Fri, 20 Sep 2024 09:06:26 +0200 Subject: [PATCH] Backported from godot: Fixed issues relating to receiving an MSBuild warning/error that did not refer to any file Fixed issues relating to receiving an MSBuild warning/error that did not refer to any file - RedOrbweaver https://github.com/godotengine/godot/commit/5cbe7fd7507f29b6984a3429fb0181a675f2b4cd --- editor/GodotTools/GodotTools.BuildLogger/GodotBuildLogger.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/editor/GodotTools/GodotTools.BuildLogger/GodotBuildLogger.cs b/editor/GodotTools/GodotTools.BuildLogger/GodotBuildLogger.cs index 2bf1cb7..8d7b383 100644 --- a/editor/GodotTools/GodotTools.BuildLogger/GodotBuildLogger.cs +++ b/editor/GodotTools/GodotTools.BuildLogger/GodotBuildLogger.cs @@ -88,7 +88,7 @@ namespace GodotTools.BuildLogger WriteLine(line); - string errorLine = $@"error,{e.File.CsvEscape()},{e.LineNumber},{e.ColumnNumber}," + + string errorLine = $@"error,{e.File?.CsvEscape() ?? string.Empty},{e.LineNumber},{e.ColumnNumber}," + $"{e.Code?.CsvEscape() ?? string.Empty},{e.Message.CsvEscape()}," + $"{e.ProjectFile?.CsvEscape() ?? string.Empty}"; _issuesStreamWriter.WriteLine(errorLine); @@ -103,7 +103,7 @@ namespace GodotTools.BuildLogger WriteLine(line); - string warningLine = $@"warning,{e.File.CsvEscape()},{e.LineNumber},{e.ColumnNumber}," + + string warningLine = $@"warning,{e.File?.CsvEscape() ?? string.Empty},{e.LineNumber},{e.ColumnNumber}," + $"{e.Code?.CsvEscape() ?? string.Empty},{e.Message.CsvEscape()}," + $"{e.ProjectFile?.CsvEscape() ?? string.Empty}"; _issuesStreamWriter.WriteLine(warningLine);