Skip to content

Commit 9831e41

Browse files
committed
The strong name file list is different from the authenticode list. So, had to add a filter to strong name list.
1 parent bd2b1ef commit 9831e41

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tools/CheckSignature.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ function Check-All {
5050
$invalidList = @()
5151

5252
$files = Get-ChildItem $path\* -Include *.dll -Recurse | Where-Object { $_.FullName -like "*Azure*" }
53+
$files = $files | Where-Object { ($_.FullName -notlike "*System.Management.Automation*") }
5354
Write-Host "Checking the strong name signature of $($files.Count) files (.dll)" -ForegroundColor Yellow
5455

5556
$invalidStrongNameList = @()

0 commit comments

Comments
 (0)