Microsoft.AspNetCore.DataProtection.StackExchangeRedis 10.0.0-preview.1.25120.3

Prefix Reserved
This is a prerelease version of Microsoft.AspNetCore.DataProtection.StackExchangeRedis.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Microsoft.AspNetCore.DataProtection.StackExchangeRedis --version 10.0.0-preview.1.25120.3
                    
NuGet\Install-Package Microsoft.AspNetCore.DataProtection.StackExchangeRedis -Version 10.0.0-preview.1.25120.3
                    
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="Microsoft.AspNetCore.DataProtection.StackExchangeRedis" Version="10.0.0-preview.1.25120.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis" Version="10.0.0-preview.1.25120.3" />
                    
Directory.Packages.props
<PackageReference Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis" />
                    
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 Microsoft.AspNetCore.DataProtection.StackExchangeRedis --version 10.0.0-preview.1.25120.3
                    
#r "nuget: Microsoft.AspNetCore.DataProtection.StackExchangeRedis, 10.0.0-preview.1.25120.3"
                    
#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.
#addin nuget:?package=Microsoft.AspNetCore.DataProtection.StackExchangeRedis&version=10.0.0-preview.1.25120.3&prerelease
                    
Install Microsoft.AspNetCore.DataProtection.StackExchangeRedis as a Cake Addin
#tool nuget:?package=Microsoft.AspNetCore.DataProtection.StackExchangeRedis&version=10.0.0-preview.1.25120.3&prerelease
                    
Install Microsoft.AspNetCore.DataProtection.StackExchangeRedis as a Cake Tool

About

Microsoft.AspNetCore.DataProtection.StackExchangeRedis allows storing data protection keys in a Redis cache.

[!WARNING] Only Redis versions supporting Redis Data Persistence should be used to store keys. Azure Blob storage is persistent and can be used to store keys. For more information, see this GitHub issue.

How to Use

To use Microsoft.AspNetCore.DataProtection.StackExchangeRedis, follow these steps:

Installation

dotnet add package Microsoft.AspNetCore.DataProtection.StackExchangeRedis

Configuration

To configure data protection key storage on Redis, call one of the PersistKeysToStackExchangeRedis overloads:

var redis = ConnectionMultiplexer.Connect("<URI>");
builder.Services.AddDataProtection()
    .PersistKeysToStackExchangeRedis(redis, "DataProtection-Keys");

Additional Documentation

For additional documentation and examples, refer to the official documentation on the Redis key storage provider.

Feedback & Contributing

Microsoft.AspNetCore.DataProtection.StackExchangeRedis is released as open-source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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 is compatible. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (94)

Showing the top 5 NuGet packages that depend on Microsoft.AspNetCore.DataProtection.StackExchangeRedis:

Package Downloads
OrchardCore.Application.Cms.Core.Targets

Orchard Core CMS is a Web Content Management System (CMS) built on top of the Orchard Core Framework. Converts the application into a modular OrchardCore CMS application with TheAdmin theme but without any front-end Themes.

OrchardCore.Redis

Orchard Core Framework is an application framework for building modular, multi-tenant applications on ASP.NET Core. Provides Redis features for configuration, cache, bus and lock.

OrchardCore.Redis.Abstractions

Orchard Core Framework is an application framework for building modular, multi-tenant applications on ASP.NET Core. Abstractions for Redis.

OrchardCore.Application.Cms.Targets

Orchard Core CMS is a Web Content Management System (CMS) built on top of the Orchard Core Framework. Converts the application into a modular OrchardCore CMS application with following themes. - TheAdmin Theme - SafeMode Theme - TheAgency Theme - TheBlog Theme - TheComingSoon Theme - TheTheme theme

Sitko.Core.Auth

Sitko.Core is a set of libraries to help build .NET Core applications fast

GitHub repositories (29)

Showing the top 20 popular GitHub repositories that depend on Microsoft.AspNetCore.DataProtection.StackExchangeRedis:

