We are using .NET 3.1 and the .NET Core SDK Beta for our integration solution and are experiencing a vague error message when the following line attempts to execute. I'm not sure how to proceed. Any insight would be great.
ApiOperationBase<ANetApiRequest, ANetApiResponse>.RunEnvironment = AuthorizeNet.Environment.SANDBOX;
AuthorizeNet.Api.Controllers.Bases.ApiOperationBase<TQ, TS>.set_RunEnvironment(Environment value)
AuthorizeNet.Utilities.LogFactory.get_LoggerFactory()
Solved! Go to Solution.
04-09-2021 11:18 AM
If anyone runs into this problem in the future, my pull request below makes the minor changes needed for this to at least run in .NET Core 3.1+.
04-09-2021 12:45 PM
Issue was that the .NET Core SDK does not fully support .NET Core 3.1. Some of the method calls in the SDK were deprecated in the 2.x releases of .NET Core, so I downloaded the SDK source and corrected these. After publishing the changes to a nupkg, it's working like a charm. Still have a long ways to go with integration but at least this roadblock is cleared ;)
04-09-2021 12:16 PM
If anyone runs into this problem in the future, my pull request below makes the minor changes needed for this to at least run in .NET Core 3.1+.
04-09-2021 12:45 PM
We are using .NET 3.1 and the .NET Core SDK Beta for our integration solution and are experiencing a vague error message when the following line attempts to execute.
04-12-2021 05:08 AM