Skip to content
This repository was archived by the owner on Nov 20, 2018. It is now read-only.

Commit 78a3fc9

Browse files
committed
Fix package metadata
1 parent 80813f7 commit 78a3fc9

File tree

9 files changed

+40
-17
lines changed

9 files changed

+40
-17
lines changed

src/Microsoft.AspNetCore.Http.Abstractions/project.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"version": "1.0.0-*",
3-
"description": "ASP.NET 5 HTTP object model. HttpContext and family.",
3+
"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",
4+
"tags": [
5+
"aspnetcore"
6+
],
47
"repository": {
58
"type": "git",
69
"url": "git://github.com/aspnet/httpabstractions"

src/Microsoft.AspNetCore.Http.Extensions/project.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"version": "1.0.0-*",
3-
"description": "ASP.NET 5 common extension methods for HTTP abstractions and IApplicationBuilder.",
3+
"description": "ASP.NET Core common extension methods for HTTP abstractions, HTTP headers, HTTP request/response, and session state.",
4+
"tags": [
5+
"aspnetcore"
6+
],
47
"repository": {
58
"type": "git",
69
"url": "git://github.com/aspnet/httpabstractions"
@@ -20,7 +23,7 @@
2023
"System.Buffers": "4.0.0-*"
2124
},
2225
"frameworks": {
23-
"net451": {},
26+
"net451": { },
2427
"netstandard1.3": {
2528
"dependencies": {
2629
"System.IO.FileSystem": "4.0.1-*"

src/Microsoft.AspNetCore.Http.Features/project.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"version": "1.0.0-*",
3-
"description": "ASP.NET 5 HTTP feature interface definitions.",
3+
"description": "ASP.NET Core HTTP feature interface definitions.",
4+
"tags": [
5+
"aspnetcore"
6+
],
47
"repository": {
58
"type": "git",
69
"url": "git://github.com/aspnet/httpabstractions"
@@ -17,7 +20,7 @@
1720
"Microsoft.Extensions.Primitives": "1.0.0-*"
1821
},
1922
"frameworks": {
20-
"net451": {},
23+
"net451": { },
2124
"netstandard1.3": {
2225
"dependencies": {
2326
"System.Collections": "4.0.11-*",

src/Microsoft.AspNetCore.Http/project.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"version": "1.0.0-*",
3-
"description": "ASP.NET 5 HTTP feature implementations.",
3+
"description": "ASP.NET Core default HTTP feature implementations.",
4+
"tags": [
5+
"aspnetcore"
6+
],
47
"repository": {
58
"type": "git",
69
"url": "git://github.com/aspnet/httpabstractions"
@@ -21,7 +24,7 @@
2124
"Microsoft.Net.Http.Headers": "1.0.0-*"
2225
},
2326
"frameworks": {
24-
"net451": {},
27+
"net451": { },
2528
"netstandard1.3": {
2629
"dependencies": {
2730
"System.Threading": "4.0.11-*"

src/Microsoft.AspNetCore.Owin/WebSockets/OwinWebSocketAcceptAdapter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ namespace Microsoft.AspNetCore.Owin
2828
>;
2929

3030
/// <summary>
31-
/// This adapts the OWIN WebSocket accept flow to match the ASP.NET WebSocket Accept flow.
32-
/// This enables ASP.NET components to use WebSockets on OWIN based servers.
31+
/// This adapts the OWIN WebSocket accept flow to match the ASP.NET Core WebSocket Accept flow.
32+
/// This enables ASP.NET Core components to use WebSockets on OWIN based servers.
3333
/// </summary>
3434
public class OwinWebSocketAcceptAdapter
3535
{

src/Microsoft.AspNetCore.Owin/WebSockets/WebSocketAcceptAdapter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ namespace Microsoft.AspNetCore.Owin
2929
>;
3030

3131
/// <summary>
32-
/// This adapts the ASP.NET WebSocket Accept flow to match the OWIN WebSocket accept flow.
33-
/// This enables OWIN based components to use WebSockets on ASP.NET servers.
32+
/// This adapts the ASP.NET Core WebSocket Accept flow to match the OWIN WebSocket accept flow.
33+
/// This enables OWIN based components to use WebSockets on ASP.NET Core servers.
3434
/// </summary>
3535
public class WebSocketAcceptAdapter
3636
{

src/Microsoft.AspNetCore.Owin/project.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
22
"version": "1.0.0-*",
3-
"description": "ASP.NET 5 component for running OWIN middleware.",
3+
"description": "ASP.NET Core component for running OWIN middleware in an ASP.NET Core application.",
4+
"tags": [
5+
"aspnetcore",
6+
"katana",
7+
"owin"
8+
],
49
"repository": {
510
"type": "git",
611
"url": "git://github.com/aspnet/httpabstractions"
@@ -17,7 +22,7 @@
1722
"Microsoft.AspNetCore.Http": "1.0.0-*"
1823
},
1924
"frameworks": {
20-
"net451": {},
25+
"net451": { },
2126
"netstandard1.3": {
2227
"imports": [
2328
"dotnet5.4"

src/Microsoft.AspNetCore.WebUtilities/project.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"version": "1.0.0-*",
3-
"description": "ASP.NET 5 common helper methods.",
3+
"description": "ASP.NET Core utilities, such as for working with forms, multipart messages, and query strings.",
4+
"tags": [
5+
"aspnetcore"
6+
],
47
"repository": {
58
"type": "git",
69
"url": "git://github.com/aspnet/httpabstractions"

src/Microsoft.Net.Http.Headers/project.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"version": "1.0.0-*",
3-
"description": "ASP.NET 5 HTTP header implementations.",
3+
"description": "ASP.NET Core HTTP header parser implementations.",
4+
"tags": [
5+
"aspnetcore"
6+
],
47
"repository": {
58
"type": "git",
69
"url": "git://github.com/aspnet/httpabstractions"
@@ -13,7 +16,7 @@
1316
],
1417
"xmlDoc": true
1518
},
16-
"dependencies": {},
19+
"dependencies": { },
1720
"frameworks": {
1821
"netstandard1.0": {
1922
"dependencies": {
@@ -23,7 +26,7 @@
2326
"System.Linq": "4.1.0-*",
2427
"System.Resources.ResourceManager": "4.0.1-*",
2528
"System.Runtime.Extensions": "4.1.0-*",
26-
"System.Text.Encoding": "4.0.11-*",
29+
"System.Text.Encoding": "4.0.11-*"
2730
},
2831
"imports": [
2932
"dotnet5.1"

0 commit comments

Comments
 (0)