Microsoft
Developer Blogs

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

Highlights

dotnetconf 2026 image

Azure DevOps in the GitHub Copilot App

The Azure DevOps plugin is now available for the GitHub Copilot app, allowing you to view and manage Azure DevOps pull requests and work items directly in the Copilot app. What you can do The initial release supports: View your work items and pull requests from My Work Open work items...
Read moreClick to read more about this post

Agent Harness: Making your claw production-ready

Part 4 of Build your own claw and agent harness with Microsoft Agent Framework. Over the last three parts our personal finance assistant grew from a single tool into a genuinely capable agent: it plans, reads your portfolio, asks before it trades, remembers what matters, loads skills...
Read moreClick to read more about this post

Latest posts

Image
Sep 3, 2026
Post comments count 0
Post likes count 0

SQL Decomposition in a Nutshell

Image
Jerry Nixon

Good software design principles apply inside the database too. See how decomposition, encapsulation, statelessness, and clear contracts can make complex T-SQL easier to read, test, reuse, and maintain.

Image
Sep 3, 2026
Post comments count 1
Post likes count 0

Advocating for Uptime: The 6 Phases of Change

Image
Jerry Nixon

Schema changes are inevitable, but downtime doesn’t have to be. Learn a phased approach to safely evolve a production SQL schema while applications remain online.

Image
Sep 3, 2026
Post comments count 0
Post likes count 1

Test what you ship: MSTest and Native AOT

Image
Amaury Levé

MSTest source generation lets test projects use the same Native AOT and trimming deployment model as the applications they validate, while reducing reflection on the test execution path.

Image
Sep 3, 2026
Post comments count 0
Post likes count 0

The case of the progress callback that never got called when progress happened

Image
Raymond Chen

Are you talking to the right guy?

Image
Sep 2, 2026
Post comments count 0
Post likes count 0

Go 1.27.1-1 and 1.26.8-1 Microsoft builds now available

Image
Davis Goodin

A new release of the Microsoft build of Go is now available for download.

Image
Sep 2, 2026
Post comments count 5
Post likes count 4

Stop alt-tabbing into the wrong Visual Studio

Image
Mads Kristensen

A user asked for per-solution color themes. It already ships, and it goes further than they asked. You run several instances of Visual Studio side by side, one per solution, and they all look identical. Same taskbar icon, same alt-tab thumbnail, same chrome. So, you land in the wrong one, start typing, and realize thirty seconds later you just edited the wrong repo. Could each solution get its own color theme? It can. It already does. And the way it works turns out to be more useful than a personal color preference. How to do it This uses the new settings experience introduced in Visua...

Image
Sep 2, 2026
Post comments count 5
Post likes count 2

The perils of binding to value types in XAML

Image
Raymond Chen

Loss of identity.

Image
Sep 2, 2026
Post comments count 0
Post likes count 0

Behind SPFx Dev Skills: testing what agents know and fixing what they miss

Image Image Image
Waldek,
Vesa,
Garry

How much guidance does an AI coding agent actually need? See how we used evaluation data to target SPFx knowledge gaps, improving results without wasting tokens on what models already know.

Image
Sep 1, 2026
Post comments count 0
Post likes count 1

Servicing While In Use and ERROR_PACKAGES_IN_USE

Image
Howard Kapustein

How does MSIX service a package while it's in use? Simple: It doesn't. A core principle of MSIX servicing is: Do not service a package while it's in use. Deployment provides several ways to deal with that constraint. Options range from terminating applications to deferring servicing until the package is no longer in use. How hard can it be? 'Servicing a package' means any deployment activity modifying software, including update, remove, repair and other operations. Altering installed software can be highly disruptive if the software is in use. Executables and DLLs may be mapped into running processes. File...

Image
Sep 1, 2026
Post comments count 0
Post likes count 0

Today I will… review GitHub PRs

Image
Aaron Powell

