Conzent.Umbraco 1.0.1

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

Conzent CMP for Umbraco

GDPR, CCPA & ePrivacy compliant cookie consent banner for Umbraco CMS. IAB TCF v2.3 certified (CMP #446) and Google CMP Partner.

Installation

Install via NuGet:

dotnet add package Conzent.Umbraco

Or via the NuGet Package Manager in Visual Studio:

Install-Package Conzent.Umbraco

Configuration

Add your Conzent settings to appsettings.json:

{
  "Conzent": {
    "WebsiteKey": "YOUR-WEBSITE-KEY",
    "Enabled": true
  }
}

All options

Setting Default Description
WebsiteKey (required) Your website key from the Conzent dashboard
ServerUrl https://cdn.getconzent.com Conzent server URL. Leave empty for Cloud.
Enabled true Toggle the consent banner on/off

You can also configure via environment variables:

Conzent__WebsiteKey=your-key-here
Conzent__Enabled=true

Usage

1. Register tag helpers

In your _ViewImports.cshtml:

@addTagHelper *, Conzent.Umbraco

2. Add to your layout

In your _Layout.cshtml (or master layout):

<head>
  ...
  <conzent-scripts />
</head>

The <conzent-scripts /> tag helper injects the Conzent consent script with your website key.

3. Backoffice dashboard

After installation, a Conzent CMP dashboard appears in the Umbraco backoffice under Settings. Use it to view your current configuration and get the JSON snippet for appsettings.json.

Self-Hosted (OCI)

To use Conzent with your own self-hosted OCI instance instead of Conzent Cloud:

{
  "Conzent": {
    "WebsiteKey": "YOUR-WEBSITE-KEY",
    "ServerUrl": "https://consent.yourdomain.com",
    "Enabled": true
  }
}

Key Features

  • GDPR, CCPA, ePrivacy compliant — Full compliance with major privacy regulations
  • IAB TCF v2.3 certified — CMP ID #446
  • Google Consent Mode v2 — Advanced consent signaling for Google services
  • Cookie auto-scanning — Automatically detect and categorize cookies
  • A/B testing — Optimize consent rates with data-driven testing
  • 30+ languages — Auto-translate based on visitor's browser language
  • Preference center — Granular cookie category control for visitors
  • Source available — Full source code on GitHub (BSL 1.1)
  • Free to use — Conzent Cloud is free. Self-hosting is always free.

Requirements

  • Umbraco 13+
  • .NET 8.0+

License

MIT — see LICENSE for details.

About Conzent

Conzent ApS is a Danish company on a mission to make privacy compliance free for every website on the internet — funded by sponsorships, not paywalls. Learn more.

Product 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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.1 143 3/23/2026
1.0.0 116 3/23/2026

Remove GTM settings (now managed via Conzent dashboard)