Skip to content

Commit e6eeadd

Browse files
committed
Feedback
1 parent 0a3c991 commit e6eeadd

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

src/Servers/IIS/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ There are two modes for hosting application with IIS: in-process and out-of-proc
1212

1313
The following contains a description of the sub-directories.
1414

15-
- `[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).
16-
- `[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.
17-
- `[AspNetCoreModuleV2/CommonLib](AspNetCoreModuleV2/CommonLib/)`: Contains common code shared between all native components.
18-
- `[AspNetCoreModuleV2/CommonLibTests](AspNetCoreModuleV2/CommonLibTests/)`: Contains native tests for the ASP.NET Core Module.
19-
- `[AspNetCoreModuleV2/IISLib](AspNetCoreModuleV2/IISLib/)`: Contains common code for interactions with IIS.
20-
- `[AspNetCoreModuleV2/InProcessRequestHandler](AspNetCoreModuleV2/InProcessRequestHandler/)`: Contains native code for in-process hosting.
21-
- `[AspNetCoreModuleV2/OutOfProcessRequestHandler](AspNetCoreModuleV2/OutOfProcessRequestHandler/)`: Contains native code for out-of-process hosting.
22-
- `[AspNetCoreModuleV2/RequestHandlerLib](AspNetCoreModuleV2/RequestHandlerLib/)`: Contains shared code between in-process and out-of-process hosting.
23-
- `[IIS](IIS/)`: Contains managed code for hosting ASP.NET Core with in-process hosting.
24-
- `[IISIntegration](IISIntegration/)`: Contains managed code for hosting ASP.NET Core with out-of-process hosting.
25-
- `[IntegrationTesting.IIS](IntegrationTesting.IIS/)`: Contains testing infrastructure for starting IIS and IISExpress.
15+
- [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).
16+
- [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.
17+
- [AspNetCoreModuleV2/CommonLib/](AspNetCoreModuleV2/CommonLib/): Contains common code shared between all native components.
18+
- [AspNetCoreModuleV2/CommonLibTests/](AspNetCoreModuleV2/CommonLibTests/): Contains native tests for the ASP.NET Core Module.
19+
- [AspNetCoreModuleV2/IISLib/](AspNetCoreModuleV2/IISLib/): Contains common code for interactions with IIS.
20+
- [AspNetCoreModuleV2/InProcessRequestHandler/](AspNetCoreModuleV2/InProcessRequestHandler/): Contains native code for in-process hosting.
21+
- [AspNetCoreModuleV2/OutOfProcessRequestHandler/](AspNetCoreModuleV2/OutOfProcessRequestHandler/): Contains native code for out-of-process hosting.
22+
- [AspNetCoreModuleV2/RequestHandlerLib/](AspNetCoreModuleV2/RequestHandlerLib/): Contains shared code between in-process and out-of-process hosting.
23+
- [IIS/](IIS/): Contains managed code for hosting ASP.NET Core with in-process hosting.
24+
- [IISIntegration/](IISIntegration/): Contains managed code for hosting ASP.NET Core with out-of-process hosting.
25+
- [IntegrationTesting.IIS/](IntegrationTesting.IIS/): Contains testing infrastructure for starting IIS and IISExpress.
2626

2727
## Development Setup
2828

src/Servers/Kestrel/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ Kestrel is our cross-platform web server that is included and enabled by default
66

77
The following contains a description of the sub-directories.
88

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

1616
## Development Setup
1717

src/Servers/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ ASP.NET Core Servers contains all servers that can be used in ASP.NET Core by de
1010

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

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

1818
## More Information
1919

0 commit comments

Comments
 (0)