I installed nuget package System.Security.Cryptography.Primitives 4.3.0
,
I'm using Visual Studio 2017, NETStandard.Library 2.0.3
Target framework is netstandard2.0
Where is CryptographicOperations?
I installed nuget package System.Security.Cryptography.Primitives 4.3.0
,
I'm using Visual Studio 2017, NETStandard.Library 2.0.3
Target framework is netstandard2.0
Where is CryptographicOperations?
This makes me think you are under the assumption that .Net Standard has equal API access to .Net Core, but this is not the case. There is generally a trade-off when targeting .Net Standard, allowing for more compatibility, but giving up some API access.
dotnet --list-sdk
2.1.302 [INSTALL_LOCATION]
(At the time of writing this, this is the current version)The static class, CryptographicOperations
, is located in System.Security.Cryptography.Primitives
for .Net Core 2.1