File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -54,10 +54,14 @@ function Verify-Assemblies
5454 elseif ($signature.SignerCertificate.Thumbprint -eq " 5EAD300DC7E4D637948ECB0ED829A072BD152E17" ) {
5555 Write-Log " Valid (Prod Signed): $ ( $_.FullName ) ."
5656 }
57- # For some dlls e.g. "Interop.UIAutomationClient.dll", sign certificate is different signature. Skip such binaries.
57+ # For some dlls e.g. "Interop.UIAutomationClient.dll", sign certificate is different signature. Skip such binaries.
5858 elseif ($signature.SignerCertificate.Thumbprint -eq " 67B1757863E3EFF760EA9EBB02849AF07D3A8080" ) {
5959 Write-Log " Valid (Prod Signed): $ ( $_.FullName ) ."
6060 }
61+ # For some dlls e.g. "Microsoft.VisualStudio.ArchitectureTools.PEReader.dll", sign certificate is different signature. Skip such binaries.
62+ elseif ($signature.SignerCertificate.Thumbprint -eq " 9DC17888B5CFAD98B3CB35C1994E96227F061675" ) {
63+ Write-Log " Valid (Prod Signed): $ ( $_.FullName ) ."
64+ }
6165 else {
6266 Write-FailLog " Incorrect certificate. File: $ ( $_.FullName ) . Certificate: $ ( $signature.SignerCertificate.Thumbprint ) ."
6367 }
You can’t perform that action at this time.
0 commit comments