Today I will show you how we can tackle one of the most common tasks when working in a development team or managing an open-source project, and that is working with Pull Requests. While we're going to be using the GitHub tooling within Visual Studio for this, the approach would be very similar with Azure DevOps. Getting our PRs Start by opening the pull requests for your repository. Select Git → GitHub → View Pull Requests. You can also search for the command in the Command Palette with Ctrl+Shift+P. From here, Visual Studio will load all the PRs in the repo and group them to the ones that are assigned to m...

Image
Sep 1, 2026
Post comments count 2
Post likes count 2

Microspeak: Funded / unfunded

Image
Raymond Chen

People are our most valuable asset.

Image
Aug 31, 2026
Post comments count 2
Post likes count 4

Enterprise Live Migrations is now in public preview

Image
Soo Stahl

Move Azure DevOps repositories to GitHub Enterprise Cloud with data residency while minimizing disruption Over the last several years, we’ve encouraged customers to move their repositories from Azure Repos to GitHub to take advantage of the latest AI-powered and agentic development experiences. We know that making this move at enterprise scale isn’t always straightforward. Critical repositories can’t simply be taken offline for days, and large migrations often require complex coordination and extended development freezes. ELM is designed to make these migrations more predictable, with minimal disruption to deve...

Image
Aug 31, 2026
Post comments count 0
Post likes count 0

Power Azure SRE Agent with the tools it needs

Image
Lily Ma

Use Azure Connector Namespace to host MCP servers and give Azure SRE Agent access to the operational tools it needs without managing the server infrastructure yourself.

Image
Aug 31, 2026
Post comments count 0
Post likes count 0

Bacpac and Dacpac, the similarities and differences

Image
Drew Skwiers-Koballa

When you need to move an entire database or move the objects in a database, bacpac and dacpac files often come up because of all of the tooling options to interact with them. Bacpac and dacpac files share some core similarities as well as some major differences in how they're used in SqlPackage and other SQL tools, but their flexibility can create a bit of confusion. In this post, we are going to discuss exactly what makes bacpac specifically important, as well as explore the options that a dacpac is capable of. A bacpac is primarily a portable copy of schema and data whose model is limited to the Azure SQL Data...

Image
Aug 31, 2026
Post comments count 11
Post likes count 3

AWE does not require PAE, though PAE makes it much more useful

Image
Raymond Chen

All dressed up with nowhere to go.

Image
Aug 29, 2026
Post comments count 0
Post likes count 2

Only believe what you can validate: a verification framework for agentic AI

Image
jkordick

How to read this article This article picks up where my January piece left off. My catch phrase is still the same: "only believe what you can validate". This article is about validation. If you are new to agentic AI (in modernization contexts), I would highly recommend reading The Realities of Application Modernization with Agentic AI first. Start there, then come back. The problem with "looks good to me" I have had a version of the same conversation many times over the last months. I work with a customer on an agentic application modernization. In this concrete example we are facing one of 150 COBOL module...

Image
Aug 28, 2026
Post comments count 2
Post likes count 2

Try the new SqlClient and Retry connections natively

Image
Jerry Nixon

Microsoft.Data.SqlClient includes configurable retry logic for SqlConnection and SqlCommand, giving .NET applications built-in resilience for transient SQL Server failures without requiring Polly.

Image
Aug 28, 2026
Post comments count 5
Post likes count 2

On forcing all derived classes to implement a specific non-virtual method, part 2

Image
Raymond Chen

Explicitly denying that you implement the method.

Image
Aug 27, 2026
Post comments count 2
Post likes count 1

SharePoint Framework (SPFx) roadmap update – August 2026

Image
Vesa Juvonen

SPFx 1.24 Beta 3 is now available, React 18 support is coming in 1.24, and a new Copilot Components preview program opens for customers and partners.

Image
Aug 27, 2026
Post comments count 0
Post likes count 0

Azure Developer CLI (azd) – August 2026

Image Image
Kristen,
Jeffrey

