Hy Everyone!
I'm developing a .Net Core class library project, but I have to use a class from .Net Framework DLL called System.Security, which is unavailable in Core.
(The class is the SignedXml.cs in System.Security.Cryptography.Xml namespace. - Yes I know that namespace and class exists in Core too, but the SignedXml is not the same, there are some private fields which are missing (m_refProcessed, m_refLevelCache etc.).)
I have to use the old class.
Is there any solution to import System.Security in my Core project and extend the SignedXml class? Or just import the SignedXml class?
Thank you!
I tried to replicate what you want to do, but, it obviously failed, what you could do, is adding a new .net framework solution to the project, and call it when needed, that way you'll be able to use the library you need.