//devdigest
396 subscribers
1 photo
2.15K links
All about software development: .NET, C#, F#, Azure and other Microsoft technologies! For more information visit https://bio.link/devdigest
Download Telegram
⚡️ 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!
⚡️ 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!
⚡️ 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!
⚡️ 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!
⚡️ .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!
⚡️ 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!
👍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!
👍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!
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!
🎥 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!
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!
⚡️ 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!
1