Welcome to the August 2026 edition of the Azure Developer CLI () release blog. This post covers releases 1.30.0, 1.31.0, 1.31.1, 1.31.2, and 1.32.0. To share your feedback and questions, join the August release discussion on GitHub. Highlights: New features 🔌 Extensions The extension framework reached general availability this month. Read more in The Azure Developer CLI extension framework is generally available. 📦 Container deployment Breaking changes 🪲 Bugs fixed Provisioning and deployment Pipelines and update...

Image
Aug 27, 2026
Post comments count 0
Post likes count 0

How Uno Platform uses .NET, MCP, and AI to build high quality apps

Image
Sam Basu

How Uno Platform built two Model Context Protocol servers in C# so AI agents can ground themselves in real documentation and then see and drive a running cross-platform .NET app.

Image
Aug 27, 2026
Post comments count 0
Post likes count 1

Agent Harness: Making your claw production-ready

Image
Wes Steyn

Part 4 of Build your own claw and agent harness with Microsoft Agent Framework. Over the last three parts our personal finance assistant grew from a single tool into a genuinely capable agent: it plans, reads your portfolio, asks before it trades, remembers what matters, loads skills on demand, reorganizes files with a shell, computes with CodeAct, and fans research out to background agents. It works on your machine. But "works on my machine" isn't the same as ready to run for other people. This final part closes that gap along four axes: To get there we make one structural change. Up t...

Image
Aug 27, 2026
Post comments count 0
Post likes count 0

VSLive! @ Microsoft HQ: Developer Takeaways and Must-Watch Sessions

Image
James Rempt

VSLive! @ Microsoft HQ 2026 was one of the most energizing VSLive! events I’ve attended. What stood out was the level of engagement over five days of learning and conversation from July 27 through July 31. Developers came ready to dig into the future of Visual Studio, .NET, and AI-assisted software development, and many Microsoft engineers and product managers were there to have those conversations directly.  If you weren’t able to join us in Redmond, there’s still plenty you can take away from the event. The Microsoft-led sessions were recorded, so you can catch up on many of the topics that generated som...

Image
Aug 27, 2026
Post comments count 1
Post likes count 3

On forcing all derived classes to implement a specific non-virtual method, part 1

Image
Raymond Chen

Don't implement a stub. Just don't implement it at all.

Image
Aug 27, 2026
Post comments count 2
Post likes count 4

Azure DevOps in the GitHub Copilot App

Image
Dan Hellem

The Azure DevOps plugin is now available for the GitHub Copilot app, allowing you to view and manage Azure DevOps pull requests and work items directly in the Copilot app. What you can do The initial release supports: You can find your assigned work, make changes, and complete pull requests without leaving the GitHub Copilot app. Get started Open the GitHub Copilot app and select Customize. From the Editor's picks tab, find and install the Azure DevOps plugin. Once the plugin is installed, start a new session from chat or select New session from the plugin card under Editor's picks. Sign in and ent...

Image
Aug 26, 2026
Post comments count 0
Post likes count 0

I Need My CI/CD Pipeline to Access Cosmos DB Without Using a Secret

Image Image
Iria,
Sudhanshu

In the last post we walked through why RBAC broke your app and how to fix it. Your app is now running on a managed identity, keys are off, and everything is green. Then your build pipeline runs, and it needs to seed test data. Suddenly you're staring at a secret in your CI settings and wondering if you just undid all that work. As we continue this security series, let's get your pipeline to Cosmos DB with no secret anywhere.  The situation  You did the hard part. Your app uses , you assigned a data plane role, and you set . Passwordless, done.  Then you look at your CI/CD pipeline and find this sitting in yo...

Image
Aug 26, 2026
Post comments count 1
Post likes count 0

The Visual Studio Debugger Agentic Workflow Gets a Test-Driven Upgrade

Image
Harshada Hole

A few months ago, we introduced a new guided agentic workflow in the Visual Studio Debugger Agent designed to help you move from a bug report to a verified fix without spending your morning guessing where to begin.   If you missed that announcement, check out  Stop Hunting Bugs: Meet the New Visual Studio Debugger Agent to see how the Agent builds a hypothesis, guides the debugger, investigates your application at runtime, and validates the final change.  Today, we’re building on that experience with a new Test-Driven Investigation workflow. The Debugger Agent can now create or identify a focused test, debug th...

