From 023f9d509d69c837f559e1ab765f5645be35c468 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 13 Apr 2026 19:44:43 +0000 Subject: [PATCH 1/2] Initial plan From 32392ec9f7a265a3e05594ed1e99c673fbc5e761 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 13 Apr 2026 19:46:05 +0000 Subject: [PATCH 2/2] Fix stray brace in HandleBuildCancel trace string Agent-Logs-Url: https://github.com/dotnet/msbuild/sessions/2704aba7-0c9c-4e8d-bead-b176ac45df32 Co-authored-by: rainersigwald <3347530+rainersigwald@users.noreply.github.com> --- src/Build/BackEnd/Node/OutOfProcServerNode.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Build/BackEnd/Node/OutOfProcServerNode.cs b/src/Build/BackEnd/Node/OutOfProcServerNode.cs index afda1281ee0..bd7e295104c 100644 --- a/src/Build/BackEnd/Node/OutOfProcServerNode.cs +++ b/src/Build/BackEnd/Node/OutOfProcServerNode.cs @@ -340,7 +340,7 @@ private void HandleServerShutdownCommand(NodeBuildComplete buildComplete) private void HandleBuildCancel() { - CommunicationsUtilities.Trace("Received request to cancel build running on MSBuild Server. MSBuild server will shutdown.}"); + CommunicationsUtilities.Trace("Received request to cancel build running on MSBuild Server. MSBuild server will shutdown."); _cancelRequested = true; BuildManager.DefaultBuildManager.CancelAllSubmissions(); }