# Redaction Log data redaction utilities built on `Microsoft.Extensions.Compliance.Redaction.Redactor`. Provides `ReplacingRedactor`, an internal `Redactor` implementation that replaces any input with a fixed replacement string (e.g. `""`). To use this in your project, add the following to your `.csproj` file: ```xml true ``` You will also need to add a package reference to `Microsoft.Extensions.Compliance.Abstractions`: ```xml ``` And finally, this also depends on the shared Throw class, so when using redaction, InjectSharedThrow should also be enabled: ```xml true ```