Image
Aug 26, 2026
Post comments count 1
Post likes count 1

Introducing agent and workflow channels

Image
Eduard van Valkenburg

An agent or workflow is only useful when people and other systems can reach it through the interfaces and channels they already use. That might be an OpenAI Responses client, Telegram, another agent using A2A, or an MCP client. As a builder of agents and workflow, you need control over which channels you expose it to and how it behaves. To help, we're introducing channels in Microsoft Agent Framework for agents and workflows in Python. Choose the channels your application needs The new packages are organized around a small shared hosting core and a set of channel-specific integrations: ...

Image
Aug 26, 2026
Post comments count 3
Post likes count 10

Copilot Code Reviews for Azure Repos (public preview)

Image
Dan Hellem

Today, we’re announcing the public preview of GitHub Copilot Code Review for Azure Repos, making the feature available to all Azure DevOps customers using the service. There’s no longer a need to sign up for early access. Customers can now enable Copilot Code Review for their Azure Repos repositories and start using it. With the public preview, we’re also introducing several improvements we’ve made over the past couple of months based on what we’ve learned during the technical preview. Before getting started, be sure to read the official documentation for details on how Copilot Code Review works, how to enable ...

Image
Aug 26, 2026
Post comments count 9
Post likes count 1

In the product end game, every change carries significant risk, episode 2

Image
Raymond Chen

The smallest perturbation.

Image
Aug 25, 2026
Post comments count 3
Post likes count 7

.NET Conf 2026 – Save the Date

Image
Jon Galloway

.NET Conf returns November 10-12, 2026, with three days of sessions, community, and the launch of .NET 11.

Image
Aug 25, 2026
Post comments count 0
Post likes count 2

What Kind of Packaged Process Is It?

Image
Howard Kapustein

As previously discussed, we can divide processes into the two broad categories of packaged vs unpackaged, based on if the process HAS or LACKS package identity. Packaged processes can be divided into three broad categories: All three have package identity, but they make different tradeoffs between compatibility and modern packaged behavior. RuntimeBehavior Packages specify how an application process is created and runs via multiple properties in . The RuntimeBehavior attribute clearly expresses this: is a Universal app. It was first introduced in Windows 81. New lingo appeared with it, initially ref...

Image
Aug 25, 2026
Post comments count 0
Post likes count 0

Start here: Azure SQL Foundations series

Image
Anna Hoffman

Most developers I talk to aren't asking whether Azure SQL Database can handle their next app. They're asking where to start when it comes to modernization, migration, and AI in the database. If you're reading this, you're probably in a similar boat: you've got an existing schema or databases, a scaling question you haven't had to answer yet, and a growing list of AI features you're expected to have an opinion about. That's why we built the path we kept describing in calls, with customers, and in the community. The Azure SQL Database Foundations series are four videos that take you from your first Hyperscal...

Image
Aug 25, 2026
Post comments count 0
Post likes count 2

Visual Studio August Update — Work Smarter Across Models and Branches

Image
Mark Downie

Tune Copilot model thinking effort, share custom agents across your organization, track usage, and simplify complex Git workflows with worktrees and submodule support.

Image
Aug 25, 2026
Post comments count 0
Post likes count 0

Try Azure SRE Agent with no always-on charges

Image
Nir Mashkowski

We are happy to announce a 30-day trial experience for Azure SRE Agent. New customers can create and configure the SRE Agent at their own pace, with no charges for setup time or keeping agents ready. During the trial, you can connect your agents to telemetry, source code, incident management platforms, and other operational tools, and pay only for the Azure Agent Units (AAUs) consumed when your agents perform work. We are also excited to share the GA of Azure SRE Agent VNet integration and the Public Preview of Live Reports. With VNet support, the agent operates under your existing network controls, so it can ...

Image
Aug 25, 2026
Post comments count 9
Post likes count 4

