frameworks
.NET 10 Articles, Tutorials & News
.NET 10 articles, tutorials, and news from the DotNetNews archive.
392 articles Updated Page 4 of 16
Browse additional .NET 10 articles from the DotNetNews archive.
.NET 10 articles
Page 4 of 16
Newest first
-
Running ASP.NET Core Applications as a Subfolder Application
weblog.west-wind.com Issue #473
ASP.NET Core applications by default want to run in a root folder - and to be fair that's the 99% use case. But there are those occasional situations where you want to run a Web site in a sub folder r...
-
Lost ASP.NET Identity Cookies on IIS Application Pool Restarts
weblog.west-wind.com Issue #472
Last week I finally updated my blog and moved it to .NET 10 from the ancient WebForms based engine I built 20 years ago. The app is deployed onto a Windows server running IIS and I ran into a snag rel...
-
Implementing Clean Architecture in .NET 10 - Step-by-Step Guide
codewithmukesh.com Issue #471
A complete, junior-friendly guide to Clean Architecture in .NET 10. Build a movie API across Domain, Application, Infrastructure, and API layers with EF Core and Aspire.
-
Repository Pattern in .NET 10 - Do You Really Need It?
codewithmukesh.com Issue #471
I have shipped 50+ .NET APIs and most did not need a Repository Pattern. My sharp .NET 10 verdict on when to use it, when to skip it, what to use instead.
-
JWT Authentication in ASP.NET Core - A Complete .NET 10 Guide
codewithmukesh.com Issue #471
Implement JWT authentication in ASP.NET Core .NET 10 - generate signed tokens with JsonWebTokenHandler, secure Minimal API endpoints, and add role-based authorization.
-
Validation with MediatR Pipeline Behavior and FluentValidation in .NET 10
codewithmukesh.com Issue #471
Validate MediatR commands centrally in the pipeline with FluentValidation and IExceptionHandler in ASP.NET Core .NET 10 - clean handlers, one Problem Details response.
-
Refresh Tokens in ASP.NET Core - A Complete .NET 10 Guide
codewithmukesh.com Issue #471
Implement refresh tokens in ASP.NET Core .NET 10 - token rotation, reuse detection, revocation, and where to store them, built on top of JWT authentication.
-
Lost ASP.NET Identity Cookies on IIS Application Pool Restarts
weblog.west-wind.com Issue #467
Last week I finally updated my blog and moved it to .NET 10 from the ancient WebForms based engine I built 20 years ago. The app is deployed onto a Windows server running IIS and I ran into a snag rel...
-
Building AutoStack.Identity: A Zero-Dependency .NET 10 Library for SAML 2.0, JWT, and XML Signing
medium.com Issue #466
The Problem That Started This
-
Implementing Clean Architecture in .NET 10 - Step-by-Step Guide
codewithmukesh.com Issue #466
A complete, junior-friendly guide to Clean Architecture in .NET 10. Build a movie API across Domain, Application, Infrastructure, and API layers with EF Core and Aspire.
-
Rate Limiting in ASP.NET Core (.NET 10) - Complete Guide
codewithmukesh.com Issue #464
Production-grade rate limiting in ASP.NET Core .NET 10. All 4 algorithms, partitioning, Redis backplane, OnRejected with Retry-After, multi-tenant tiers, and a real decision matrix.
-
.NET (OK, C#) finally gets union types🎉: Exploring the .NET 11 preview - Part 2
andrewlock.net Issue #464
In this post I discuss the support for union types released in .NET 11, how they're implemented, the choices made, and how to create your own
-
A useful new .Net feature for Processes
blog.jermdavis.dev Issue #464
The pace of change with .Net is pretty relentless these days. And every so often they ship a thing that fixes a challenge I've been mulling over addressing myself. That's happened again with Process A...
-
The New Agent Customization Window #vscode #customization
youtube.com Issue #463
Understanding IHostedService & BackgroundService in .NET 10
-
Repository Pattern in .NET 10 - Do You Really Need It?
codewithmukesh.com Issue #463
I have shipped 50+ .NET APIs and most did not need a Repository Pattern. My sharp .NET 10 verdict on when to use it, when to skip it, what to use instead.
-
Repository Pattern with Entity Framework Core in .NET 10 | Clean Architecture Simplified
medium.com Issue #463
Building scalable applications in .NET 10 is not only about writing APIs — it is about writing maintainable code. That is why many…
-
NuGet Package Pruning: Cleaner Dependencies and Actionable Vulnerability Reports
devblogs.microsoft.com Issue #463
Package pruning in .NET 10 removes platform-provided packages from your dependency graph. With transitive auditing enabled by default, projects with these defaults have 70% fewer transitive vulnerabil...
-
10 .NET 10 API Anti-Patterns That Break Production (And How to Fix Them)
codewithmukesh.com Issue #462
10 ASP.NET Core anti-patterns that break production in .NET 10 - async void, sync-over-async, fat controllers, runtime-reflection mappers in AOT, and the 2026 ones.
-
dotnet run hello.cs — C# Finally Got Its "Python Moment" in .NET 10
medium.com Issue #461
How File-Based Apps in C# 14 & .NET 10 kill the boilerplate and bring scripting-speed prototyping to the world’s most powerful typed…
-
10 EF Core Performance Mistakes (and How to Fix Them) in .NET 10
codewithmukesh.com Issue #459
10 EF Core performance mistakes that ship to production - N+1 queries, missing projections, lazy loading, AsNoTracking, bulk ops - and how to fix each in .NET 10.
-
Copilot Studio gets faster with .NET 10 on WebAssembly
devblogs.microsoft.com Issue #458
Microsoft Copilot Studio recently upgraded its .NET WebAssembly engine to .NET 10. The migration was straightforward, simplified deployment, and delivered another round of meaningful performance gains...
-
Inside Cowork — Vision, Roadmap and What’s Next
youtube.com Issue #458
.NET MAUI Moves to CoreCLR in .NET 11
-
.NET AI Community Standup: .NET + AI at Build 2026: What’s Coming Next?
youtube.com Issue #458
Process API Improvements in .NET 11
-
Simple Multithreading in C# with a Practical Example (.NET 10)
medium.com Issue #455
Multithreading is a fundamental concept in modern programming that allows applications to perform multiple operations concurrently.
-
How To Use Domain-Driven Design In Clean Architecture
medium.com Issue #455
A Practical Guide for .NET 10 Developers Building Enterprise-Grade Systems