ci: add diagnostic step to locate RDPWrapOffsetFinder.exe after build

pull/4062/head
Simon Jackson 1 month ago
parent 2ab4868136
commit 76a4101abe

@ -68,6 +68,16 @@ jobs:
/p:PlatformToolset=v143 ` /p:PlatformToolset=v143 `
/v:minimal /v:minimal
- name: Locate build outputs (diagnostic)
shell: pwsh
run: |
Write-Host "=== RDPWrapOffsetFinder.exe candidates ==="
Get-ChildItem -Recurse -Filter "RDPWrapOffsetFinder.exe" -Path "src-csharp/RDPOffsetFinder" -ErrorAction SilentlyContinue |
Select-Object FullName, Length | Format-Table -AutoSize
Write-Host "=== Directory tree (Release folders only) ==="
Get-ChildItem -Recurse -Directory -Filter "Release" -Path "src-csharp/RDPOffsetFinder" -ErrorAction SilentlyContinue |
Select-Object FullName | Format-Table -AutoSize
- name: Collect outputs - name: Collect outputs
shell: pwsh shell: pwsh
run: | run: |

Loading…
Cancel
Save