Fix package metadata
This commit is contained in:
parent
327751690d
commit
9e7387a941
|
|
@ -1,6 +1,6 @@
|
||||||
ASP.NET Basic Middleware Components
|
ASP.NET Core Basic Middleware Components
|
||||||
========
|
========
|
||||||
|
|
||||||
This repo hosts a collection of basic middleware components for ASP.NET 5.
|
This repo hosts a collection of basic middleware components for ASP.NET Core.
|
||||||
|
|
||||||
This project is part of ASP.NET 5. You can find samples, documentation and getting started instructions for ASP.NET 5 at the [Home](https://github.com/aspnet/home) repo.
|
This project is part of ASP.NET Core. You can find samples, documentation and getting started instructions for ASP.NET Core at the [Home](https://github.com/aspnet/home) repo.
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,12 @@
|
||||||
],
|
],
|
||||||
"xmlDoc": true
|
"xmlDoc": true
|
||||||
},
|
},
|
||||||
"description": "ASP.NET middleware for buffering response bodies.",
|
"description": "ASP.NET Core middleware for buffering response bodies.",
|
||||||
|
"tags": [
|
||||||
|
"aspnetcore",
|
||||||
|
"buffer",
|
||||||
|
"buffering"
|
||||||
|
],
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/aspnet/basicmiddleware"
|
"url": "git://github.com/aspnet/basicmiddleware"
|
||||||
|
|
@ -17,7 +22,7 @@
|
||||||
"Microsoft.AspNetCore.Http.Abstractions": "1.0.0-*"
|
"Microsoft.AspNetCore.Http.Abstractions": "1.0.0-*"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net451": {},
|
"net451": { },
|
||||||
"netstandard1.3": {
|
"netstandard1.3": {
|
||||||
"imports": [
|
"imports": [
|
||||||
"dotnet5.4"
|
"dotnet5.4"
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,13 @@
|
||||||
],
|
],
|
||||||
"xmlDoc": true
|
"xmlDoc": true
|
||||||
},
|
},
|
||||||
"description": "XForward and Method override middlewares for ASP.NET",
|
"description": "ASP.NET Core basic middleware for:\r\nX-Forwarded-* headers to forward headers from a proxy.\r\nHTTP method override header.",
|
||||||
|
"tags": [
|
||||||
|
"aspnetcore",
|
||||||
|
"proxy",
|
||||||
|
"headers",
|
||||||
|
"xforwarded"
|
||||||
|
],
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/aspnet/basicmiddleware"
|
"url": "git://github.com/aspnet/basicmiddleware"
|
||||||
|
|
@ -19,7 +25,7 @@
|
||||||
"Microsoft.Extensions.Options": "1.0.0-*"
|
"Microsoft.Extensions.Options": "1.0.0-*"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net451": {},
|
"net451": { },
|
||||||
"netstandard1.3": {
|
"netstandard1.3": {
|
||||||
"imports": [
|
"imports": [
|
||||||
"dotnet5.4"
|
"dotnet5.4"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue