sln build fix (again), tests fixes, audit work and doctors work

This commit is contained in:
master
2026-01-12 22:15:51 +02:00
parent 9873f80830
commit 9330c64349
812 changed files with 48051 additions and 3891 deletions

View File

@@ -1,7 +1,7 @@
# Feedser BinaryAnalysis Task Board
This board mirrors active sprint tasks for this module.
Source of truth: `docs/implplan/SPRINT_20251229_049_BE_csproj_audit_maint_tests.md`.
Source of truth: `docs-archived/implplan/2025-12-29-csproj-audit/SPRINT_20251229_049_BE_csproj_audit_maint_tests.md`.
| Task ID | Status | Notes |
| --- | --- | --- |

View File

@@ -84,7 +84,8 @@ public static partial class HunkSigExtractor
private static List<PatchHunk> ParseUnifiedDiff(string diff)
{
var hunks = new List<PatchHunk>();
var lines = diff.Split('\n');
// Normalize line endings to handle both \n and \r\n
var lines = diff.Replace("\r\n", "\n").Replace("\r", "\n").Split('\n');
string? currentFile = null;
int currentStartLine = 0;
@@ -229,7 +230,8 @@ public static partial class HunkSigExtractor
private static string ExtractFilePath(string line)
{
// "+++ b/path/to/file"
// "+++ b/path/to/file" - trim CR/LF first
line = line.TrimEnd('\r', '\n');
var match = FilePathRegex().Match(line);
return match.Success ? match.Groups[1].Value : "";
}

View File

@@ -1,7 +1,7 @@
# Feedser Core Task Board
This board mirrors active sprint tasks for this module.
Source of truth: `docs/implplan/SPRINT_20251229_049_BE_csproj_audit_maint_tests.md`.
Source of truth: `docs-archived/implplan/2025-12-29-csproj-audit/SPRINT_20251229_049_BE_csproj_audit_maint_tests.md`.
| Task ID | Status | Notes |
| --- | --- | --- |

View File

@@ -1,7 +1,7 @@
# Feedser Core Tests Task Board
This board mirrors active sprint tasks for this module.
Source of truth: `docs/implplan/SPRINT_20251229_049_BE_csproj_audit_maint_tests.md`.
Source of truth: `docs-archived/implplan/2025-12-29-csproj-audit/SPRINT_20251229_049_BE_csproj_audit_maint_tests.md`.
| Task ID | Status | Notes |
| --- | --- | --- |