From 0882755e66c0c31af22daaf00962028b0baad277 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 18 Dec 2025 05:55:16 +0000 Subject: [PATCH 1/2] Initial plan From d587acdf797118c980426190626e86d78ef3ffcc Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 18 Dec 2025 06:00:01 +0000 Subject: [PATCH 2/2] Make DocumentationGenerator less strict about trailing whitespace Co-authored-by: meziantou <509220+meziantou@users.noreply.github.com> --- src/DocumentationGenerator/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DocumentationGenerator/Program.cs b/src/DocumentationGenerator/Program.cs index f56cb68a6..a934227a1 100644 --- a/src/DocumentationGenerator/Program.cs +++ b/src/DocumentationGenerator/Program.cs @@ -212,7 +212,7 @@ void WriteFileIfChanged(FullPath path, string content) } var existingContent = File.ReadAllText(path).ReplaceLineEndings("\n"); - if (existingContent != content) + if (existingContent.TrimEnd() != content.TrimEnd()) { File.WriteAllText(path, content, encoding); fileWritten++;