Codeuctivity.PdfAValidator
3.0.295
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Codeuctivity.PdfAValidator --version 3.0.295
NuGet\Install-Package Codeuctivity.PdfAValidator -Version 3.0.295
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Codeuctivity.PdfAValidator" Version="3.0.295" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Codeuctivity.PdfAValidator" Version="3.0.295" />
<PackageReference Include="Codeuctivity.PdfAValidator" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Codeuctivity.PdfAValidator --version 3.0.295
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Codeuctivity.PdfAValidator, 3.0.295"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Codeuctivity.PdfAValidator@3.0.295
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Codeuctivity.PdfAValidator&version=3.0.295
#tool nuget:?package=Codeuctivity.PdfAValidator&version=3.0.295
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Codeuctivity.PdfAValidator
PdfAValidatorApi wraps calls to VeraPdf in a .net standard assembly and as WebApi. Access VeraPdf from your unit tests. Works on Windows, Linux and MacOs.
Sample - e.g. use it in your unit test to check compliance of some pdf:
public static async Task ShouldDetectCompliantPdfA()
{
using var pdfAValidator = new PdfAValidator();
var result = await pdfAValidator.ValidateAsync("./TestPdfFiles/FromLibreOffice.pdf");
Assert.True(result);
}
Sample - e.g. use it in your unit test to check the used sub standard of some pdf:
public static async Task ShouldGetDetailedReportFromPdfA()
{
using var pdfAValidator = new PdfAValidator();
var result = await pdfAValidator.ValidateWithDetailedReportAsync("./TestPdfFiles/FromLibreOffice.pdf");
Assert.True(result.Jobs.Job.ValidationReport.IsCompliant);
Assert.True(result.Jobs.Job.ValidationReport.ProfileName == "PDF/A-1A validation profile");
}
Sample - e.g. use it in your unit test to check PDF meta data:
public static async Task ShouldGetFeaturesReportWhenAskingForIt()
{
using var pdfAValidator = new PdfAValidator();
var result = await pdfAValidator.ValidateWithDetailedReportAsync("./TestPdfFiles/FromLibreOffice.pdf", "--extract informationDict");
var producerEntry = result.Jobs.Job.FeaturesReport.InformationDict.Entries.Single(e => e.Key == "Producer");
Assert.Equal("LibreOffice 6.1", producerEntry.Value);
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- System.IO.Compression.ZipFile (>= 4.3.0)
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 3.0.296 | 0 | 3/2/2026 |
| 3.0.295 | 0 | 3/2/2026 |
| 3.0.294 | 0 | 3/2/2026 |
| 3.0.275 | 0 | 10/24/2025 |
| 3.0.258 | 2 | 9/30/2024 |
| 3.0.253 | 1 | 9/29/2024 |
| 3.0.248 | 1 | 8/27/2024 |
| 3.0.245 | 0 | 8/21/2024 |
| 3.0.242 | 0 | 8/20/2024 |
| 3.0.237 | 0 | 8/2/2024 |
| 3.0.234 | 1 | 5/22/2024 |
| 3.0.231 | 1 | 5/15/2024 |
| 3.0.228 | 0 | 5/13/2024 |
| 3.0.225 | 1 | 5/2/2024 |
| 3.0.222 | 1 | 3/26/2024 |
| 3.0.217 | 1 | 1/21/2024 |
| 3.0.214 | 1 | 12/12/2023 |
| 3.0.211 | 1 | 12/5/2023 |
| 3.0.206 | 1 | 11/17/2023 |
| 3.0.199 | 2 | 11/14/2023 |
Loading failed
Merge pull request #128 from Codeuctivity/dependabot/github_actions/actions/checkout-6
Bump actions/checkout from 4 to 6