Reputation: 30267
The current version of the Authorize.NET SDK is only compatible with older versions of ASP.NET Having mostly finished the app in ASP.NET Core, we would really not want to revert to an older version. All of their examples fall back to this SDK and are not very helpful. Need some help integrating their API into a ASP.NET Core app.
Upvotes: 1
Views: 3084
Reputation: 53690
There's currently an open issue for .NET Core support, but it has not been addressed yet.
Since the SDK NuGet package doesn't support .NET Standard or any PCL that's compatible with Core, you'd need to either fork the SDK and adapt it to .NET Standard, or make direct calls to the Authorize.NET API.
Upvotes: 5