You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Simple [ASP.NET Core Data Protection](https://learn.microsoft.com/en-us/aspnet/core/security/data-protection/introduction?view=aspnetcore-8.0) for Umbraco CMS.
9
8
9
+
10
+
Simple [ASP.NET Core Data Protection](https://learn.microsoft.com/en-us/aspnet/core/security/data-protection/introduction) for Umbraco CMS.
11
+
10
12
Data protection keys are stored in the Umbraco database.
11
13
12
14
## Quick Start
13
15
14
-
### Install
15
-
16
-
```csharp
17
-
dotnetaddpackageUmbraco.Community.DataProtection
16
+
```csharp
17
+
dotnetaddpackageUmbraco.Community.DataProtection
18
+
```
19
+
20
+
```csharp title="Composer.cs"
21
+
usingUmbraco.Cms.Core.Composing;
22
+
usingUmbraco.Cms.Core.DependencyInjection;
23
+
24
+
namespaceProject.Web;
25
+
26
+
publicclassComposer : IComposer
27
+
{
28
+
publicvoidCompose(IUmbracoBuilderbuilder)
29
+
{
30
+
builder.AddUmbracoDataProtection();
31
+
}
32
+
}
18
33
```
19
34
20
-
### Configure
21
-
22
-
```csharp
23
-
usingUmbraco.Cms.Core.Composing;
24
-
usingUmbraco.Cms.Core.DependencyInjection;
25
35
26
-
namespaceProject.Web;
27
-
28
-
publicclassComposer : IComposer
29
-
{
30
-
publicvoidCompose(IUmbracoBuilderbuilder)
31
-
{
32
-
builder.AddUmbracoDataProtection();
33
-
}
34
-
}
35
-
```
36
36
37
37
## Contributing
38
38
39
-
Contributions to this package are most welcome! Please read the [Contributing Guidelines](https://github.com/jcdcdev/Umbraco.Community.DataProtection/blob/main/.github/CONTRIBUTING.md).
39
+
Contributions to this package are most welcome! Please visit the [Contributing](https://github.com/jcdcdev/Umbraco.Community.DataProtection/contribute) page.
Simple [ASP.NET Core Data Protection](https://learn.microsoft.com/en-us/aspnet/core/security/data-protection/introduction?view=aspnetcore-8.0) for Umbraco CMS.
10
9
10
+
11
+
Simple [ASP.NET Core Data Protection](https://learn.microsoft.com/en-us/aspnet/core/security/data-protection/introduction) for Umbraco CMS.
12
+
11
13
Data protection keys are stored in the Umbraco database.
12
14
13
15
## Quick Start
14
16
15
-
### Install
16
-
17
-
```csharp
18
-
dotnetaddpackageUmbraco.Community.DataProtection
17
+
```csharp
18
+
dotnetaddpackageUmbraco.Community.DataProtection
19
+
```
20
+
21
+
```csharp title="Composer.cs"
22
+
usingUmbraco.Cms.Core.Composing;
23
+
usingUmbraco.Cms.Core.DependencyInjection;
24
+
25
+
namespaceProject.Web;
26
+
27
+
publicclassComposer : IComposer
28
+
{
29
+
publicvoidCompose(IUmbracoBuilderbuilder)
30
+
{
31
+
builder.AddUmbracoDataProtection();
32
+
}
33
+
}
19
34
```
20
35
21
-
### Configure
22
36
23
-
```csharp
24
-
usingUmbraco.Cms.Core.Composing;
25
-
usingUmbraco.Cms.Core.DependencyInjection;
37
+
## Contributing
26
38
27
-
namespaceProject.Web;
39
+
Contributions to this package are most welcome! Please visit the [Contributing](https://github.com/jcdcdev/Umbraco.Community.DataProtection/contribute) page.
Contributions to this package are most welcome! Please read the [Contributing Guidelines](https://github.com/jcdcdev/Umbraco.Community.DataProtection/blob/main/.github/CONTRIBUTING.md).
0 commit comments