Skip to content

Commit e918119

Browse files
committed
added step to see the list of dll
1 parent c96e34f commit e918119

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.azdo/pipelines/steps/package-signing.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@
126126
# "toolVersion": "1.0"
127127
# }
128128
# ]
129-
130129
parameters:
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'

0 commit comments

Comments
 (0)