ASP.NET Core pipeline, C# 14, and .NET 10 networking
A varied .NET roundup covering filters, middleware, dependency injection, testing, logging, LINQ performance, and new platform features.
Jasen's top three picks
- 1 ✨ Unlocking ASP.NET Core Filters — Mastering the Request Pipeline
medium.com
Filters are the right kind of sharp tool when you need pre/post action logic without polluting controllers.
- 2 The Practical Guide to ConfigureAwait(false) in 2025 — Stop Using It Blindly
medium.com
The ConfigureAwait(false) piece is a good reality check; this one’s more nuanced than old blog-post cargo cult.
- 3 .NET 10 Networking Improvements
devblogs.microsoft.com
If you care about the platform roadmap, the .NET 10 networking post is the most concrete update in the stack.
Editor's note
I kept this issue intentionally mixed: there’s practical ASP.NET Core plumbing, language updates, and platform news all in one pass. The .NET 10 networking post is a standout for folks tracking runtime and BCL changes, and the filters/middleware pieces are useful if you live in request pipelines. I also liked the C# 14 extension members article and the warnings-as-errors guidance for teams tightening up builds.
Today's articles
✨ Unlocking ASP.NET Core Filters — Mastering the Request Pipeline
medium.com
When building ASP.NET Core applications, there are times when you want to run logic before or after a controller action executes.
Topics: ASP.NET Core Web API
Read articleThe Practical Guide to ConfigureAwait(false) in 2025 — Stop Using It Blindly
medium.com
Most .NET developers still treat ConfigureAwait(false) like a superstition.
Topics: .NET Core Performance
Read article.NET 10 Networking Improvements
devblogs.microsoft.com
Introducing new networking features in .NET 10 including HTTP space, WebSockets, security and more! The post .NET 10 Networking Improvements appeared first on .NET Blog.
Read articleCustom Middleware in .NET Core
medium.com
If you’ve shipped production .NET applications, you already know middleware isn’t just a configuration detail — it’s the architectural…
Topics: ASP.NET Core .NET Core
Read articleClean Architecture With .NET 9 And CQRS
medium.com
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
Topics: Clean Architecture CQRS
Read articleAgent HQ is now in VS Code
youtube.com
Agent sessions view: https://code.visualstudio.com/docs/copilot/chat/chat-sessions/#_agent-sessions-view Plan agent: https://code.visualstudio.com/docs/copilot/chat/chat-planning
Topics: GitHub Copilot Visual Studio Code
Read articleScott Guthrie Interstitial - Evolution
youtube.com
Boosting Your ASP.NET Core App with Multi-Layer Caching: A Comprehensive Guide
Topics: ASP.NET Core Performance
Read articleTreating warnings as errors in dotnet the right way.
medium.com
Set TreatWarningsAsErrors only in Release configuration. It stops the setting from making it hard to play with the code…
Topics: .NET Core Visual Studio
Read articleWhat's New in C# 14: Extension Members
consultwithgriff.com
A hands-on look at using extension members to improve expressiveness and eliminate boilerplate in C#.
Read articleHow to Fix No Service for Type Errors in .NET Dependency Injection
c-sharpcorner.com
Learn how to fix the common "No service for type" dependency injection error in .NET. This guide explains why the error occurs, how to register services correctly, common mistakes, and best ...
Topics: ASP.NET Core Design Patterns
Read article** How Structured Logging With Serilog Can Make Your Life Easier
medium.com
A Complete .NET 9 + Microservices + Distributed Logging Guide (With Full Codes) **
Topics: OpenTelemetry Serilog
Read articleHow to modernize current dotnet REST API to MCP Server
towardsdev.com
This blog post is a How-To guide based on what I’ve learned from various sources and my experience trying MCP. If you’re using .NET and… Continue reading on Towards Dev »
Read articleClean Code in C#: A Step-by-Step Guide to SonarQube & .NET
medium.com
We’ve all been there. You push code, merge it, and three weeks later, a critical bug surfaces because of a null reference exception deep…
Read articleStruct vs Record vs Class — What Should You Use?
medium.com
The Real Problem
Read articleModernization Made Simple: Building Agentic Solutions in .NET
youtube.com
Learn more: https://aka.ms/agentic-modernization Docs: https://learn.microsoft.com/dotnet
Read articleMy First C# Program in Visual Studio Felt Like Magic
towardsdev.com
A beginner-friendly walkthrough of building your first C# console app. Continue reading on Towards Dev »
Topics: C# Visual Studio
Read articleThe New .slnx Solution Format (migration guide)
milanjovanovic.tech
See what changes in .slnx, how to convert your existing .sln, and what to watch out for in CI.
Topics: .NET Core Visual Studio
Read articleWriting Good Tests in TDD
medium.com
Ever run a test suite where everything’s green… but you still don’t trust it?
Topics: .NET Core Test-Driven Development
Read articleLINQ Performance Optimization: 5 Patterns Every C# Developer Should Know
towardsdev.com
Production-tested patterns for faster queries, lower memory usage, and better .NET application performance Continue reading on Towards Dev »
Topics: C# Performance
Read articleHow To Add Fault Handling In ASP.NET Core With Polly
medium.com
If your ASP.NET Core app calls anything over the network — Stripe, a user service, a database over HTTP, whatever — you need fault…
Topics: ASP.NET Core Performance
Read article