ManagedCode.Presidio.Core 0.0.1

Prefix Reserved
dotnet add package ManagedCode.Presidio.Core --version 0.0.1
                    
NuGet\Install-Package ManagedCode.Presidio.Core -Version 0.0.1
                    
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="ManagedCode.Presidio.Core" Version="0.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ManagedCode.Presidio.Core" Version="0.0.1" />
                    
Directory.Packages.props
<PackageReference Include="ManagedCode.Presidio.Core" />
                    
Project file
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 ManagedCode.Presidio.Core --version 0.0.1
                    
#r "nuget: ManagedCode.Presidio.Core, 0.0.1"
                    
#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 ManagedCode.Presidio.Core@0.0.1
                    
#: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=ManagedCode.Presidio.Core&version=0.0.1
                    
Install as a Cake Addin
#tool nuget:?package=ManagedCode.Presidio.Core&version=0.0.1
                    
Install as a Cake Tool

ManagedCode Presidio for .NET

Status: Early alpha. The API surface area is evolving while we complete the port from the Python reference implementation.

CI Release License: MIT

ManagedCode Presidio is the .NET 9 rewrite of Microsoft's Presidio project. The original Python codebase remains the authoritative reference implementation and is vendored in this repository as a Git submodule under external/microsoft-presidio. Our goal is feature parity with the Python release while delivering first-class NuGet packages for .NET applications.


Solution Layout

  • Presidio.slnx – Visual Studio / dotnet solution for all libraries and tests.
  • src/ManagedCode.Presidio.Core – cross-cutting primitives (TextSpan, RecognizerResult, AnalysisExplanation, etc.).
  • src/ManagedCode.Presidio.Analyzer – contracts for recognizers and NLP artefacts.
  • src/ManagedCode.Presidio.Anonymizer – operators, engine results, and shared anonymization abstractions.
  • src/ManagedCode.Presidio.ImageRedactor – image-domain types (bounding boxes, request/response models).
  • src/ManagedCode.Presidio.Structured – helpers for structured/semi-structured payload anonymization.
  • tests/ManagedCode.Presidio.* – unit and integration suites validating parity against the Python behaviour.
  • external/microsoft-presidio – Git submodule pointing at the upstream Python repository.

NuGet Packages

The solution produces the following packages (versioned centrally via Directory.Build.props):

  • ManagedCode.Presidio.Core
  • ManagedCode.Presidio.Analyzer
  • ManagedCode.Presidio.Anonymizer
  • ManagedCode.Presidio.Structured
  • ManagedCode.Presidio.ImageRedactor

Publishing is handled by the release.yml GitHub workflow which runs on pushes to main.


Getting Started

Prerequisites

  • .NET SDK 9.0.301 (configured via global.json).
  • Git 2.35+ with submodule support.
  • Optionally, Python 3.9+ if you need to run the original reference code or regenerate fixtures.

Clone the Repository

git clone https://github.com/managedcode/presidio.git
cd presidio
git submodule update --init --recursive

Build & Test

dotnet restore Presidio.slnx
dotnet build Presidio.slnx --configuration Release
dotnet format
dotnet test Presidio.slnx --configuration Release

We always run dotnet format before dotnet test to ensure consistent styling across the solution.

Usage Examples

The .NET APIs mirror the Python surface. The snippets below show the most common entry points.

Anonymizing raw text
using System.Collections.Generic;
using ManagedCode.Presidio.Anonymizer;
using ManagedCode.Presidio.Core;

var recognizerResults = new[]
{
    new ManagedCode.Presidio.Core.RecognizerResult("PERSON", new TextSpan(11, 16), 0.85),
};

var anonymizer = new AnonymizerEngine();
var result = anonymizer.Anonymize(
    "My name is James Bond",
    recognizerResults,
    new Dictionary<string, OperatorConfig>
    {
        ["PERSON"] = new OperatorConfig("replace", new Dictionary<string, object?>
        {
            [ReplaceOperator.NewValueKey] = "Agent"
        })
    });

// result.Text == "My name is Agent Bond"
Working with collections (BatchAnonymizerEngine)
using System.Collections.Generic;
using ManagedCode.Presidio.Anonymizer;

var batch = new BatchAnonymizerEngine(anonymizer);

var response = batch.AnonymizeDict(new[]
{
    new DictRecognizerResult(
        "names",
        new[] { "John", "Jill" },
        new[]
        {
            new[] { new ManagedCode.Presidio.Anonymizer.RecognizerResult("PERSON", 0, 4, 0.9) },
            new[] { new ManagedCode.Presidio.Anonymizer.RecognizerResult("PERSON", 0, 4, 0.9) },
        })
});

// response["names"] == ["<PERSON>", "<PERSON>"]
Deanonymizing previously encrypted entities
using System.Collections.Generic;
using ManagedCode.Presidio.Anonymizer;

var deanonymizer = new DeanonymizeEngine();

var decrypted = deanonymizer.Deanonymize(
    cipherText: "My name is S184CMt9Drj7QaKQ21JTrpYzghnboTF9pn/neN8JME0=",
    entities: new[] { new OperatorResult(11, 55, "PERSON") },
    operators: new Dictionary<string, OperatorConfig>
    {
        ["DEFAULT"] = new OperatorConfig("decrypt", new Dictionary<string, object?>
        {
            [EncryptOperator.KeyParameter] = "WmZq4t7w!z%C&F)J",
        })
    });

// decrypted.Text == "My name is Chloë"

Python Reference Submodule

The external/microsoft-presidio directory tracks the upstream Python implementation. Tests under tests/ManagedCode.Presidio.Core.IntegrationTests load fixtures derived from the Python suite to prove behavioural parity of key primitives. As the port progresses, more fixtures will be mirrored directly from the submodule so that regressions can be caught early.

If you update the submodule revision, ensure you run:

git submodule update --remote external/microsoft-presidio

and commit the resulting SHA change.


Roadmap

  1. Core parity – finalise domain primitives and validate them against Python fixtures.
  2. Analyzer engine – port recognizer registry, pattern recognizers, and ONNX-backed NER execution.
  3. Anonymizer engine – reproduce the operator pipeline, conflict resolution, and policy parsing.
  4. Image/Structured pipelines – deliver feature parity for image redaction and structured anonymisation flows.
  5. Packaging – stabilise public APIs, documentation, and automate NuGet publishing.

Progress is tracked in AGENTS.md.


Contributing

We welcome pull requests and issues. Please read CONTRIBUTING.md and follow the existing coding conventions (see .editorconfig). All code must target .NET 9 and pass dotnet format + dotnet test before a PR can be merged.


License

This project is licensed under the MIT License.


Maintainers

ManagedCode SAS is the primary maintainer of this fork. For questions, please open a GitHub issue or contact the ManagedCode team.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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.
  • net9.0

    • No dependencies.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on ManagedCode.Presidio.Core:

Package Downloads
ManagedCode.Presidio.Analyzer

ManagedCode Presidio analyzer framework for detecting PII entities.

ManagedCode.Presidio.Anonymizer

ManagedCode Presidio anonymization operators and execution pipeline.

ManagedCode.Presidio.ImageRedactor

ManagedCode Presidio image redaction primitives and request structures.

ManagedCode.Presidio.Structured

ManagedCode Presidio helpers for anonymizing structured and semi-structured data.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.0.1 185 11/8/2025