AspNetCore.DataProtection.ServiceFabric.Common 1.0.5

dotnet add package AspNetCore.DataProtection.ServiceFabric.Common --version 1.0.5
NuGet\Install-Package AspNetCore.DataProtection.ServiceFabric.Common -Version 1.0.5
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="AspNetCore.DataProtection.ServiceFabric.Common" Version="1.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AspNetCore.DataProtection.ServiceFabric.Common --version 1.0.5
#r "nuget: AspNetCore.DataProtection.ServiceFabric.Common, 1.0.5"
#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.
// Install AspNetCore.DataProtection.ServiceFabric.Common as a Cake Addin
#addin nuget:?package=AspNetCore.DataProtection.ServiceFabric.Common&version=1.0.5

// Install AspNetCore.DataProtection.ServiceFabric.Common as a Cake Tool
#tool nuget:?package=AspNetCore.DataProtection.ServiceFabric.Common&version=1.0.5

ASP.NET Core DataProtection for Service Fabric

A ready to use ASP.NET Core DataProtection Service Fabric microservice, used for protecting and unprotecting sensitive data such as tokens and cookies in a multi-node & load balanced environment.

Getting started - Installing the DataProtection microservice

Open your existing Service Fabric .NET Core solution in Visual Studio 2017, then in Solution Explorer right-click on the solution node and select the Manage Nuget Packages for Solution menu. Search for the AspNetCore.DataProtection.ServiceFabric package, make sure to check the master Service Fabric application project and click the Install button. After the installation completes, in the ApplicationPackageRoot there will be a new AspNetCore.DataProtection.ServiceFabricPkg folder.

The AspNetCore.DataProtection.ServiceFabric microservice can also be installed via the Package Manager Console:

Install-Package AspNetCore.DataProtection.ServiceFabric

Before you publish to Service Fabric though, make sure to check the ApplicationManifest.xml file, setting the AspNetCore.DataProtection.ServiceFabric TargetReplicaSetSize and MinReplicaSetSize relevant for your cluster or development environment. Note the PartitionCount and InstanceCount should both be set to 1.

Using the DataProtection microservice in your ASP.NET Core projects

To use the AspNetCore.DataProtection.ServiceFabric microservice in your ASP.NET Core projects, simply install the AspNetCore.DataProtection.ServiceFabric.Common NuGet library:

Install-Package AspNetCore.DataProtection.ServiceFabric.Common

In the ConfigureServices method of your Startup.cs, don't forget to add:

// Add Service Fabric DataProtection
services.AddDataProtection()
    .SetApplicationName("ServiceFabric-DataProtection-Your-App-Name")
    .PersistKeysToServiceFabric(dataProtectionServiceUri);

Where dataProtectionServiceUri is the uri to your instance of the AspNetCore.DataProtection.ServiceFabric microservice, for example "fabric:/ServiceFabric.DataProtection/DataProtectionService". You'll also need these two using statements:

using AspNetCore.DataProtection.ServiceFabric.Extensions;
using Microsoft.AspNetCore.DataProtection;

You can find documentation for .NET Core Data Protection in the ASP.NET Core Documentation.

The AspNetCore.DataProtection.ServiceFabric project is packaged using Microsoft's SFNuGet, which allows you to package and share Azure Service Fabric services as NuGet packages. For more info head over to SFNuGet.

Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  net48 was computed.  net481 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.5 1,177 2/20/2019
1.0.4 1,013 6/3/2018
1.0.3 1,570 12/11/2017

Release set to 1.0.5 as this library is meant to be used with AspNetCore.DataProtection.ServiceFabric version 1.0.5