frameworks
.NET Core Articles, Tutorials & News
.NET Core articles, tutorials, and news from the DotNetNews archive.
1444 articles Updated Page 6 of 58
Browse additional .NET Core articles from the DotNetNews archive.
.NET Core articles
Page 6 of 58
Newest first
-
Why not have changes in API behavior depend on the SDK you link against?
devblogs.microsoft.com Issue #456
Some time ago, I noted that the CoInitializeSecurity function demands an absolute security descriptor, even though many functions in Windows produce self-relat
-
BackgroundService exceptions now propagate in .NET 11
steven-giesel.com Issue #456
Here's a bug that lived in .NET for over four years. If your BackgroundService threw an exception after its first await, your host would catch it, log a critical message, and then exit cleanly with ex...
-
I built Surefire, a background job library for modern .NET
medium.com Issue #454
I just released a preview of Surefire, the distributed job scheduling library I’ve been working on for the past couple of months. Continue reading on batary »
-
Modernizing .NET — Part 23: Migrating log4net to Modern .NET Logging
medium.com Issue #454
Fix log context loss in async .NET Core apps. Migrate log4net from ThreadContext to LogicalThreadContext for seamless diagnostic flow.
-
There is no Install - it's 'Stage' and 'Register'
devblogs.microsoft.com Issue #454
"Is ContosoParts.msix installed?" is a common - but misleading - question The term install is not a formal concept in MSIX. This may seem paradoxical for a deployment technology, but it make...
-
Future of .NET Development and Why You Should Invest in .NET Talent
medium.com Issue #452
Technology moves fast, but some development frameworks continue to evolve with it-and .NET is one of them.
-
Common Challenges Developers Face with .NET Services and How to Solve Them
medium.com Issue #451
The .NET ecosystem continues to power a wide range of modern applications, from enterprise systems to cloud-based platforms. Its…
-
-
Dependency Injection in .NET: A Deep Dive into Design and Lifetimes.
medium.com Issue #447
When I first learned Dependency Injection (DI), it felt like just another concept to memorize. We know the basic usage pattern of…
-
Value Types vs Reference Types in C#: What Finally Made It Click
medium.com Issue #447
I had used value types and reference types for a long time, but I didn’t really understand what the difference actually meant in real code.
-
Mastering High-Concurrency: Building a Thread-Safe Configuration Service in .NET
naved-shaikh.medium.com Issue #447
In high-frequency financial environments — like those I’ve navigated throughout my 15+ years in engineering — system stability often…
-
Developing a cross-process reader/writer lock with limited readers, part 1: A semaphore
devblogs.microsoft.com Issue #447
Say you want to have the functionality of a reader/writer lock, but have it work cross-process. The built-in SRWLOCK works only within a single process. Can we build a reader/writer lock that works ac...
-
Serving Media from Azure Blob Storage in ASP.NET Core : Downloads, Streaming and Secure Tickets
medium.com Issue #445
Azure Blob Storage is one of those services that quietly underpins a huge number of production systems. It’s where your audio recordings…
-
Setup CI Build Pipeline in Azure DevOps for ASP.NET Core Web API
medium.com Issue #444
Subscibe to my weekly .NET newsletter
-
Global Error Handling in ASP.NET Core Web API: Building Reliable, Secure, and Production-Ready APIs
achuchiwilliam.medium.com Issue #444
Modern backend systems are expected to be stable, predictable, and easy to maintain. Users may forgive a failed request, but they rarely…
-
ASP.NET Core (Latest Microsoft Release)
c-sharpcorner.com Issue #443
This article explores the latest advancements in ASP.NET Core with the release of .NET 10, focusing on performance improvements, enhanced Minimal APIs, and Blazor updates. It provides practical code e...
-
Middleware in ASP.NET Core: What Actually Happens
medium.com Issue #441
I had been using middleware in ASP.NET Core without really understanding what it was doing.
-
-
Microsoft calls time on ASP.NET Core 2.3 on .NET Framework
news.google.com Issue #440
Microsoft calls time on ASP.NET Core 2.3 on .NET Framework
-
How to Use HttpClientFactory in .NET Core to Avoid Socket Exhaustion
c-sharpcorner.com Issue #439
Learn how to use IHttpClientFactory in .NET Core to prevent socket exhaustion and improve performance. Discover named & typed clients, resilience with Polly, and best practices.
-
Resilience in .NET — Polly v8 Retry, Circuit Breaker, and Timeout Patterns
medium.com Issue #437
Polly v8 rewrote the entire API and most tutorials are now outdated. Here is the complete production guide to the new ResiliencePipeline —…
-
The Build-Time Rebellion: When .NET Maintainers Fought Back
devblogs.microsoft.com Issue #437
Introduction: The Invisible Infrastructure
-
Still writing long SQL queries for every database operation?
medium.com Issue #437
What if you could interact with your database using simple C# code?
-
Running Local AI with LlamaSharp in .NET: A Developer's Guide
c-sharpcorner.com Issue #437
Run powerful AI models locally in .NET with LlamaSharp! This guide covers setup, model selection (Llama 3, Phi-4), GPU acceleration, and integration with Semantic Kernel.
-
Containerize an ASP.NET Core BFF and Angular frontend using Aspire
timdeschryver.dev Issue #436
Using Damien Bowden's secure ASP.NET Core and Angular BFF template as a starting point, this post shows how to integrate Aspire to improve local development and prepare the application for containeriz...