I have a .NET Framework library provided by a vendor (CyberSource payment processor - https://github.com/CyberSource/cybersource-sdk-dotnet /omegleshagle /voojio ).
This API is being referenced by an ASP.NET Core 3.0 application.
Everything compiles fine but when I attempt to call a method in the .NET Framework library, I get the following exception:
{"Method not found: 'Void System.ServiceModel.EndpointAddress..ctor(System.Uri, System.ServiceModel.EndpointIdentity, System.ServiceModel.Channels.AddressHeaderCollection)'."}
Things I've determined:
Is there any reasonable way to make this work?
11-16-2022 02:55 AM