Why didn’t the Windows Entertainment Pack just run the MS-DOS version inside an emulator?

Image
Raymond Chen

It wouldn't be a <I>Windows</I> Entertainment Pack then, would it?

Image
Aug 25, 2026
Post comments count 3
Post likes count 0

PowerToys 0.101 is here: Window Hopper, Insider updates, and Command Palette compact mode

Image
Niels Laute

We're back with a fresh PowerToys release! PowerToys 0.101 introduces Window Hopper for quickly moving between windows from the same app, a redesigned update experience with Stable and Insider channels, and compact mode for Command Palette. This release also continues our WinUI 3 modernization, brings on-device Phi Silica transformations to Advanced Paste, and adds a big set of improvements across PowerDisplay and Shortcut Guide. Grab the update by checking for updates in PowerToys or by heading to the release page. Let's dive in! 🪟 Meet Window Hopper If you regularly have several windows open from the same a...

Image
Aug 24, 2026
Post comments count 9
Post likes count 1

Unlocking the Power of AI for Every Developer in Visual Studio with Bring your Own Model

Image
Tanmayee Kamath

The best AI in Visual Studio is the AI you can bring with you. Developers don't work in a single-model world anymore. You might reach for one model for everyday coding, another for a domain-specific problem, and an approved model for work that must stay within your organization's governance boundaries. So, the question we hear most often isn't which model is best. It's, can I use mine? We're bringing Bring Your Own Model (BYOM) in Preview to Visual Studio, making it available and enabled by default across Community, Professional, and Enterprise SKUs. This Preview focuses on the developer experience available t...

Image
Aug 24, 2026
Post comments count 0
Post likes count 0

Java OpenJDK August 2026 Critical Patch Update

Image
Luigi Montoya

Hello Java customers! We are happy to announce the latest August 2026 critical patch update release for the Microsoft Build of OpenJDK. Check our release notes page for details on fixes and enhancements or download and install the binaries today. The source code of our builds are now available on GitHub for further inspection: Microsoft Build of OpenJDK specific updates OpenJDK 25 OpenJDK 21 OpenJDK 17 OpenJDK 11 Summary of Upstream Updates OpenJDK Vulnerability Advisory August 2026 OpenJDK 25 OpenJDK 21 OpenJDK 17 ...

Image
Aug 24, 2026
Post comments count 7
Post likes count 2

From dotnet run to Foundry Hosted Agent in 3 lines of C#

Image
Bruno Capuano

You built an agent with Microsoft Agent Framework and it works great on your machine. Now what? Turns out deploying it to production takes 1 NuGet package, 3 lines of C#, and 2 commands. Let's do it.

Image
Aug 24, 2026
Post comments count 5
Post likes count 5

Explore new features available in C# 15 preview

Image
Bill Wagner

C# 15 ships with .NET 11. It adds union types, closed hierarchies, a preview of the updated unsafe model, and a few smaller changes that remove everyday ceremony.

Image
Aug 24, 2026
Post comments count 0
Post likes count 1

Powering Memory in Foundry Agent Service, with Azure Cosmos DB

Image
Theo van Kraay

Move from a locally composed memory-enabled agent to a deployed Foundry Agent Service agent, with keyless Azure infrastructure and an interactive browser sample. In Native Agent Memory for Microsoft Agent Framework, Powered by Azure Cosmos DB, we introduced : a Microsoft Agent Framework context provider that extracts useful information from conversations, stores it in Azure Cosmos DB, and retrieves it before later agent runs. That article used a locally composed Agent Framework agent and . It was a useful way to isolate the memory concepts: one provider, two lifecycle hooks, and a stable u...

Image
Aug 24, 2026
Post comments count 5
Post likes count 6

Comparing the two holograms on the Windows 95 box

Image
Raymond Chen

Filling in with your imagination.

Image
Aug 21, 2026
Post comments count 8
Post likes count 7

Today I will… Modernize a .NET application

Image Image
Matt,
Pablo

