Scrubkit.All
1.7.0
Prefix Reserved
See the version list below for details.
dotnet add package Scrubkit.All --version 1.7.0
NuGet\Install-Package Scrubkit.All -Version 1.7.0
<PackageReference Include="Scrubkit.All" Version="1.7.0" />
<PackageVersion Include="Scrubkit.All" Version="1.7.0" />
<PackageReference Include="Scrubkit.All" />
paket add Scrubkit.All --version 1.7.0
#r "nuget: Scrubkit.All, 1.7.0"
#:package Scrubkit.All@1.7.0
#addin nuget:?package=Scrubkit.All&version=1.7.0
#tool nuget:?package=Scrubkit.All&version=1.7.0
Scrubkit.All
A convenience meta-package — it ships no code of its own, it just references the whole Scrubkit family so you can read everything with a single reference.
dotnet add package Scrubkit.All
What you get
| Package | What it adds |
|---|---|
| Scrubkit | Core: folder → text + metadata for PDF, Office, text, and image EXIF, opt-in PII redaction, and zero-dependency CSV / JSON output. |
| Scrubkit.Email | .eml (MIME) email. |
| Scrubkit.OpenDocument | OpenDocument .odt / .ods / .odp. |
| Scrubkit.Epub | .epub e-books. |
| Scrubkit.Extensions.DependencyInjection | services.AddScrubkit(…) for ASP.NET Core and worker hosts. |
| Scrubkit.Parquet (net8.0 only) | Apache Parquet output via Parquet.Net. |
Scrubkit.Abstractions (the contracts) comes in transitively.
When not to use it
If you want a lean footprint, reference just the packages you need instead — e.g. the core alone reads PDF/Office/text out of the box, and each add-on is opt-in. On netstandard2.0 this bundle includes everything except Scrubkit.Parquet, which is net8.0-only.
The add-on extractors register via ReadOptions.Extractors; see the core package's README
for usage.
License
MPL-2.0. Fully offline — no network calls, no telemetry.
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- MetadataExtractor (>= 2.9.3)
- Microsoft.Bcl.AsyncInterfaces (>= 10.0.10)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0)
- PdfPig (>= 0.1.15)
- Scrubkit (>= 1.7.0)
- Scrubkit.Email (>= 1.7.0)
- Scrubkit.Epub (>= 1.7.0)
- Scrubkit.Extensions.DependencyInjection (>= 1.7.0)
- Scrubkit.OpenDocument (>= 1.7.0)
-
net8.0
- MetadataExtractor (>= 2.9.3)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0)
- Parquet.Net (>= 6.0.3)
- PdfPig (>= 0.1.15)
- Scrubkit (>= 1.7.0)
- Scrubkit.Email (>= 1.7.0)
- Scrubkit.Epub (>= 1.7.0)
- Scrubkit.Extensions.DependencyInjection (>= 1.7.0)
- Scrubkit.OpenDocument (>= 1.7.0)
- Scrubkit.Parquet (>= 1.7.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
1.6.0 — Incremental scans. FolderScrubber.ReadChangesAsync(root, baseline) extracts only files added or modified since a Manifest (size + last-write time); returns the delta, removed paths, and a fresh complete manifest to persist. Manifest is a zero-dependency text sidecar (Save/Load/From). New ReadOptions.ExcludePaths keeps a run from ingesting its own output. CLI: --since / --manifest flags; output is now UTF-8 without a BOM. Full changelog: https://github.com/jjopensoftworks-blip/Scrubkit/blob/main/CHANGELOG.md