Fix package metadata

This commit is contained in:
Eilon Lipton 2016-03-26 22:42:17 -07:00
parent 80813f7c1e
commit 78a3fc91d3
9 changed files with 40 additions and 17 deletions

View File

@ -1,6 +1,9 @@
{
"version": "1.0.0-*",
"description": "ASP.NET 5 HTTP object model. HttpContext and family.",
"description": "ASP.NET Core HTTP object model for HTTP requests and responses and also common extension methods for registering middleware in an IApplicationBuilder.\r\nCommonly used types:\r\nMicrosoft.AspNetCore.Builder.IApplicationBuilder\r\nMicrosoft.AspNetCore.Http.HttpContext\r\nMicrosoft.AspNetCore.Http.HttpRequest\r\nMicrosoft.AspNetCore.Http.HttpResponse",
"tags": [
"aspnetcore"
],
"repository": {
"type": "git",
"url": "git://github.com/aspnet/httpabstractions"

View File

@ -1,6 +1,9 @@
{
"version": "1.0.0-*",
"description": "ASP.NET 5 common extension methods for HTTP abstractions and IApplicationBuilder.",
"description": "ASP.NET Core common extension methods for HTTP abstractions, HTTP headers, HTTP request/response, and session state.",
"tags": [
"aspnetcore"
],
"repository": {
"type": "git",
"url": "git://github.com/aspnet/httpabstractions"

View File

@ -1,6 +1,9 @@
{
"version": "1.0.0-*",
"description": "ASP.NET 5 HTTP feature interface definitions.",
"description": "ASP.NET Core HTTP feature interface definitions.",
"tags": [
"aspnetcore"
],
"repository": {
"type": "git",
"url": "git://github.com/aspnet/httpabstractions"

View File

@ -1,6 +1,9 @@
{
"version": "1.0.0-*",
"description": "ASP.NET 5 HTTP feature implementations.",
"description": "ASP.NET Core default HTTP feature implementations.",
"tags": [
"aspnetcore"
],
"repository": {
"type": "git",
"url": "git://github.com/aspnet/httpabstractions"

View File

@ -28,8 +28,8 @@ namespace Microsoft.AspNetCore.Owin
>;
/// <summary>
/// This adapts the OWIN WebSocket accept flow to match the ASP.NET WebSocket Accept flow.
/// This enables ASP.NET components to use WebSockets on OWIN based servers.
/// This adapts the OWIN WebSocket accept flow to match the ASP.NET Core WebSocket Accept flow.
/// This enables ASP.NET Core components to use WebSockets on OWIN based servers.
/// </summary>
public class OwinWebSocketAcceptAdapter
{

View File

@ -29,8 +29,8 @@ namespace Microsoft.AspNetCore.Owin
>;
/// <summary>
/// This adapts the ASP.NET WebSocket Accept flow to match the OWIN WebSocket accept flow.
/// This enables OWIN based components to use WebSockets on ASP.NET servers.
/// This adapts the ASP.NET Core WebSocket Accept flow to match the OWIN WebSocket accept flow.
/// This enables OWIN based components to use WebSockets on ASP.NET Core servers.
/// </summary>
public class WebSocketAcceptAdapter
{

View File

@ -1,6 +1,11 @@
{
"version": "1.0.0-*",
"description": "ASP.NET 5 component for running OWIN middleware.",
"description": "ASP.NET Core component for running OWIN middleware in an ASP.NET Core application.",
"tags": [
"aspnetcore",
"katana",
"owin"
],
"repository": {
"type": "git",
"url": "git://github.com/aspnet/httpabstractions"

View File

@ -1,6 +1,9 @@
{
"version": "1.0.0-*",
"description": "ASP.NET 5 common helper methods.",
"description": "ASP.NET Core utilities, such as for working with forms, multipart messages, and query strings.",
"tags": [
"aspnetcore"
],
"repository": {
"type": "git",
"url": "git://github.com/aspnet/httpabstractions"

View File

@ -1,6 +1,9 @@
{
"version": "1.0.0-*",
"description": "ASP.NET 5 HTTP header implementations.",
"description": "ASP.NET Core HTTP header parser implementations.",
"tags": [
"aspnetcore"
],
"repository": {
"type": "git",
"url": "git://github.com/aspnet/httpabstractions"
@ -23,7 +26,7 @@
"System.Linq": "4.1.0-*",
"System.Resources.ResourceManager": "4.0.1-*",
"System.Runtime.Extensions": "4.1.0-*",
"System.Text.Encoding": "4.0.11-*",
"System.Text.Encoding": "4.0.11-*"
},
"imports": [
"dotnet5.1"