Skip to content

Commit

Permalink
Feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
jkotalik committed Mar 24, 2021
1 parent 0a3c991 commit e6eeadd
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
22 changes: 11 additions & 11 deletions src/Servers/IIS/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ There are two modes for hosting application with IIS: in-process and out-of-proc

The following contains a description of the sub-directories.

- `[AspNetCoreModuleV2](AspNetCoreModuleV2/)`: Contains all native code that is part of the [ASP.NET Core Module](https://docs.microsoft.com/aspnet/core/host-and-deploy/aspnet-core-module?view=aspnetcore-5.0).
- `[AspNetCoreModuleV2/AspNetCore](AspNetCoreModuleV2/AspNetCore/)`: Contains the ASP.NET Core Module shim, a minimal layer for IIS to interact with the in-process and out-of-process modules.
- `[AspNetCoreModuleV2/CommonLib](AspNetCoreModuleV2/CommonLib/)`: Contains common code shared between all native components.
- `[AspNetCoreModuleV2/CommonLibTests](AspNetCoreModuleV2/CommonLibTests/)`: Contains native tests for the ASP.NET Core Module.
- `[AspNetCoreModuleV2/IISLib](AspNetCoreModuleV2/IISLib/)`: Contains common code for interactions with IIS.
- `[AspNetCoreModuleV2/InProcessRequestHandler](AspNetCoreModuleV2/InProcessRequestHandler/)`: Contains native code for in-process hosting.
- `[AspNetCoreModuleV2/OutOfProcessRequestHandler](AspNetCoreModuleV2/OutOfProcessRequestHandler/)`: Contains native code for out-of-process hosting.
- `[AspNetCoreModuleV2/RequestHandlerLib](AspNetCoreModuleV2/RequestHandlerLib/)`: Contains shared code between in-process and out-of-process hosting.
- `[IIS](IIS/)`: Contains managed code for hosting ASP.NET Core with in-process hosting.
- `[IISIntegration](IISIntegration/)`: Contains managed code for hosting ASP.NET Core with out-of-process hosting.
- `[IntegrationTesting.IIS](IntegrationTesting.IIS/)`: Contains testing infrastructure for starting IIS and IISExpress.
- [AspNetCoreModuleV2/](AspNetCoreModuleV2/): Contains all native code that is part of the [ASP.NET Core Module/](https://docs.microsoft.com/aspnet/core/host-and-deploy/aspnet-core-module?view=aspnetcore-5.0).
- [AspNetCoreModuleV2/AspNetCore/](AspNetCoreModuleV2/AspNetCore/): Contains the ASP.NET Core Module shim, a minimal layer for IIS to interact with the in-process and out-of-process modules.
- [AspNetCoreModuleV2/CommonLib/](AspNetCoreModuleV2/CommonLib/): Contains common code shared between all native components.
- [AspNetCoreModuleV2/CommonLibTests/](AspNetCoreModuleV2/CommonLibTests/): Contains native tests for the ASP.NET Core Module.
- [AspNetCoreModuleV2/IISLib/](AspNetCoreModuleV2/IISLib/): Contains common code for interactions with IIS.
- [AspNetCoreModuleV2/InProcessRequestHandler/](AspNetCoreModuleV2/InProcessRequestHandler/): Contains native code for in-process hosting.
- [AspNetCoreModuleV2/OutOfProcessRequestHandler/](AspNetCoreModuleV2/OutOfProcessRequestHandler/): Contains native code for out-of-process hosting.
- [AspNetCoreModuleV2/RequestHandlerLib/](AspNetCoreModuleV2/RequestHandlerLib/): Contains shared code between in-process and out-of-process hosting.
- [IIS/](IIS/): Contains managed code for hosting ASP.NET Core with in-process hosting.
- [IISIntegration/](IISIntegration/): Contains managed code for hosting ASP.NET Core with out-of-process hosting.
- [IntegrationTesting.IIS/](IntegrationTesting.IIS/): Contains testing infrastructure for starting IIS and IISExpress.

## Development Setup

Expand Down
12 changes: 6 additions & 6 deletions src/Servers/Kestrel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ Kestrel is our cross-platform web server that is included and enabled by default

The following contains a description of the sub-directories.

- `[Core](Core/)`: Contains the main server implementation for Kestrel.
- `[Kestrel](Kestrel/)`: Contains the public API exposed to use Kestrel.
- `[test](test/)`: Contains End to End tests for Kestrel.
- `[Transport.Libuv](Transport.Libuv/)`: Contains the obsolete Libuv transport for connection management.
- `[Transport.Quic](Transport.Quic/)`: Contains the QUIC transport for connection management.
- `[Transport.Sockets](Transport.Sockets/)`:Contains the Sockets transport for connection management.
- [Core/](Core/): Contains the main server implementation for Kestrel.
- [Kestrel/](Kestrel/): Contains the public API exposed to use Kestrel.
- [test/](test/): Contains End to End tests for Kestrel.
- [Transport.Sockets/](Transport.Sockets/):Contains the Sockets transport for connection management.
- [Transport.Quic/](Transport.Quic/): Contains the QUIC transport for connection management.
- [Transport.Libuv/](Transport.Libuv/): Contains the obsolete Libuv transport for connection management.

## Development Setup

Expand Down
8 changes: 4 additions & 4 deletions src/Servers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ ASP.NET Core Servers contains all servers that can be used in ASP.NET Core by de

This folder contains all servers implementations related abstractions for ASP.NET Core.

- `[Kestrel](Kestrel/)`: Contains the implementation of the Kestrel Web Server.
- `[IIS](IIS/)`: Cotnains all code for the IIS Web Server and ASP.NET Core Module.
- `[HttpSys](HttpSys/)`: Contains all code for the HTTP.sys Web Server.
- `[Connections.Abstractions](Connections.Abstractions/)`: A set of abstractions for creating and using Connections; used in the server implementations and SignalR.
- [Kestrel/](Kestrel/): Contains the implementation of the Kestrel Web Server.
- [IIS/](IIS/): Cotnains all code for the IIS Web Server and ASP.NET Core Module.
- [HttpSys/](HttpSys/): Contains all code for the HTTP.sys Web Server.
- [Connections.Abstractions/](Connections.Abstractions/): A set of abstractions for creating and using Connections; used in the server implementations and SignalR.

## More Information

Expand Down

0 comments on commit e6eeadd

Please sign in to comment.