Today I will modernize a .NET Framework application to .NET 10 using the GitHub Copilot modernization tooling built-in to Visual Studio.   The tooling helps us upgrade applications running on legacy versions of .NET and also migrate them to Azure. Today we're going to focus on the upgrade portion.   And, the tooling will do all the work for us! But it doesn't do everything at once, and that's good. It introduces checkpoints into the .NET upgrade process to tell us what it has been up to we can then guide it towards the outcome we want. And at each of those checkpoints it creates a markdown file t...

Image
Aug 21, 2026
Post comments count 0
Post likes count 3

Reducing C++ template bloat by factoring out the type-dependent portions of the function, practical exam

Image
Raymond Chen

Applying our principles.

Image
Aug 20, 2026
Post comments count 0
Post likes count 3

Reducing C++ template bloat by factoring out the type-dependent portions of the function

Image
Raymond Chen

Looking for consolidation points.

Image
Aug 20, 2026
Post comments count 0
Post likes count 1

Go 1.27.0-1 Microsoft build now available

Image
Davis Goodin

A new release of the Microsoft build of Go is now available for download.

Image
Aug 20, 2026
Post comments count 0
Post likes count 0

Go 1.26.7-1 and 1.25.14-1 Microsoft builds now available

Image
Davis Goodin

A new release of the Microsoft build of Go is now available for download.

Image
Aug 19, 2026
Post comments count 0
Post likes count 0

Outgrowing SQL Server Express? Upgrade to Azure SQL Database Free Tier in 3 Steps

Image Image
Vandana,
Amit

If you’ve been building local prototypes, internal tools, web backends, or lightweight services on SQL Server Express, you know the routine: it’s free, familiar, and gets the job done – until you hit hardware limits or spend weekends manual backup scripts and handling OS patches. Learn how to upgrade from SQL Server Express to Azure SQL Database free tier in 3 simple steps. Whether you're running SQL Server 2022 (or older) and hitting the hard 10 GB storage wall, or using SQL Server 2025 and realizing 50 GB of disk space doesn't solve the strict 1.4 GB memory bottleneck, staying on Express limits your applica...

Image
Aug 19, 2026
Post comments count 0
Post likes count 0

MSSQL Extension for VS Code: SQL Formatter, Azure SQL Database Provisioning, and More

Image
Yo-Lei Chen

Writing and maintaining SQL is easier when you can eliminate repetitive steps and keep your scripts cleanly formatted. With the MSSQL extension for VS Code v1.45, we're introducing the Public Preview of the SQL Formatter alongside the General Availability of Azure SQL Database Provisioning and Shortcuts Configuration. You can now apply consistent T-SQL formatting across your projects, create free tier cloud databases with automated post-deployment actions, and streamline frequently used commands and queries directly inside Visual Studio Code. What's new in MSSQL extension for VS Code v1.45 Here's a summary of t...

Image
Aug 19, 2026
Post comments count 11
Post likes count 4

On wrapping a callable in a lambda that just calls it with the same parameters

Image
Raymond Chen

Just use the callable directly.

Image
Aug 18, 2026
Post comments count 0
Post likes count 5

Aspire 13.5: Fresh pixels and better workflows

Image
Maddy Montaquila

Aspire 13.5 refreshes the dashboard and aspire.dev, expands the Interaction Service, adds cross-scope Azure references and Kubernetes persistent volumes, and brings live terminals into the AppHost.

Image
Aug 18, 2026
Post comments count 0
Post likes count 1

Announcing AppxManifest IntelliSense Support in the WinApp VS Code Extension

Image
Chiara Mooney

The WinApp VS Code extension exists to make Windows app development feel at home in VS Code. It brings the Windows App Development CLI right into the editor, so you can initialize, run, debug, define the identity of, package, and sign Windows apps built with .NET, WPF, WinUI, C++, Electron, Rust, Tauri, or Flutter, all without switching tools. Get it now: Install the WinApp extension from the VS Code Marketplace. We're excited to announce the release of v0.3.0. This release brings schema-aware IntelliSense to your manifest files, adds workspace search to the commands that require a file or folder, and i...

