Fix package metadata
This commit is contained in:
parent
80813f7c1e
commit
78a3fc91d3
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
@ -20,7 +23,7 @@
|
|||
"System.Buffers": "4.0.0-*"
|
||||
},
|
||||
"frameworks": {
|
||||
"net451": {},
|
||||
"net451": { },
|
||||
"netstandard1.3": {
|
||||
"dependencies": {
|
||||
"System.IO.FileSystem": "4.0.1-*"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
@ -17,7 +20,7 @@
|
|||
"Microsoft.Extensions.Primitives": "1.0.0-*"
|
||||
},
|
||||
"frameworks": {
|
||||
"net451": {},
|
||||
"net451": { },
|
||||
"netstandard1.3": {
|
||||
"dependencies": {
|
||||
"System.Collections": "4.0.11-*",
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
@ -21,7 +24,7 @@
|
|||
"Microsoft.Net.Http.Headers": "1.0.0-*"
|
||||
},
|
||||
"frameworks": {
|
||||
"net451": {},
|
||||
"net451": { },
|
||||
"netstandard1.3": {
|
||||
"dependencies": {
|
||||
"System.Threading": "4.0.11-*"
|
||||
|
|
|
|||
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
@ -17,7 +22,7 @@
|
|||
"Microsoft.AspNetCore.Http": "1.0.0-*"
|
||||
},
|
||||
"frameworks": {
|
||||
"net451": {},
|
||||
"net451": { },
|
||||
"netstandard1.3": {
|
||||
"imports": [
|
||||
"dotnet5.4"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
@ -13,7 +16,7 @@
|
|||
],
|
||||
"xmlDoc": true
|
||||
},
|
||||
"dependencies": {},
|
||||
"dependencies": { },
|
||||
"frameworks": {
|
||||
"netstandard1.0": {
|
||||
"dependencies": {
|
||||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue