Update metadata
This commit is contained in:
parent
eec279be17
commit
4fccbeebdc
|
|
@ -8,12 +8,16 @@
|
|||
],
|
||||
"xmlDoc": true
|
||||
},
|
||||
"description": "ASP.NET 5 Hosting abstractions.",
|
||||
"description": "ASP.NET Core hosting and startup abstractions for web applications.",
|
||||
"packOptions": {
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/aspnet/hosting"
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"aspnetcore",
|
||||
"hosting"
|
||||
]
|
||||
},
|
||||
"dependencies": {
|
||||
"Microsoft.AspNetCore.Http.Abstractions": "1.0.0-*",
|
||||
|
|
|
|||
|
|
@ -8,12 +8,16 @@
|
|||
],
|
||||
"xmlDoc": true
|
||||
},
|
||||
"description": "ASP.NET 5 Hosting server abstractions.",
|
||||
"description": "ASP.NET Core hosting server abstractions for web applications.",
|
||||
"packOptions": {
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/aspnet/hosting"
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"aspnetcore",
|
||||
"hosting"
|
||||
]
|
||||
},
|
||||
"dependencies": {
|
||||
"Microsoft.AspNetCore.Http.Features": "1.0.0-*",
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ using Microsoft.Extensions.DependencyInjection;
|
|||
namespace Microsoft.AspNetCore.Hosting.WindowsServices
|
||||
{
|
||||
/// <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>
|
||||
public class WebHostService : ServiceBase
|
||||
{
|
||||
|
|
@ -53,23 +53,23 @@ namespace Microsoft.AspNetCore.Hosting.WindowsServices
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Executes before ASP.NET starts.
|
||||
/// Executes before ASP.NET Core starts.
|
||||
/// </summary>
|
||||
/// <param name="args">The command line arguments passed to the service.</param>
|
||||
protected virtual void OnStarting(string[] args) { }
|
||||
|
||||
/// <summary>
|
||||
/// Executes after ASP.NET starts.
|
||||
/// Executes after ASP.NET Core starts.
|
||||
/// </summary>
|
||||
protected virtual void OnStarted() { }
|
||||
|
||||
/// <summary>
|
||||
/// Executes before ASP.NET shuts down.
|
||||
/// Executes before ASP.NET Core shuts down.
|
||||
/// </summary>
|
||||
protected virtual void OnStopping() { }
|
||||
|
||||
/// <summary>
|
||||
/// Executes after ASP.NET shuts down.
|
||||
/// Executes after ASP.NET Core shuts down.
|
||||
/// </summary>
|
||||
protected virtual void OnStopped() { }
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,11 +1,15 @@
|
|||
{
|
||||
"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": {
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/aspnet/hosting"
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"aspnetcore",
|
||||
"hosting"
|
||||
]
|
||||
},
|
||||
"buildOptions": {
|
||||
"warningsAsErrors": true,
|
||||
|
|
|
|||
|
|
@ -1,11 +1,15 @@
|
|||
{
|
||||
"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": {
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/aspnet/hosting"
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"aspnetcore",
|
||||
"hosting"
|
||||
]
|
||||
},
|
||||
"buildOptions": {
|
||||
"warningsAsErrors": true,
|
||||
|
|
|
|||
|
|
@ -13,12 +13,16 @@
|
|||
"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": {
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/aspnet/hosting"
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"aspnetcore",
|
||||
"testing"
|
||||
]
|
||||
},
|
||||
"dependencies": {
|
||||
"Microsoft.AspNetCore.Testing": "1.0.0-*",
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ using Context = Microsoft.AspNetCore.Hosting.Internal.HostingApplication.Context
|
|||
namespace Microsoft.AspNetCore.TestHost
|
||||
{
|
||||
/// <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.
|
||||
/// </summary>
|
||||
public class ClientHandler : HttpMessageHandler
|
||||
|
|
@ -49,7 +49,7 @@ namespace Microsoft.AspNetCore.TestHost
|
|||
}
|
||||
|
||||
/// <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.
|
||||
/// </summary>
|
||||
/// <param name="request"></param>
|
||||
|
|
|
|||
|
|
@ -8,12 +8,17 @@
|
|||
],
|
||||
"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": {
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/aspnet/hosting"
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"aspnetcore",
|
||||
"hosting",
|
||||
"testing"
|
||||
]
|
||||
},
|
||||
"dependencies": {
|
||||
"Microsoft.AspNetCore.Hosting": "1.0.0-*"
|
||||
|
|
|
|||
Loading…
Reference in New Issue