Image
Aug 18, 2026
Post comments count 0
Post likes count 2

Azure Cosmos DB in the Agentic Era: Data Tools for Developers and AI Agents

Image
Sajeetharan Sinnathurai

Anthropic's 2026 Agentic Coding Trends Report captures an important tension in how developers use AI. Engineers report using AI in roughly 60% of their work, yet say they can fully delegate only 0–20% of their tasks. AI is becoming a constant collaborator, but it still needs setup, supervision, validation, and human judgment. That gap is especially relevant when an agent starts working with a database. Database requests often sound easy.  “Show me the failed orders from last week.” “Why is this query expensive?” “Does this container have the field I need?” For a developer, answering those question...

Image
Aug 18, 2026
Post comments count 2
Post likes count 2

The Two Hybrid Searches in Microsoft SQL

Image
Jerry Nixon

Hybrid search is usually described as combining keyword search with vector search. Microsoft SQL does that, for sure, but we do quite a bit more right out of the box. SQL dynamically evaluates queries and switches between kNN and ANN vector search based on cost and selectivity. These two types of hybrid search, work together, ensuring your semantic queries return the best possible results to your apps and agents. Text search In 1998, Microsoft Research Cambridge welcomed Stephen Robertson, one of the principal architects of BM25, or Best Matching 25, the relevance-ranking algorithm that became foundational to m...

Image
Aug 18, 2026
Post comments count 0
Post likes count 2

What’s a PFN?

Image
Howard Kapustein

What's a PFN? MSIX introduced Package identity in Windows 8. While the familiar package identity "5-tuple" was functional, it wasn't especially convenient to pass through APIs or embed in resources such as files, registry keys, URLs, or XML documents. To address this, Windows defined an opaque string representation known as a Package Moniker. Windows called a related identifier derived from a package's Name and Publisher the Package Family Moniker. These were commonly abbreviated as PM and PFM. As development progressed, Windows quite sensibly required new APIs to pass through API Design Review. The review tea...

Image
Image
Aug 18, 2026
Post comments count 3
Post likes count 0

Apple Silicon and Xcode 27 images available in pay-as-you-go (preview)

Image
Eric van Wijk

Apple developers can now build and test their applications natively on Apple Silicon in Azure Pipelines. New arm64 macOS agents are available in public preview through the pay-as-you-go GitHub-hosted Agents pool. Starting with Apple Silicon, Azure Pipelines is bringing over some of the agent sizes already available in GitHub Actions. The preview includes the following macOS images: Running workloads directly on Apple Silicon avoids the overhead and compatibility limitations of emulating arm64 on Intel hardware. It also lets teams validate applications against the same architecture used by current Apple device...

Image
Aug 17, 2026
Post comments count 0
Post likes count 2

From single call to agents: five new Claude capabilities now available in Microsoft Foundry

Image
Haoran Cheng

Structured outputs, web search, web fetch, MCP connector, and tool search are now available for Claude models hosted on Azure in Microsoft Foundry, turning a model endpoint into a production agent platform.

Image
Aug 17, 2026
Post comments count 1
Post likes count 4

How do functions like alloca allocate memory from the stack?

Image
Raymond Chen

The usual probing.

Image
Aug 17, 2026
Post comments count 0
Post likes count 0

Beyond Vector Indexes: Azure SQL Brings Optimizer Intelligence to Vector Search

Image
Pooja Kamath

Why production AI retrieval depends on more than vector index performance.  It's easy to think of AI retrieval as a vector search problem. For many developers, the first conversation starts with vector index benchmarks: How many queries per second can it handle? What's the latency? What's the recall? How well does it scale? Those metrics are critical, but production AI retrieval rarely consists of vector similarity alone. Equally important is what happens when vector search becomes part of a real application workload, one that includes filters, joins, security policies, ranking logic, and live operational d...

Image
Aug 14, 2026
Post comments count 0
Post likes count 1

Windows App Development CLI v0.6 – create new WinUI applications, sign packages with Azure, and more

