Skip to content

Commit ed850de

Browse files
authored
Update CheckSignature Authenticde check to exclude NLog dependency
1 parent d003249 commit ed850de

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/CheckSignature.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ function Check-All {
7474
$files = $files | Where-Object { ($_.FullName -notlike "*Newtonsoft.Json*") -and `
7575
($_.FullName -notlike "*AutoMapper*") -and `
7676
($_.FullName -notlike "*Security.Cryptography*") -and `
77+
($_.FullName -notlike "*NLog*") -and `
7778
($_.FullName -notlike "*BouncyCastle.Crypto*")}
7879
Write-Host "Checking the authenticode signature of $($files.Count) files (.dll, .ps1, .psm1)" -ForegroundColor Yellow
7980

@@ -209,4 +210,4 @@ else
209210
Write-Host "No switch parameter set - checking all files in current directory" -ForegroundColor Yellow
210211
}
211212

212-
Check-All $path
213+
Check-All $path

0 commit comments

Comments
 (0)