sln build fix (again), tests fixes, audit work and doctors work
This commit is contained in:
@@ -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 |
|
||||
| --- | --- | --- |
|
||||
|
||||
@@ -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 : "";
|
||||
}
|
||||
|
||||
@@ -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 |
|
||||
| --- | --- | --- |
|
||||
|
||||
@@ -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 |
|
||||
| --- | --- | --- |
|
||||
|
||||
Reference in New Issue
Block a user