Fix package metadata
This commit is contained in:
parent
f2a42d1f71
commit
7cace9a7fe
|
|
@ -4,6 +4,7 @@ AppVeyor: [](https://travis-ci.org/aspnet/DataProtection)
|
||||
|
||||
Data Protection APIs
|
||||
Data Protection APIs for protecting and unprotecting data.
|
||||
|
||||
|
||||
This project is part of ASP.NET Core. You can find documentation for Data Protection in the [ASP.NET Core Documentation](http://docs.asp.net/en/latest/security/data-protection/index.html). You can find samples, documentation and getting started instructions for ASP.NET Core at the [Home](https://github.com/aspnet/home) repo.
|
||||
|
|
|
|||
|
|
@ -1,13 +1,17 @@
|
|||
{
|
||||
"version": "1.0.0-*",
|
||||
"description": "Infrastructure for ASP.NET 5 cryptographic packages. Developers should not reference this package.",
|
||||
"description": "Infrastructure for ASP.NET Core cryptographic packages. Applications and libraries should not reference this package directly.",
|
||||
"tags": [
|
||||
"aspnetcore",
|
||||
"dataprotection"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/aspnet/dataprotection"
|
||||
},
|
||||
"dependencies": {},
|
||||
"dependencies": { },
|
||||
"frameworks": {
|
||||
"net451": {},
|
||||
"net451": { },
|
||||
"netstandard1.3": {
|
||||
"dependencies": {
|
||||
"System.Diagnostics.Debug": "4.0.11-*",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,10 @@
|
|||
{
|
||||
"version": "1.0.0-*",
|
||||
"description": "ASP.NET 5 utilities for key derivation.",
|
||||
"description": "ASP.NET Core utilities for key derivation.",
|
||||
"tags": [
|
||||
"aspnetcore",
|
||||
"dataprotection"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/aspnet/dataprotection"
|
||||
|
|
@ -9,7 +13,7 @@
|
|||
"Microsoft.AspNetCore.Cryptography.Internal": "1.0.0-*"
|
||||
},
|
||||
"frameworks": {
|
||||
"net451": {},
|
||||
"net451": { },
|
||||
"netstandard1.3": {
|
||||
"dependencies": {
|
||||
"System.Runtime.Extensions": "4.1.0-*",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,10 @@
|
|||
{
|
||||
"version": "1.0.0-*",
|
||||
"description": "Contains the core IDataProtector and IDataProtectionProvider abstractions for ASP.NET 5 Data Protection.",
|
||||
"description": "ASP.NET Core data protection abstractions.\r\nCommonly used types:\r\nMicrosoft.AspNetCore.DataProtection.IDataProtectionProvider\r\nMicrosoft.AspNetCore.DataProtection.IDataProtector",
|
||||
"tags": [
|
||||
"aspnetcore",
|
||||
"dataprotection"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/aspnet/dataprotection"
|
||||
|
|
@ -13,7 +17,7 @@
|
|||
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-*"
|
||||
},
|
||||
"frameworks": {
|
||||
"net451": {},
|
||||
"net451": { },
|
||||
"netstandard1.3": {
|
||||
"dependencies": {
|
||||
"System.ComponentModel": "4.0.1-*",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,10 @@
|
|||
{
|
||||
"version": "1.0.0-*",
|
||||
"description": "Additional APIs for ASP.NET 5 data protection.",
|
||||
"description": "Additional APIs for ASP.NET Core data protection.",
|
||||
"tags": [
|
||||
"aspnetcore",
|
||||
"dataprotection"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/aspnet/dataprotection"
|
||||
|
|
@ -14,7 +18,7 @@
|
|||
"Microsoft.Extensions.DependencyInjection": "1.0.0-*"
|
||||
},
|
||||
"frameworks": {
|
||||
"net451": {},
|
||||
"net451": { },
|
||||
"netstandard1.3": {
|
||||
"imports": [
|
||||
"dotnet5.4"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,17 @@
|
|||
{
|
||||
"version": "1.0.0-*",
|
||||
"description": "ASP.NET 5 Data Protection shared code.",
|
||||
"description": "ASP.NET Core data protection shared code.",
|
||||
"tags": [
|
||||
"aspnetcore",
|
||||
"dataprotection"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/aspnet/dataprotection"
|
||||
},
|
||||
"dependencies": {},
|
||||
"dependencies": { },
|
||||
"frameworks": {
|
||||
"net451": {},
|
||||
"net451": { },
|
||||
"netstandard1.3": {
|
||||
"dependencies": {
|
||||
"System.Security.Cryptography.Primitives": "4.0.0-*",
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ using System.Security.Cryptography;
|
|||
namespace Microsoft.AspNetCore.DataProtection.SystemWeb
|
||||
{
|
||||
/// <summary>
|
||||
/// A <see cref="DataProtector"/> that can be used by ASP.NET 4.x to interact with ASP.NET 5's
|
||||
/// A <see cref="DataProtector"/> that can be used by ASP.NET 4.x to interact with ASP.NET Core's
|
||||
/// DataProtection stack. This type is for internal use only and shouldn't be directly used by
|
||||
/// developers.
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ using Microsoft.Extensions.DependencyInjection;
|
|||
namespace Microsoft.AspNetCore.DataProtection.SystemWeb
|
||||
{
|
||||
/// <summary>
|
||||
/// Allows controlling the configuration of the ASP.NET 5 Data Protection system.
|
||||
/// Allows controlling the configuration of the ASP.NET Core Data Protection system.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Developers should not call these APIs directly. Instead, developers should subclass
|
||||
|
|
|
|||
|
|
@ -1,6 +1,11 @@
|
|||
{
|
||||
"version": "1.0.0-*",
|
||||
"description": "A component to allow the ASP.NET 5 DataProtection stack to work with the ASP.NET 4.x <machineKey> element.",
|
||||
"description": "A component to allow the ASP.NET Core data protection stack to work with the ASP.NET 4.x <machineKey> element.",
|
||||
"tags": [
|
||||
"aspnet",
|
||||
"aspnetcore",
|
||||
"dataprotection"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/aspnet/dataprotection"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<configuration>
|
||||
<appSettings>
|
||||
<!--
|
||||
If you want to customize the behavior of the ASP.NET 5 Data Protection stack, set the
|
||||
If you want to customize the behavior of the ASP.NET Core Data Protection stack, set the
|
||||
"aspnet:dataProtectionStartupType" switch below to be the fully-qualified name of a
|
||||
type which subclasses Microsoft.AspNetCore.DataProtection.SystemWeb.DataProtectionStartup.
|
||||
-->
|
||||
|
|
|
|||
|
|
@ -1,6 +1,10 @@
|
|||
{
|
||||
"version": "1.0.0-*",
|
||||
"description": "ASP.NET 5 logic to protect and unprotect data, similar to DPAPI.",
|
||||
"description": "ASP.NET Core logic to protect and unprotect data, similar to DPAPI.",
|
||||
"tags": [
|
||||
"aspnetcore",
|
||||
"dataprotection"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/aspnet/dataprotection"
|
||||
|
|
|
|||
Loading…
Reference in New Issue