Scrubkit.All
1.8.0
Prefix Reserved
dotnet add package Scrubkit.All --version 1.8.0
NuGet\Install-Package Scrubkit.All -Version 1.8.0
<PackageReference Include="Scrubkit.All" Version="1.8.0" />
<PackageVersion Include="Scrubkit.All" Version="1.8.0" />
<PackageReference Include="Scrubkit.All" />
paket add Scrubkit.All --version 1.8.0
#r "nuget: Scrubkit.All, 1.8.0"
#:package Scrubkit.All@1.8.0
#addin nuget:?package=Scrubkit.All&version=1.8.0
#tool nuget:?package=Scrubkit.All&version=1.8.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.8.0)
- Scrubkit.Email (>= 1.8.0)
- Scrubkit.Epub (>= 1.8.0)
- Scrubkit.Extensions.DependencyInjection (>= 1.8.0)
- Scrubkit.OpenDocument (>= 1.8.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.8.0)
- Scrubkit.Email (>= 1.8.0)
- Scrubkit.Epub (>= 1.8.0)
- Scrubkit.Extensions.DependencyInjection (>= 1.8.0)
- Scrubkit.OpenDocument (>= 1.8.0)
- Scrubkit.Parquet (>= 1.8.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.7.0 — Custom redaction rules. StandardRedactorOptions.CustomRules takes caller-defined CustomRedactionRules (category/pattern/token/ignoreCase), matched before the built-ins so a domain rule wins an overlap; patterns compile with a match timeout (ReDoS-safe) and an invalid pattern throws at construction. CLI: --rules <file> loads custom rules plus allow/deny/disable lists from JSON and implies redaction. Full changelog: https://github.com/jjopensoftworks-blip/Scrubkit/blob/main/CHANGELOG.md