//devdigest
391 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
⚡️ 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
⚡️ 12 правил Dependency Injection для ASP.NET Core

The built-in Dependency Injection mechanism in ASP.NET Core helps you build scalable and testable applications, but misuse of the dependency container can lead to memory leaks, runtime errors, and complexity to the architecture.

The article discusses 12 key rules for working with DI, from choosing between Transient, Scoped, and Singleton to avoiding circular dependencies, abandoning Service Locator, and using the Options pattern for configuration management.

The material will be useful for both beginners and experienced. NET developers working on web applications, APIs, and microservices.

♻️ Subscribe for free now!
⚡️ NBomber Studio 0.8.0

The developers of NBomber have released the NBomber Studio 0.8.0 update, the key innovation of which is the Load Test Schedules feature — it allows you to automatically run load tests on a schedule without manual intervention.

The platform has also expanded the ability to configure containers for Kubernetes by adding support for volumeMounts, volumes, envFrom, and tolerations, making it easier to work with secrets and configurations. In addition, the release includes improvements to the authentication system, new tabs for test analysis, and a number of interface improvements.

♻️ Subscribe for free now!