Nuget 包未使用 System.Security.Cryptography 找到 and/or
Nuget package is not finding and/or using System.Security.Cryptography
我正在为个人开发编写一些 nuget 包,但我遇到了一些依赖性问题。我正在编写一个安全包,我需要 System.Security.Cryptography
,我可以添加一个 using 语句(当导航栏位于 Framework
而不是 Client
时),但是一旦我尝试构建 我收到很多错误,告诉我 Cryptography
不存在于 System.Security
命名空间中。难道只是 Nuget 包不支持 System.Security?还是我遗漏了什么?
首先将引用 System.Security 添加到您的解决方案并构建解决方案,然后将 System.Security.Cryptography 添加到您的解决方案..它对我有用...
我正在为个人开发编写一些 nuget 包,但我遇到了一些依赖性问题。我正在编写一个安全包,我需要 System.Security.Cryptography
,我可以添加一个 using 语句(当导航栏位于 Framework
而不是 Client
时),但是一旦我尝试构建 我收到很多错误,告诉我 Cryptography
不存在于 System.Security
命名空间中。难道只是 Nuget 包不支持 System.Security?还是我遗漏了什么?
首先将引用 System.Security 添加到您的解决方案并构建解决方案,然后将 System.Security.Cryptography 添加到您的解决方案..它对我有用...