Are there any plans on the roadmap for supporting .NET core with the Authorize.NET client library? Currently if I try installing the library via package manager I get an error saying it's incompatible with NETCoreApp, Version 1.1.
12-12-2016 02:38 PM
Short answer: Yes! We're excited about the direction Microsoft is taking .NET, and definitely would like to make sure our SDK supports Core.
Longer answer:
The .NET core APIs are built on the “.NET Standard Library”, which is the common library of APIs meant to be available on all .NET runtimes going forward. The .NET Standard Library is currently a subset of existing APIs from the .NET Framework and some new APIs (introduced with what Microsoft was previously referring to as .NET 5 or ASP.NET 5).
Unfortunately, our current .NET SDK doesn’t work for .NET Core apps because not all of the APIs we call are included in .NET Standard. Almost all of them are, but there are a few we’ll have to find replacements for. Rest assured, we’re actively looking to modify the SDK to target just .NET Standard, and hope to have either a new Core package or a unified .NET package sometime soon. You can follow the effort (or contribute yourself!) at our .NET SDK GitHub repository.
12-12-2016 03:57 PM
Is there any way to implement Authorize.Net in asp.net core application????????????
08-17-2017 02:13 AM
You are now able to use .net framework packages with asp core 2.0. The Authorize.net still won't work with asp core due to ConfigurationManager being used in the class. For the time being I created a nuget package AuthorizeNet.Fork.Aspcore2. The only difference from the main is all ConfigurationManager calls have been removed and the framework has been updated to .net461. I haven't fully tested it yet, but created it because I need it for a current asp core project.
https://www.nuget.org/packages/AuthorizeNet.Fork.Aspcore2/
08-21-2017 12:28 PM
Implementing Authorize.net API calls in .Net Core is very easy : https://community.developer.authorize.net/t5/Integration-and-Testing/sample-using-iframe-and-lightbo...
08-23-2017 04:18 PM - edited 08-23-2017 04:20 PM
Are we still relying on nuget package AuthorizeNet.Fork.Aspcore2 ? Or do we have an official answer for this?
Sorry to bring up an old topic, I tried to search but couldn't find any related threads.
Thanks!
07-05-2019 11:49 AM
Any progress with this? It's been several years now and still no proper .NET Core SDK.
01-12-2023 10:56 AM