Open br8kpoint opened 2 years ago
I'll have to review. It targets net standard 2.1, so it should support 5.0 Please see the Microsoft docs on standard 2.1
The immediate thing to look into is the self reflection serialization, which is the basis for generating the XML needed to send to Chase.
Since you are getting a System.NotSupportedException error, can I ask what your development environment is?
My dev environment is dotnet core on mac. I have looked into this and it looks like the Binary Format used to copy the object for sanitization is not recommended moving forward in .net 5 so it is disabled. You can read about in here https://aka.ms/binaryformatter.
I have forked your library and am using it bypassing the sanitization parts and it is working but I would like to have those parts working as it does make sense to have sanitized version of the results as well.
Hi,
I came across your libaray and would like to use it in my dotnet core project but when I tried to use it I got a Binary Serialization error.
Is this compatible with dotnet core v5?