diff --git a/src/Servers/IIS/README.md b/src/Servers/IIS/README.md index f1a63b673a1f..b1bf4c78d7bb 100644 --- a/src/Servers/IIS/README.md +++ b/src/Servers/IIS/README.md @@ -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 diff --git a/src/Servers/Kestrel/README.md b/src/Servers/Kestrel/README.md index e7293975fa73..20584d494f9b 100644 --- a/src/Servers/Kestrel/README.md +++ b/src/Servers/Kestrel/README.md @@ -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 diff --git a/src/Servers/README.md b/src/Servers/README.md index b06eb74c155b..a3daf34160ec 100644 --- a/src/Servers/README.md +++ b/src/Servers/README.md @@ -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