From 59aa29b6fe457883122268c3a1fae90e845f1da1 Mon Sep 17 00:00:00 2001 From: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com> Date: Thu, 2 Dec 2021 07:54:52 -1000 Subject: [PATCH] add link to code analysis to middleware /3 (#24164) * add link to code analysis to middleware /3 * add link to code analysis to middleware /3 --- aspnetcore/fundamentals/middleware/index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/aspnetcore/fundamentals/middleware/index.md b/aspnetcore/fundamentals/middleware/index.md index 27f13f96b5..6086834261 100644 --- a/aspnetcore/fundamentals/middleware/index.md +++ b/aspnetcore/fundamentals/middleware/index.md @@ -26,6 +26,10 @@ Request delegates are configured using explains the difference between request pipelines in ASP.NET Core and ASP.NET 4.x and provides additional middleware samples. +## Middleware code analysis + +ASP.NET Core includes many compiler platform analyzers that inspect application code for quality. For more information, see + ## Create a middleware pipeline with `WebApplication` The ASP.NET Core request pipeline consists of a sequence of request delegates, called one after the other. The following diagram demonstrates the concept. The thread of execution follows the black arrows.