我正在使用新版本的ASP.NET MVC 6(ASP.NET 5).如果我的目标是.NET CoreCLR框架(ASP.NET Core),则代码无法编译,因为我正在使用System.Security.Cryptography中的MD5CryptoServiceProvider.您能否建议使用CoreCLR框架编译的任何替代方案?
解决方法
使用软件包System.Security.Cryptography.Hashing.Algorithms中的
System.Security.Cryptography.Algorithms.
MD5.Create()
.
System.Security.Cryptography.Algorithms.
更新System.Security.Cryptography.Hashing.Algorithms目前已标记为已过时.