Remove the MD5 branch in the strong name signing token calculation (#24288)

This commit is contained in:
Dongbo Wang 2024-09-17 17:09:53 -07:00 committed by GitHub
parent 4fdc02b698
commit 0b3709b1e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -235,9 +235,6 @@ DUPLICATE key '{fullName}' from '{strongAssemblyName}' (IsObsolete? {isTypeObsol
case AssemblyHashAlgorithm.Sha1:
hashImpl = SHA1.Create();
break;
case AssemblyHashAlgorithm.MD5:
hashImpl = MD5.Create();
break;
case AssemblyHashAlgorithm.Sha256:
hashImpl = SHA256.Create();
break;