From 7cace9a7fe8ded736d39fc6d7a6d0c175d48c4d7 Mon Sep 17 00:00:00 2001 From: Eilon Lipton Date: Thu, 24 Mar 2016 23:50:57 -0700 Subject: [PATCH] Fix package metadata --- README.md | 3 ++- .../project.json | 10 +++++++--- .../project.json | 8 ++++++-- .../project.json | 8 ++++++-- .../project.json | 8 ++++++-- .../project.json | 10 +++++++--- .../CompatibilityDataProtector.cs | 2 +- .../DataProtectionStartup.cs | 2 +- .../project.json | 7 ++++++- .../web.config.transform | 2 +- src/Microsoft.AspNetCore.DataProtection/project.json | 6 +++++- 11 files changed, 48 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 1560deffee..622d2e229d 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ AppVeyor: [![AppVeyor](https://ci.appveyor.com/api/projects/status/4mki61bux5vby Travis: [![Travis](https://travis-ci.org/aspnet/DataProtection.svg?branch=dev)](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. diff --git a/src/Microsoft.AspNetCore.Cryptography.Internal/project.json b/src/Microsoft.AspNetCore.Cryptography.Internal/project.json index 68e7e1fb10..1399e0f8c2 100644 --- a/src/Microsoft.AspNetCore.Cryptography.Internal/project.json +++ b/src/Microsoft.AspNetCore.Cryptography.Internal/project.json @@ -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-*", diff --git a/src/Microsoft.AspNetCore.Cryptography.KeyDerivation/project.json b/src/Microsoft.AspNetCore.Cryptography.KeyDerivation/project.json index be60e95200..6c6a70466d 100644 --- a/src/Microsoft.AspNetCore.Cryptography.KeyDerivation/project.json +++ b/src/Microsoft.AspNetCore.Cryptography.KeyDerivation/project.json @@ -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-*", diff --git a/src/Microsoft.AspNetCore.DataProtection.Abstractions/project.json b/src/Microsoft.AspNetCore.DataProtection.Abstractions/project.json index eb8ade7d18..ff8a8bac00 100644 --- a/src/Microsoft.AspNetCore.DataProtection.Abstractions/project.json +++ b/src/Microsoft.AspNetCore.DataProtection.Abstractions/project.json @@ -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-*", diff --git a/src/Microsoft.AspNetCore.DataProtection.Extensions/project.json b/src/Microsoft.AspNetCore.DataProtection.Extensions/project.json index 14d7784c55..4911d3a0d5 100644 --- a/src/Microsoft.AspNetCore.DataProtection.Extensions/project.json +++ b/src/Microsoft.AspNetCore.DataProtection.Extensions/project.json @@ -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" diff --git a/src/Microsoft.AspNetCore.DataProtection.Sources/project.json b/src/Microsoft.AspNetCore.DataProtection.Sources/project.json index b205184280..2f7b3bf22f 100644 --- a/src/Microsoft.AspNetCore.DataProtection.Sources/project.json +++ b/src/Microsoft.AspNetCore.DataProtection.Sources/project.json @@ -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-*", diff --git a/src/Microsoft.AspNetCore.DataProtection.SystemWeb/CompatibilityDataProtector.cs b/src/Microsoft.AspNetCore.DataProtection.SystemWeb/CompatibilityDataProtector.cs index f6d238152e..739afe83bd 100644 --- a/src/Microsoft.AspNetCore.DataProtection.SystemWeb/CompatibilityDataProtector.cs +++ b/src/Microsoft.AspNetCore.DataProtection.SystemWeb/CompatibilityDataProtector.cs @@ -9,7 +9,7 @@ using System.Security.Cryptography; namespace Microsoft.AspNetCore.DataProtection.SystemWeb { /// - /// A that can be used by ASP.NET 4.x to interact with ASP.NET 5's + /// A 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. /// diff --git a/src/Microsoft.AspNetCore.DataProtection.SystemWeb/DataProtectionStartup.cs b/src/Microsoft.AspNetCore.DataProtection.SystemWeb/DataProtectionStartup.cs index 80904b9b75..f3760df207 100644 --- a/src/Microsoft.AspNetCore.DataProtection.SystemWeb/DataProtectionStartup.cs +++ b/src/Microsoft.AspNetCore.DataProtection.SystemWeb/DataProtectionStartup.cs @@ -11,7 +11,7 @@ using Microsoft.Extensions.DependencyInjection; namespace Microsoft.AspNetCore.DataProtection.SystemWeb { /// - /// Allows controlling the configuration of the ASP.NET 5 Data Protection system. + /// Allows controlling the configuration of the ASP.NET Core Data Protection system. /// /// /// Developers should not call these APIs directly. Instead, developers should subclass diff --git a/src/Microsoft.AspNetCore.DataProtection.SystemWeb/project.json b/src/Microsoft.AspNetCore.DataProtection.SystemWeb/project.json index e2ecac0519..415a9ad9de 100644 --- a/src/Microsoft.AspNetCore.DataProtection.SystemWeb/project.json +++ b/src/Microsoft.AspNetCore.DataProtection.SystemWeb/project.json @@ -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 element.", + "description": "A component to allow the ASP.NET Core data protection stack to work with the ASP.NET 4.x element.", + "tags": [ + "aspnet", + "aspnetcore", + "dataprotection" + ], "repository": { "type": "git", "url": "git://github.com/aspnet/dataprotection" diff --git a/src/Microsoft.AspNetCore.DataProtection.SystemWeb/web.config.transform b/src/Microsoft.AspNetCore.DataProtection.SystemWeb/web.config.transform index 9ac2268152..8d5a699252 100644 --- a/src/Microsoft.AspNetCore.DataProtection.SystemWeb/web.config.transform +++ b/src/Microsoft.AspNetCore.DataProtection.SystemWeb/web.config.transform @@ -2,7 +2,7 @@ diff --git a/src/Microsoft.AspNetCore.DataProtection/project.json b/src/Microsoft.AspNetCore.DataProtection/project.json index aeb0427585..1d9ff4b2e5 100644 --- a/src/Microsoft.AspNetCore.DataProtection/project.json +++ b/src/Microsoft.AspNetCore.DataProtection/project.json @@ -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"