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.
This commit is contained in:
Dustin L. Howett
2026-01-08 15:26:14 -08:00
committed by GitHub
parent 3c2eb594a5
commit 64caebecd3

View File

@@ -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 ";")"