From 64caebecd33006fcd8b69677253a4e61d8cb73ab Mon Sep 17 00:00:00 2001 From: "Dustin L. Howett" Date: Thu, 8 Jan 2026 15:26:14 -0800 Subject: [PATCH] build: fix the target names after the slnx switch (#19724) It looks like the targets are named after their project _files_ rather than their names now. --- build/pipelines/templates-v2/job-build-project.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/pipelines/templates-v2/job-build-project.yml b/build/pipelines/templates-v2/job-build-project.yml index d1a6e50569..c6d84c4bad 100644 --- a/build/pipelines/templates-v2/job-build-project.yml +++ b/build/pipelines/templates-v2/job-build-project.yml @@ -133,11 +133,11 @@ jobs: $SignFragments += "wpfdotnet" } If ([bool]::Parse("${{ parameters.buildWPF }}")) { - $BuildTargets += "Terminal\Control\Microsoft_Terminal_Control" + $BuildTargets += "Terminal\Control\TerminalControl" $SignFragments += "wpf" } If ([bool]::Parse("${{ parameters.buildConPTY }}")) { - $BuildTargets += "Conhost\Host_EXE;Conhost\winconpty_DLL" + $BuildTargets += "Conhost\Host_EXE;Conhost\winconptydll" $SignFragments += "conpty" } Write-Host "Targets: $($BuildTargets -Join ";")"