frameworks
.NET 10 Articles, Tutorials & News
.NET 10 articles, tutorials, and news from the DotNetNews archive.
360 articles Updated Page 2 of 15
Browse additional .NET 10 articles from the DotNetNews archive.
.NET 10 articles
Page 2 of 15
Newest first
-
Process API Improvements in .NET 11
devblogs.microsoft.com Issue #478
Process API improvements in .NET 11, including high-level APIs for starting processes, capturing output without deadlocks, handle inheritance control, lifetime management features, and a lightweight `...
-
Copilot Studio gets faster with .NET 10 on WebAssembly
devblogs.microsoft.com Issue #478
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...
-
.NET at Microsoft Build 2026: Must watch sessions
devblogs.microsoft.com Issue #478
Catch up on all the .NET sessions from Microsoft Build 2026 covering .NET 11, union types in C#, AI building blocks, the agentic web, .NET MAUI, and more! The post .NET at Microsoft Build 2026: Must w...
-
A useful new .Net feature for Processes
blog.jermdavis.dev Issue #477
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...
-
.NET MAUI Moves to CoreCLR in .NET 11
devblogs.microsoft.com Issue #477
.NET MAUI apps on Android, iOS, and Mac Catalyst now run on CoreCLR by default in .NET 11, unifying the runtime across all of .NET. The post .NET MAUI Moves to CoreCLR in .NET 11 appeared first on .NE...
-
Running background tasks in Blazor with Web Workers: Exploring the .NET 11 preview - Part 1
andrewlock.net Issue #477
In this post I discuss the new Web Worker template available in .NET 11 for running CPU intensive tasks without blocking the UI
-
BackgroundService exceptions now propagate in .NET 11
steven-giesel.com Issue #476
Here's a bug that lived in .NET for over four years As in: Reported over 4 years ago . If your BackgroundService threw an exception after its first await , your host would catch it, log a critical mes...
-
Zstandard compression in .NET 11
steven-giesel.com Issue #476
.NET has had DeflateStream , GZipStream , ZLibStream , and BrotliStream for a while now. In .NET 11, a new one joins the party: ZstandardStream . And now we get to say "Zstd" in .NET.
-
Keyed Services in .NET 10: The DI Feature Almost Nobody Uses
serkanozbeykurucu.medium.com Issue #475
.NET 10 is the current long-term support release. It will be patched until late 2028. And buried in the DI container is a feature that…
-
C# 15 New Features Explained with Practical Examples
c-sharpcorner.com Issue #475
Explore C# 15's new features: enhanced collections, pattern matching, primary constructors, and more for cleaner, productive development.
-
Building High-Performance APIs with Minimal APIs and .NET 10
c-sharpcorner.com Issue #475
Build high-performance, scalable APIs with .NET 10 Minimal APIs. Reduce boilerplate, boost speed, and simplify development for modern applications.
-
Understanding IHostedService & BackgroundService in .NET 10
codewithmukesh.com Issue #475
IHostedService vs BackgroundService in .NET 10. Side-by-side code, 5 production gotchas, decision matrix, and when to reach for Hangfire instead.
-
Union Types Are Finally Coming to C#
medium.com Issue #475
C# 15/.NET 11 introduces Union Types for the first time. Get compile-time exhaustive pattern matching & replace old workarounds. Continue reading on .Net Programming »
-
FluentValidation in ASP.NET Core .NET 10 - Request Validation
codewithmukesh.com Issue #474
Use FluentValidation 12 in ASP.NET Core .NET 10 - endpoint filters for Minimal APIs, async validators, custom rules, and a decision matrix vs Data Annotations.
-
Rate Limiting in ASP.NET Core (.NET 10) - Complete Guide
codewithmukesh.com Issue #474
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.
-
Building File-Based Apps in .NET: A Complete Guide With Multi-File Support
antondevtips.com Issue #474
Learn how to build file-based apps in .NET 10 and .NET 11 Preview 3. This guide covers single-file C# scripts, multi-file apps with the #:include directive, including SDK, including project files and
-
NuGet Package Pruning: Cleaner Dependencies and Actionable Vulnerability Reports
devblogs.microsoft.com Issue #473
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 #473
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.
-
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.