You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.en.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,6 +71,8 @@ Relation to CI:
71
71
- Recursively compares the old folder (CLI arg #1) and the new folder (CLI arg #2).
72
72
- Tracks each file as `MD5Match`, `MD5Mismatch`, `ILMatch`, `ILMismatch`, `TextMatch`, or `TextMismatch` (for IL results, the used disassembler/version is also recorded).
73
73
- Groups files into `Unchanged`, `Added`, `Removed`, and `Modified` buckets.
74
+
- Uses `ConcurrentQueue` / `ConcurrentDictionary` inside `FileDiffResultLists` so result aggregation is thread-safe during parallel comparison.
75
+
- Calls `FileDiffResultLists.ResetAll()` at the start of `FolderDiffService.ExecuteFolderDiffAsync` to prevent state leakage across multiple runs in the same process.
74
76
- Writes per-bucket listings to `Reports/<report label>/diff_report.md`; paths are relative for `Unchanged`/`Modified` and absolute for `Added`/`Removed`.
75
77
- For `ILMatch` / `ILMismatch`, the report also includes the disassembler tool and version used (including cache hits).
76
78
- Summarizes counts per bucket in the same report.
0 commit comments