Collection merger library.
License
—
Deps
0
Install Size
—
Vulns
✓ 0
Published
Jan 6, 2026
$ dotnet add package CollectionMergerA small library to synchronize/merge collections while producing a report of changes.
dotnet add package CollectionMerger
See the API entry points in CollectionSyncExtensions and the report type SyncReport.
// Example only – adjust to your concrete models.
// var report = target.SyncFrom(source, ...);
// Console.WriteLine(report);
This repo is set up to publish to NuGet when you push a tag like v1.2.3.
./scripts/Release-Version.ps1 -Version 1.2.3The release workflow expects a GitHub Actions secret:
NUGET_API_KEY: a NuGet.org API key with permission to push packages.GitHub Actions will build, test, pack, publish to NuGet, and create a GitHub Release.