⚡️ Working with context in OpenTelemetry
In distributed systems, it is important to maintain observability as requests move between processes and services.
The article describes how in . NET applications pass tracing context using OpenTelemetry to track the path of the request through different components.
♻️ Subscribe for free now!
In distributed systems, it is important to maintain observability as requests move between processes and services.
The article describes how in . NET applications pass tracing context using OpenTelemetry to track the path of the request through different components.
♻️ Subscribe for free now!
Meziantou's blog
Propagating OpenTelemetry context in .NET
Learn how to propagate OpenTelemetry context across process boundaries in .NET applications using messaging systems, queues, and background jobs.
⚡️ Web Worker in .NET 11 for background tasks in Blazor
.NET 11 introduces the Web Worker project template, which is designed to perform CPU-intensive tasks without blocking the interface.
This pattern can be used in Blazor applications to move heavy computing to background threads through Web Workers.
♻️ Subscribe for free now!
.NET 11 introduces the Web Worker project template, which is designed to perform CPU-intensive tasks without blocking the interface.
This pattern can be used in Blazor applications to move heavy computing to background threads through Web Workers.
♻️ Subscribe for free now!
Andrew Lock | .NET Escapades
Running background tasks in Blazor with Web Workers
In this post I discuss the new Web Worker template available in .NET 11 for running CPU intensive tasks without blocking the UI
⚡️ In .NET, MAUI will default to CoreCLR
Microsoft has announced that starting with .NET 11 in .NET MAUI, the default runtime will be CoreCLR for Android, iOS, and Mac Catalyst apps. This means moving away from Mono in mobile development in favor of the same engine used in ASP.NET Core, Azure, and .NET desktop applications.
The company expects to unify the platform, improve performance through ReadyToRun and Profile-Guided Optimization, and prepare for full support for NativeAOT on mobile devices.
At the same time, Microsoft admits that some large Android applications are still facing performance regressions and an increase in the size of assemblies, so developers are advised to actively test applications on .NET 11 and, if necessary, temporarily return to Mono through a special configuration flag.
♻️ Subscribe for free now!
Microsoft has announced that starting with .NET 11 in .NET MAUI, the default runtime will be CoreCLR for Android, iOS, and Mac Catalyst apps. This means moving away from Mono in mobile development in favor of the same engine used in ASP.NET Core, Azure, and .NET desktop applications.
The company expects to unify the platform, improve performance through ReadyToRun and Profile-Guided Optimization, and prepare for full support for NativeAOT on mobile devices.
At the same time, Microsoft admits that some large Android applications are still facing performance regressions and an increase in the size of assemblies, so developers are advised to actively test applications on .NET 11 and, if necessary, temporarily return to Mono through a special configuration flag.
♻️ Subscribe for free now!
Microsoft News
.NET MAUI Moves to CoreCLR in .NET 11
.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.
⚡️ F# Weekly #20, 2026
In the new issue, you will find interesting materials about .NET 11 Preview 4 and the release of SwaggerProvider 4.0 for F#.
♻️ Subscribe for free now!
In the new issue, you will find interesting materials about .NET 11 Preview 4 and the release of SwaggerProvider 4.0 for F#.
♻️ Subscribe for free now!
Sergey Tihon's Blog
F# Weekly #20, 2026 – .NET 11 Preview 4 and SwaggerProvider 4.0
Welcome to F# Weekly, A roundup of F# content from this past week: News [System.Text.Json] now understands F# discriminated unions out of the box SwaggerProvider v4.0.0 Microsoft News .NET 11 Previ…
⚡️ dotInsights | May 2026
JetBrains May Digest: Explore the impact of AI tools on code quality, multi-agent workflows in .NET, Entity Framework Core optimizations, and what's new in C# 15.
The company paid special attention to its own AI initiatives: early builds of ReSharper 2026.2 and Rider 2026.2 introduced new AI agents and tools for automating testing and analyzing code coverage.
♻️ Subscribe for free now!
JetBrains May Digest: Explore the impact of AI tools on code quality, multi-agent workflows in .NET, Entity Framework Core optimizations, and what's new in C# 15.
The company paid special attention to its own AI initiatives: early builds of ReSharper 2026.2 and Rider 2026.2 introduced new AI agents and tools for automating testing and analyzing code coverage.
♻️ Subscribe for free now!
The JetBrains Blog
dotInsights | May 2026 | The .NET Tools Blog
Did you know? C# supports ref return and ref local, which let you return and work with references to variables instead of copies of their values. Welcome to dotInsights by JetBrains! This
⚡️ .NET API under 1 million requests per minute
The article discusses the construction of a high-load system based on ASP.NET Core Minimal API using a set of practices for the development of high-load services: EF Core optimization, the use of Dapper, the configuration of PostgreSQL indexes, the implementation of pagination and caching.
The performance of the solutions is evaluated using BenchmarkDotNet on a demo project that includes the Orders.Api service and the Orders.Benchmark benchmark set.
♻️ Subscribe for free now!
The article discusses the construction of a high-load system based on ASP.NET Core Minimal API using a set of practices for the development of high-load services: EF Core optimization, the use of Dapper, the configuration of PostgreSQL indexes, the implementation of pagination and caching.
The performance of the solutions is evaluated using BenchmarkDotNet on a demo project that includes the Orders.Api service and the Orders.Benchmark benchmark set.
♻️ Subscribe for free now!
elmah.io Blog - .NET Technical tutorials/guides and new features
Designing high-throughput APIs for 1M requests/minute .NET
Learn how to build high-throughput .NET APIs for 1M requests/min using EF Core optimizations, Dapper, database indexing, and caching tactics.
⚡️ Memory in C# will become noticeably safer
Microsoft has announced a large-scale rethinking of the memory safety model in C#. The key change is that unsafe will no longer be just a pointer marker and will become an explicit contract between the author of the code and its consumers, and the compiler will begin to control potentially harmful memory operations more strictly. Innovations should reduce the number of security errors and make the code, especially created with the help of AI tools, more reliable and predictable.
♻️ Subscribe for free now!
Microsoft has announced a large-scale rethinking of the memory safety model in C#. The key change is that unsafe will no longer be just a pointer marker and will become an explicit contract between the author of the code and its consumers, and the compiler will begin to control potentially harmful memory operations more strictly. Innovations should reduce the number of security errors and make the code, especially created with the help of AI tools, more reliable and predictable.
♻️ Subscribe for free now!
Microsoft News
Improving C# Memory Safety
The `unsafe` keyword is being redesigned to mark caller-facing contracts rather than just syntax. Safety obligations between callers and callees become visible and reviewable. The model is motivated by the rise of AI-assisted code generation and arrives as…
👍1
⚡️ HybridCache is a single API for two-tier caching
HybridCache is an API that combines fast local IMemoryCache and distributed IDistributedCache, such as Redis.
HybridCache automatically works with two cache tiers, takes care of data serialization, and protects applications from cache stampede, a situation where many concurrent requests overload the database after the cache has expired.
HybridCache also supports invalidation by keys and tags, but retains an important limitation: local caches on other servers are not cleared instantly, so developers need to configure the L1 cache lifetime separately.
♻️ Subscribe for free now!
HybridCache is an API that combines fast local IMemoryCache and distributed IDistributedCache, such as Redis.
HybridCache automatically works with two cache tiers, takes care of data serialization, and protects applications from cache stampede, a situation where many concurrent requests overload the database after the cache has expired.
HybridCache also supports invalidation by keys and tags, but retains an important limitation: local caches on other servers are not cleared instantly, so developers need to configure the L1 cache lifetime separately.
♻️ Subscribe for free now!
adrianbailador.github.io
HybridCache in .NET 9: One Caching API, Stampede Protection Included
IMemoryCache is fast but per-server. IDistributedCache is shared but slow and full of boilerplate. .NET 9's HybridCache combines both into one API — two...
👍1
⚡️ How to Create an MCP Server on .NET
Paul Michaels showed how to turn an ordinary . NET code into a set of tools that can be used by AI assistants like Cursor, VS Code, and LM Studio.
His sample MCP server connects to a local LLM through LM Studio, finds available functions in the assembly and allows the agent to call them via stdin/stdout — for example, create or add files.
According to the author, the basic implementation takes about 12 lines of code, and the new AI tool can be described as a simple static method with attributes and a clear text description.
♻️ Subscribe for free now!
Paul Michaels showed how to turn an ordinary . NET code into a set of tools that can be used by AI assistants like Cursor, VS Code, and LM Studio.
His sample MCP server connects to a local LLM through LM Studio, finds available functions in the assembly and allows the agent to call them via stdin/stdout — for example, create or add files.
According to the author, the basic implementation takes about 12 lines of code, and the new AI tool can be described as a simple static method with attributes and a clear text description.
♻️ Subscribe for free now!
pmichaels.net
Creating a Simple MCP Server in .NET
In my previous post, I covered how to interact with a local LLM from .NET using LM Studio. In this post, I’m going to take that a little further and build an…
❤1
⚡️ .NET 11: Runtime Async, Native AOT, and AI Application Development Tools
At the Microsoft Build 2026 conference, the company spoke in detail about the key innovations of .NET 11.
The update includes an accelerated SDK with support for Native AOT, new capabilities for working with AI agents, improvements to System.Text.Json, and built-in support for the JSON Lines format.
One of the main announcements was Runtime Async, a new asynchronous execution mechanism that improves performance, reduces the size of applications, and simplifies debugging.
Microsoft also unveiled an initiative to improve memory security and a number of runtime optimizations that should make .NET a more efficient platform for cloud-native and AI-centric applications.
♻️ Subscribe for free now!
At the Microsoft Build 2026 conference, the company spoke in detail about the key innovations of .NET 11.
The update includes an accelerated SDK with support for Native AOT, new capabilities for working with AI agents, improvements to System.Text.Json, and built-in support for the JSON Lines format.
One of the main announcements was Runtime Async, a new asynchronous execution mechanism that improves performance, reduces the size of applications, and simplifies debugging.
Microsoft also unveiled an initiative to improve memory security and a number of runtime optimizations that should make .NET a more efficient platform for cloud-native and AI-centric applications.
♻️ Subscribe for free now!
Microsoft
.NET 11 in depth: Runtime, libraries, and SDK for the AI era
.NET 11 delivers a new wave of improvements across the runtime, libraries, and SDK to help developers build modern applications for the AI era. In this session, we’ll take an in-depth look at the key investments in performance, diagnostics, and developer…
🎥 Build 2026: Microsoft introduced the largest Azure service pack
At Build 2026, Microsoft announced a massive set of updates to Azure, covering cloud infrastructure, data platforms, development tools, and AI services.
Key innovations include Cobalt 200 ARM virtual machines, Azure Linux 4, HorizonDB database, new Azure AI Foundry capabilities, and tools for building and managing AI agents.
The company also introduced new models of the MAI family and expanded the functionality of Azure Functions, Logic Apps, Cosmos DB, API Management, and Azure AI Search, strengthening the integration of generative AI into enterprise cloud services.
For more details, see the special issue on the results of Build 2026!
♻️ Subscribe for free now!
At Build 2026, Microsoft announced a massive set of updates to Azure, covering cloud infrastructure, data platforms, development tools, and AI services.
Key innovations include Cobalt 200 ARM virtual machines, Azure Linux 4, HorizonDB database, new Azure AI Foundry capabilities, and tools for building and managing AI agents.
The company also introduced new models of the MAI family and expanded the functionality of Azure Functions, Logic Apps, Cosmos DB, API Management, and Azure AI Search, strengthening the integration of generative AI into enterprise cloud services.
For more details, see the special issue on the results of Build 2026!
♻️ Subscribe for free now!
//devedigest
Build 2026: Microsoft introduced the largest Azure service pack
At Build 2026, Microsoft announced a massive set of updates to Azure, covering cloud infrastructure, data platforms, development tools, and AI services.
Key innovations include Cobalt 200 ARM virtual machines, Azure Linux 4, HorizonDB database, new Azure…
Key innovations include Cobalt 200 ARM virtual machines, Azure Linux 4, HorizonDB database, new Azure…
❤1
⚡️ Microsoft Releases .NET 11 Preview 5
Microsoft has unveiled the fifth preview of the .NET 11 platform.
The release includes updates to the Runtime, SDK, ASP.NET Core, .NET MAUI, Entity Framework Core, and the C# language.
Among the key features are support for JSON Lines serialization in System.Text.Json, full outer join in LINQ, the X25519 key convention mechanism, union declarations in C#, and the MCP Server template in the dotnet new command.
Microsoft has also improved runtime performance, JIT compiler optimizations, and garbage collector performance.
Windows developers are encouraged to use Visual Studio 2026 Insiders to test the new version of the platform.
♻️ Subscribe for free now!
Microsoft has unveiled the fifth preview of the .NET 11 platform.
The release includes updates to the Runtime, SDK, ASP.NET Core, .NET MAUI, Entity Framework Core, and the C# language.
Among the key features are support for JSON Lines serialization in System.Text.Json, full outer join in LINQ, the X25519 key convention mechanism, union declarations in C#, and the MCP Server template in the dotnet new command.
Microsoft has also improved runtime performance, JIT compiler optimizations, and garbage collector performance.
Windows developers are encouraged to use Visual Studio 2026 Insiders to test the new version of the platform.
♻️ Subscribe for free now!
Microsoft News
.NET 11 Preview 5 is now available!
Find out about the new features in .NET 11 Preview 5 across the .NET runtime, SDK, libraries, ASP.NET Core, .NET MAUI, C#, Entity Framework Core, and more!
⚡️ F# Weekly #24, 2026
The latest issue of F# Weekly brings together the key events of the F# ecosystem: Fable 5.2 and Expecto 11 have been released, and Microsoft has presented the fifth preview of .NET 11.
The digest also includes news about Rider 2026.2 EAP, Visual Studio Code 1.124, new tools for agent-based AI systems, as well as a selection of materials, videos, and open source projects, from the F# port of Matplotlib to solutions for LLM orchestration and quantum computing on Azure Quantum.
Among the releases of the week are updates to SQLProvider, Thoth.Json, Akka.FSharp, and other popular libraries.
♻️ Subscribe for free now!
The latest issue of F# Weekly brings together the key events of the F# ecosystem: Fable 5.2 and Expecto 11 have been released, and Microsoft has presented the fifth preview of .NET 11.
The digest also includes news about Rider 2026.2 EAP, Visual Studio Code 1.124, new tools for agent-based AI systems, as well as a selection of materials, videos, and open source projects, from the F# port of Matplotlib to solutions for LLM orchestration and quantum computing on Azure Quantum.
Among the releases of the week are updates to SQLProvider, Thoth.Json, Akka.FSharp, and other popular libraries.
♻️ Subscribe for free now!
Sergey Tihon's Blog
F# Weekly #24, 2026 — Fable 5.2, Expecto 11 & .NET 11 Preview 5
Welcome to F# Weekly, A roundup of F# content from this past week: News Fable 5.1 and 5.2 Rider 2026.2 EAP 5 Microsoft News .NET 11 Preview 5 is now available! – .NET Blog .NET at Microsoft B…
❤1