Microsoft
Developer Blogs

Get the latest information, insights, and news from Microsoft.

Highlights

How to test agent skills without hitting real APIs

Your agent skill calls an API. The moment you start evaluating it, every run either costs money or mutates production data. Learn how to mock APIs transparently so you can run evals without changing your skill or hitting real endpoints.
Read moreClick to read more about this post

Latest posts

Apr 29, 2026
Post comments count0
Post likes count0

The New Loop: How Power Pages Builds Software with AI

Priyanshu Agrawal
Introduction When I started writing software professionally in 2015, the tech landscape looked completely different. Tools and frameworks kept evolving since then, but the process of building software barely moved for a decade. That changed in the last couple of months. Here's what has...
Power Platform Developer Blog
Apr 28, 2026
Post comments count0
Post likes count0

A2A v1 Is Here: Cross-Platform Agent Communication in Microsoft Agent Framework for .NET

Sergey Menshykh
As organizations move from single-agent prototypes to multi-agent production systems, the ability for agents to communicate reliably across platforms and organizational boundaries becomes essential. With the release of A2A Protocol v1.0 and updated support in the Microsoft Agent...
Microsoft Agent Framework
Apr 28, 2026
Post comments count0
Post likes count1

Visual Studio April Update – Cloud Agent Integration

Mark Downie
GitHub Copilot in Visual Studio is becoming more agentic with every release. This update brings cloud agent integration front and center, letting you start remote coding sessions without leaving the IDE.
Visual Studio Blog
Apr 28, 2026
Post comments count0
Post likes count1

The problem: All-or-nothing batch processing in Azure Service Bus

Swapnil Nagar
Azure Functions lets you settle each Service Bus message on its own within a batch. Complete, abandon, dead-letter, or defer messages one by one to avoid duplicate processing and handle errors with precision.
Azure SDK Blog
Apr 28, 2026
Post comments count0
Post likes count1

SharePoint Framework (SPFx) roadmap update – April 2026

Vesa Juvonen
SPFx is powering the future of Microsoft 365 with AI driven portals and deep integrations across SharePoint and Microsoft 365. The April 2026 update shares new features and the roadmap for the next evolution built for the AI era. This is a transparent community driven journey that we shape together.
Microsoft 365 Developer Blog
Apr 28, 2026
Post comments count1
Post likes count8

Welcome to SkiaSharp 4.0 Preview 1

David Ortinau
SkiaSharp 4.0 Preview 1 is here. Learn all about the new features and how Uno Platform has stepped up as a co-maintainer.
.NET Blog
Apr 28, 2026
Post comments count1
Post likes count6

High-Performance Distributed Caching with .NET and Postgres on Azure

Jared Meade
Adding caching to your application architecture can significantly improve key performance metrics, cut latency, and reduce load across downstream systems. In this walkthrough, we highlight the latest caching best practices and incorporate these design patterns into a reusable .NET application that you can reference when adding new capabilities to your application stack.
.NET Blog
Apr 28, 2026
Post comments count9
Post likes count4

Combining API versioning with OpenAPI in .NET 10 applications

Sander ten Brinke
Learn how to implement API versioning in your .NET 10 applications using OpenAPI for better API management and documentation.
.NET Blog
Apr 28, 2026
Post comments count11
Post likes count2

Developing a cross-process reader/writer lock with limited readers, part 1: A semaphore

Raymond Chen
A pot of tokens.
The Old New Thing