File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 126126# "toolVersion": "1.0"
127127# }
128128# ]
129-
130129parameters :
131130- name : PackagesPath
132131 type : string
@@ -152,6 +151,15 @@ steps:
152151 arguments : ' -packagePath "${{ parameters.PackagesPath }}"'
153152 Write-Host "Pattern : $(${{ parameters.PackagesPath }})"
154153
154+ # List DLLs to be signed (diagnostic step)
155+ - task : PowerShell@2
156+ displayName : ' List DLLs to be signed'
157+ inputs :
158+ targetType : ' inline'
159+ script : |
160+ Write-Host "Listing DLLs in ${{ parameters.PackagesPath }}:"
161+ Get-ChildItem -Path "${{ parameters.PackagesPath }}" -Recurse -Filter *.dll | Select-Object FullName | ForEach-Object { Write-Host $_.FullName }
162+
155163# ESRP CodeSigning - Sign Package DLLs in batches to avoid operationSet code length exceeded error
156164- task : SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@5
157165 displayName : ' ESRP CodeSigning - Sign Package DLLs Batch 1'
You can’t perform that action at this time.
0 commit comments