Repository Stars
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
dodyg/practical-aspnetcore
Practical samples of ASP.NET Core 10 Preview 3, 9, 8.0, 7.0, 6.0, 5.0, 3.1, 2.2, and 2.1,projects you can use. Readme contains explanations on all projects.
OrchardCMS/OrchardCore
Orchard Core is an open-source modular and multi-tenant application framework built with ASP.NET Core, and a content management system (CMS) built on top of that framework.
anjoy8/Blog.Core
💖 ASP.NET Core 8.0 全家桶教程,前后端分离后端接口,vue教程姊妹篇,官方文档:
vietnam-devs/coolstore-microservices
A full-stack .NET microservices build on Dapr and Tye
grandnode/grandnode
Open source, headless, multi-tenant eCommerce platform built with .NET Core, MongoDB, AWS DocumentDB, Azure CosmosDB, Vue.js.
blogifierdotnet/Blogifier
Blogifier is an open-source publishing platform Written in ASP.NET and Blazor WebAssembly. With Blogifier make a personal blog or a website.
VirtoCommerce/vc-platform
Virto Commerce B2B Innovation Platform
abpframework/abp-samples
Sample solutions built with the ABP Framework
grandnode/grandnode2
E-commerce platform built with ASP.NET Core using MongoDB for NoSQL storage
SteeltoeOSS/Steeltoe
.NET Components for Externalized Configuration, Database Connectors, Service Discovery, Logging and Distributed Tracing, Application Management, Security, and more.
colinin/abp-next-admin
这是基于vue-vben-admin 模板适用于abp vNext的前端管理项目
abpframework/eShopOnAbp
Reference microservice solution built with the ABP Framework and .NET, runs on Kubernetes with Helm configuration, includes API Gateways, Angular and ASP.NET Core MVC applications, PostgreSQL and MongoDB databases
Aguafrommars/TheIdServer
OpenID/Connect, OAuth2, WS-Federation and SAML 2.0 server based on Duende IdentityServer and ITFoxtec Identity SAML 2.0 with its admin UI
jerrytang67/SoMall
社交电商商城开源项目.socail+mall即取名SoMall ,abp netcore 3.1 angular vue uni-app typescript docker mssql
xiajingren/HelloAbp
ABP vNext + vue-element-admin入门级项目实践
netcorepal/netcorepal-cloud-framework
一个基于ASP.NET Core实现的整洁领域驱动设计落地战术框架。 A tactical framework for Clean Domain-Driven Design based on ASP.NET Core.
abpframework/eventhub
Open-source event organizing web application and a reference DDD solution.
842549829/Panda
Abp.vNext + EF Core The microservices Open source framework project supports the implementation of message push workflow certification centers based on OAuth2.0
hikalkan/presentations
Some of my presentations
Version Downloads Last updated
10.0.0-preview.3.25172.1 142 4/10/2025
10.0.0-preview.2.25164.1 359 3/18/2025
10.0.0-preview.1.25120.3 354 2/25/2025
9.0.4 5,539 4/8/2025
9.0.3 80,595 3/11/2025
9.0.2 128,600 2/11/2025
9.0.1 142,269 1/14/2025
9.0.0 255,799 11/12/2024
9.0.0-rc.2.24474.3 11,030 10/8/2024
9.0.0-rc.1.24452.1 4,715 9/10/2024
9.0.0-preview.7.24406.2 1,992 8/13/2024
9.0.0-preview.6.24328.4 8,360 7/9/2024
9.0.0-preview.5.24306.11 323 6/11/2024
9.0.0-preview.4.24267.6 252 5/21/2024
9.0.0-preview.3.24172.13 75,266 4/11/2024
9.0.0-preview.2.24128.4 1,150 3/12/2024
9.0.0-preview.1.24081.5 20,810 2/13/2024
8.0.15 2,832 4/8/2025
8.0.14 147,520 3/11/2025
8.0.13 257,444 2/11/2025
8.0.12 298,139 1/14/2025
8.0.11 758,393 11/12/2024
8.0.10 666,705 10/8/2024
8.0.8 1,001,091 8/13/2024
8.0.7 535,343 7/9/2024
8.0.6 842,968 5/28/2024
8.0.5 200,527 5/14/2024
8.0.4 730,399 4/9/2024
8.0.3 561,132 3/12/2024
8.0.2 352,446 2/13/2024
8.0.1 592,083 1/9/2024
8.0.0 765,151 11/14/2023
8.0.0-rc.2.23480.2 9,452 10/10/2023
8.0.0-rc.1.23421.29 3,941 9/12/2023
8.0.0-preview.7.23375.9 1,312 8/8/2023
8.0.0-preview.6.23329.11 945 7/11/2023
8.0.0-preview.5.23302.2 2,115 6/13/2023
8.0.0-preview.4.23260.4 228,908 5/16/2023
8.0.0-preview.3.23177.8 3,647 4/11/2023
8.0.0-preview.2.23153.2 1,346 3/14/2023
8.0.0-preview.1.23112.2 53,427 2/21/2023
7.0.20 87,093 5/28/2024
7.0.19 10,066 5/14/2024
7.0.18 32,810 4/9/2024
7.0.17 39,417 3/12/2024
7.0.16 82,256 2/13/2024
7.0.15 95,075 1/9/2024
7.0.14 203,607 11/14/2023
7.0.13 322,831 10/24/2023
7.0.12 118,319 10/10/2023
7.0.11 173,677 9/12/2023
7.0.10 340,264 8/8/2023
7.0.9 296,515 7/11/2023
7.0.8 183,473 6/22/2023
7.0.7 72,572 6/13/2023
7.0.5 399,534 4/11/2023
7.0.4 269,745 3/14/2023
7.0.3 243,978 2/14/2023
7.0.2 430,364 1/10/2023
7.0.1 287,069 12/13/2022
7.0.0 618,167 11/7/2022
7.0.0-rc.2.22476.2 27,634 10/11/2022
7.0.0-rc.1.22427.2 3,862 9/14/2022
7.0.0-preview.7.22376.6 1,376 8/9/2022
7.0.0-preview.6.22330.3 18,149 7/12/2022
7.0.0-preview.5.22303.8 864 6/14/2022
7.0.0-preview.4.22251.1 5,666 5/10/2022
7.0.0-preview.3.22178.4 672 4/13/2022
7.0.0-preview.2.22153.2 6,096 3/14/2022
7.0.0-preview.1.22109.13 360 2/17/2022
6.0.36 28,786 11/12/2024
6.0.35 20,387 10/8/2024
6.0.33 44,109 8/13/2024
6.0.32 18,222 7/9/2024
6.0.31 48,734 5/28/2024
6.0.30 23,146 5/14/2024
6.0.29 44,976 4/9/2024
6.0.28 74,885 3/12/2024
6.0.27 91,082 2/13/2024
6.0.26 122,999 1/9/2024
6.0.25 192,105 11/14/2023
6.0.24 86,000 10/24/2023
6.0.23 44,552 10/10/2023
6.0.22 121,503 9/12/2023
6.0.21 159,892 8/8/2023
6.0.20 82,310 7/11/2023
6.0.19 67,025 6/22/2023
6.0.18 92,410 6/13/2023
6.0.16 364,149 4/11/2023
6.0.15 122,322 3/14/2023
6.0.14 188,331 2/14/2023
6.0.13 227,439 1/10/2023
6.0.12 143,557 12/13/2022
6.0.11 428,953 11/7/2022
6.0.10 967,060 10/11/2022
6.0.9 369,579 9/13/2022
6.0.8 643,200 8/9/2022
6.0.7 919,287 7/12/2022
6.0.6 231,009 6/14/2022
6.0.5 674,836 5/10/2022
6.0.4 401,110 4/11/2022
6.0.3 457,920 3/8/2022
6.0.2 248,762 2/8/2022
6.0.1 853,290 12/14/2021
6.0.0 626,235 11/8/2021
6.0.0-rc.2.21480.10 5,019 10/12/2021
6.0.0-rc.1.21452.15 1,781 9/14/2021
6.0.0-preview.7.21378.6 4,291 8/10/2021
6.0.0-preview.6.21355.2 496 7/14/2021
6.0.0-preview.5.21301.17 505 6/15/2021
6.0.0-preview.4.21253.5 443 5/24/2021
6.0.0-preview.3.21201.13 1,807 4/8/2021
6.0.0-preview.2.21154.6 840 3/11/2021 6.0.0-preview.2.21154.6 is deprecated because it is no longer maintained.
6.0.0-preview.1.21103.6 789 2/12/2021 6.0.0-preview.1.21103.6 is deprecated because it is no longer maintained.
5.0.17 452,600 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 37,883 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 40,348 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 88,499 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 116,278 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 232,338 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 281,456 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 211,050 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 238,868 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 311,432 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 277,813 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 281,718 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 293,408 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 178,303 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 311,887 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 682,014 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 188,006 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 253,425 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.17 3,466 10/13/2020 5.0.0-rc.2.20475.17 is deprecated because it is no longer maintained.
5.0.0-rc.1.20451.17 4,098 9/14/2020 5.0.0-rc.1.20451.17 is deprecated because it is no longer maintained.
5.0.0-preview.8.20414.8 1,423 8/25/2020 5.0.0-preview.8.20414.8 is deprecated because it is no longer maintained.
5.0.0-preview.7.20365.19 1,131 7/21/2020 5.0.0-preview.7.20365.19 is deprecated because it is no longer maintained.
5.0.0-preview.6.20312.15 2,688 6/25/2020 5.0.0-preview.6.20312.15 is deprecated because it is no longer maintained.
5.0.0-preview.5.20279.2 449 6/10/2020 5.0.0-preview.5.20279.2 is deprecated because it is no longer maintained.
5.0.0-preview.4.20257.10 1,677 5/18/2020 5.0.0-preview.4.20257.10 is deprecated because it is no longer maintained.
5.0.0-preview.3.20215.14 758 4/23/2020 5.0.0-preview.3.20215.14 is deprecated because it is no longer maintained.
5.0.0-preview.2.20167.3 585 4/2/2020 5.0.0-preview.2.20167.3 is deprecated because it is no longer maintained.
5.0.0-preview.1.20124.5 528 3/16/2020 5.0.0-preview.1.20124.5 is deprecated because it is no longer maintained.
3.1.32 87,474 12/13/2022
3.1.31 6,109 11/8/2022
3.1.30 28,765 10/11/2022
3.1.29 10,778 9/13/2022
3.1.28 20,727 8/9/2022
3.1.27 18,744 7/12/2022
3.1.26 15,773 6/14/2022
3.1.25 14,812 5/10/2022
3.1.24 11,858 4/11/2022
3.1.23 32,888 3/8/2022
3.1.22 95,947 12/14/2021
3.1.21 155,633 11/7/2021
3.1.20 41,046 10/11/2021
3.1.19 35,800 9/14/2021
3.1.18 49,053 8/10/2021
3.1.17 90,938 7/13/2021
3.1.16 42,707 6/8/2021
3.1.15 87,345 5/11/2021
3.1.14 217,334 4/6/2021
3.1.13 74,809 3/9/2021
3.1.12 265,178 2/9/2021
3.1.11 42,707 1/12/2021
3.1.10 179,950 11/9/2020
3.1.9 307,337 10/13/2020
3.1.8 324,712 9/8/2020
3.1.7 510,160 8/11/2020
3.1.6 356,860 7/14/2020
3.1.5 458,838 6/9/2020
3.1.4 995,371 5/12/2020
3.1.3 396,881 3/24/2020
3.1.2 435,204 2/18/2020
3.1.1 210,073 1/14/2020
3.1.0 390,497 12/3/2019
3.1.0-preview3.19555.2 734 11/13/2019 3.1.0-preview3.19555.2 is deprecated because it is no longer maintained.
3.1.0-preview2.19528.8 908 11/1/2019 3.1.0-preview2.19528.8 is deprecated because it is no longer maintained.
3.1.0-preview1.19508.20 546 10/15/2019 3.1.0-preview1.19508.20 is deprecated because it is no longer maintained.
3.0.3 3,886 2/18/2020 3.0.3 is deprecated because it is no longer maintained.
3.0.2 5,636 1/14/2020 3.0.2 is deprecated because it is no longer maintained.
3.0.0 466,015 9/23/2019 3.0.0 is deprecated because it is no longer maintained.
3.0.0-rc1.19457.4 606 9/16/2019 3.0.0-rc1.19457.4 is deprecated because it is no longer maintained.
3.0.0-preview9.19424.4 1,768 9/4/2019 3.0.0-preview9.19424.4 is deprecated because it is no longer maintained.
3.0.0-preview8.19405.7 1,225 8/13/2019 3.0.0-preview8.19405.7 is deprecated because it is no longer maintained.
3.0.0-preview7.19365.7 1,722 7/23/2019 3.0.0-preview7.19365.7 is deprecated because it is no longer maintained.
3.0.0-preview6.19307.2 582 6/12/2019 3.0.0-preview6.19307.2 is deprecated because it is no longer maintained.
3.0.0-preview5-19227-01 1,440 5/6/2019 3.0.0-preview5-19227-01 is deprecated because it is no longer maintained.
3.0.0-preview4-19216-03 1,395 4/18/2019 3.0.0-preview4-19216-03 is deprecated because it is no longer maintained.
3.0.0-preview3-19153-02 1,444 3/6/2019 3.0.0-preview3-19153-02 is deprecated because it is no longer maintained.
3.0.0-preview-19075-0444 1,459 1/29/2019 3.0.0-preview-19075-0444 is deprecated because it is no longer maintained.
3.0.0-preview-18579-0056 1,578 12/3/2018 3.0.0-preview-18579-0056 is deprecated because it is no longer maintained.
2.2.5 901,542 5/14/2019 2.2.5 is deprecated because it is no longer maintained.
2.2.0 931,492 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 6,828 10/17/2018 2.2.0-preview3-35497 is deprecated because it is no longer maintained.