Image
Zachary Teutsch

Windows App Development CLI v0.6.0 has just shipped and contains a ton of new features. Much of the changes in this release focus on getting from zero to a running app faster: scaffold a fresh WinUI project with a single command, search real WinUI controls and samples without leaving the terminal, and run your app straight from a .csproj with no manual build step first. It also adds cloud-based artifact signing, sparse-package workflows, and agent-friendly UI recordings. Grab it with winget install Microsoft.WinAppCLI, or head to the repo for npm and other install options. Here's a tour of the highligh...

Image
Aug 14, 2026
Post comments count 12
Post likes count 5

Forcing an ARM64X executable to run as a specific architecture

Image
Raymond Chen

You can request the target machine architecture.

Image
Aug 14, 2026
Post comments count 0
Post likes count 1

Git-APE SaaS Factory

Image Image Image
davidwright,
Arnaud,
Suzanne

Agentic Platform Engineering for SaaS.  Accelerating the Path to Market with Git-APE If you are an ISV building SaaS on Azure, the first demo is usually the easy part. The harder work is turning that proof of concept into a secure, scalable, commercial-ready service that can be operated confidently in production. That gap shows up quickly. Tenant isolation, identity, entitlement, marketplace fulfilment, metering, cost controls, observability, compliance evidence, and a clean path from customer purchase to tenant provisioning all need to be designed in, not bolted on later. None of those are side quests....

Image
Aug 14, 2026
Post comments count 0
Post likes count 0

Go 1.26.6-1 and 1.25.13-1 Microsoft builds now available

Image
Davis Goodin

A new release of the Microsoft build of Go including security fixes is now available for download.

Image
Aug 13, 2026
Post comments count 0
Post likes count 0

Clearer Build Optimization Results with GitHub Copilot

Image
David Li

We know that slow builds are a consistent theme in feedback from C++ developers. Your feedback helped us to shape GitHub Copilot build performance for Windows, an agent that can trace your build, find bottlenecks, apply optimizations, and measure the result. When using the agent, the clearest outcome is a straightforward win. The agent changes your project, rebuilds it, and shows how your build is made faster. Sometimes, a change may make a clean rebuild slightly slower while improving the incremental builds you run throughout the day. At other times, we also observed that optimizations may help without reachi...

Image
Aug 13, 2026
Post comments count 0
Post likes count 4

MSVC Build Tools Preview updates – August 2026

Image
Eric Brumer

Try the latest updates to MSVC Build Tools Preview

Image
Aug 13, 2026
Post comments count 0
Post likes count 2

Routing and Failover for Microsoft.Extensions.AI

Image
Joshua Yue

Route requests across models and providers natively in Microsoft.Extensions.AI with RoutingChatClient, SemanticRoutingChatClient, and FailoverChatClient — new experimental primitives for content-based routing, failover, and custom routing policies.

Image
Aug 13, 2026
Post comments count 0
Post likes count 2

Your best friend: BlockOnPossibleDataLoss=True

Image
Jerry Nixon

BlockOnPossibleDataLoss can frustrate developers, but it's one of the most important safeguards in database deployment. Here's how to keep your local development loop fast while protecting the data that matters.

Image
Aug 13, 2026
Post comments count 2
Post likes count 5

A little helper class for managing LPPROC_THREAD_ATTRIBUTE_LISTs

Image
Raymond Chen

Another RAII-style wrapper.

Image
Aug 13, 2026
Post comments count 3
Post likes count 2

Building Agents for Teams: Managing the noise of collaboration

Image
Lily Du

Most of us are familiar with one-to-one agent chats: private, direct interactions where rules are relatively simple. With only you and the agent, each moment has clear intent. You can ask follow-up questions, pause, or restart without worrying about how each exchange affects anyone else. Collaboration in groups works differently. Every message competes for attention, and a reply that is helpful to one individual may interrupt five others. Effective collaboration is built on countless small social judgments and gestures: deciding when to respond or stay quiet, choosing how much to say, and using the conventions...