Update metadata

This commit is contained in:
John Luo 2016-05-27 12:04:15 -07:00
parent eec279be17
commit 4fccbeebdc
8 changed files with 44 additions and 19 deletions

View File

@ -8,12 +8,16 @@
], ],
"xmlDoc": true "xmlDoc": true
}, },
"description": "ASP.NET 5 Hosting abstractions.", "description": "ASP.NET Core hosting and startup abstractions for web applications.",
"packOptions": { "packOptions": {
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git://github.com/aspnet/hosting" "url": "git://github.com/aspnet/hosting"
} },
"tags": [
"aspnetcore",
"hosting"
]
}, },
"dependencies": { "dependencies": {
"Microsoft.AspNetCore.Http.Abstractions": "1.0.0-*", "Microsoft.AspNetCore.Http.Abstractions": "1.0.0-*",

View File

@ -8,12 +8,16 @@
], ],
"xmlDoc": true "xmlDoc": true
}, },
"description": "ASP.NET 5 Hosting server abstractions.", "description": "ASP.NET Core hosting server abstractions for web applications.",
"packOptions": { "packOptions": {
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git://github.com/aspnet/hosting" "url": "git://github.com/aspnet/hosting"
} },
"tags": [
"aspnetcore",
"hosting"
]
}, },
"dependencies": { "dependencies": {
"Microsoft.AspNetCore.Http.Features": "1.0.0-*", "Microsoft.AspNetCore.Http.Features": "1.0.0-*",

View File

@ -7,7 +7,7 @@ using Microsoft.Extensions.DependencyInjection;
namespace Microsoft.AspNetCore.Hosting.WindowsServices namespace Microsoft.AspNetCore.Hosting.WindowsServices
{ {
/// <summary> /// <summary>
/// Provides an implementation of a Windows service that hosts ASP.NET. /// Provides an implementation of a Windows service that hosts ASP.NET Core.
/// </summary> /// </summary>
public class WebHostService : ServiceBase public class WebHostService : ServiceBase
{ {
@ -53,23 +53,23 @@ namespace Microsoft.AspNetCore.Hosting.WindowsServices
} }
/// <summary> /// <summary>
/// Executes before ASP.NET starts. /// Executes before ASP.NET Core starts.
/// </summary> /// </summary>
/// <param name="args">The command line arguments passed to the service.</param> /// <param name="args">The command line arguments passed to the service.</param>
protected virtual void OnStarting(string[] args) { } protected virtual void OnStarting(string[] args) { }
/// <summary> /// <summary>
/// Executes after ASP.NET starts. /// Executes after ASP.NET Core starts.
/// </summary> /// </summary>
protected virtual void OnStarted() { } protected virtual void OnStarted() { }
/// <summary> /// <summary>
/// Executes before ASP.NET shuts down. /// Executes before ASP.NET Core shuts down.
/// </summary> /// </summary>
protected virtual void OnStopping() { } protected virtual void OnStopping() { }
/// <summary> /// <summary>
/// Executes after ASP.NET shuts down. /// Executes after ASP.NET Core shuts down.
/// </summary> /// </summary>
protected virtual void OnStopped() { } protected virtual void OnStopped() { }
} }

View File

@ -1,11 +1,15 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"description": "ASP.NET 5 core hosting infrastructure and startup logic for web applications running within a Windows service.", "description": "ASP.NET Core hosting infrastructure and startup logic for web applications running within a Windows service.",
"packOptions": { "packOptions": {
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git://github.com/aspnet/hosting" "url": "git://github.com/aspnet/hosting"
} },
"tags": [
"aspnetcore",
"hosting"
]
}, },
"buildOptions": { "buildOptions": {
"warningsAsErrors": true, "warningsAsErrors": true,

View File

@ -1,11 +1,15 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"description": "ASP.NET 5 core hosting infrastructure and startup logic for web applications.", "description": "ASP.NET Core hosting infrastructure and startup logic for web applications.",
"packOptions": { "packOptions": {
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git://github.com/aspnet/hosting" "url": "git://github.com/aspnet/hosting"
} },
"tags": [
"aspnetcore",
"hosting"
]
}, },
"buildOptions": { "buildOptions": {
"warningsAsErrors": true, "warningsAsErrors": true,

View File

@ -13,12 +13,16 @@
"Deployers/RemoteWindowsDeployer/StopServer.ps1" "Deployers/RemoteWindowsDeployer/StopServer.ps1"
], ],
}, },
"description": "ASP.NET 5 helpers to deploy applications to IIS Express, IIS, WebListener and Kestrel for testing.", "description": "ASP.NET Core helpers to deploy applications to IIS Express, IIS, WebListener and Kestrel for testing.",
"packOptions": { "packOptions": {
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git://github.com/aspnet/hosting" "url": "git://github.com/aspnet/hosting"
} },
"tags": [
"aspnetcore",
"testing"
]
}, },
"dependencies": { "dependencies": {
"Microsoft.AspNetCore.Testing": "1.0.0-*", "Microsoft.AspNetCore.Testing": "1.0.0-*",

View File

@ -18,7 +18,7 @@ using Context = Microsoft.AspNetCore.Hosting.Internal.HostingApplication.Context
namespace Microsoft.AspNetCore.TestHost namespace Microsoft.AspNetCore.TestHost
{ {
/// <summary> /// <summary>
/// This adapts HttpRequestMessages to ASP.NET requests, dispatches them through the pipeline, and returns the /// This adapts HttpRequestMessages to ASP.NET Core requests, dispatches them through the pipeline, and returns the
/// associated HttpResponseMessage. /// associated HttpResponseMessage.
/// </summary> /// </summary>
public class ClientHandler : HttpMessageHandler public class ClientHandler : HttpMessageHandler
@ -49,7 +49,7 @@ namespace Microsoft.AspNetCore.TestHost
} }
/// <summary> /// <summary>
/// This adapts HttpRequestMessages to ASP.NET requests, dispatches them through the pipeline, and returns the /// This adapts HttpRequestMessages to ASP.NET Core requests, dispatches them through the pipeline, and returns the
/// associated HttpResponseMessage. /// associated HttpResponseMessage.
/// </summary> /// </summary>
/// <param name="request"></param> /// <param name="request"></param>

View File

@ -8,12 +8,17 @@
], ],
"xmlDoc": true "xmlDoc": true
}, },
"description": "ASP.NET 5 web server for writing and running tests.", "description": "ASP.NET Core web server for writing and running tests.",
"packOptions": { "packOptions": {
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git://github.com/aspnet/hosting" "url": "git://github.com/aspnet/hosting"
} },
"tags": [
"aspnetcore",
"hosting",
"testing"
]
}, },
"dependencies": { "dependencies": {
"Microsoft.AspNetCore.Hosting": "1.0.0-*" "Microsoft.AspNetCore.Hosting": "1.0.0-*"