We are going to update the API used to talk with Dynamics AX from SOAP to a rest api. Doing this we would like to be able to use dotnet core 6 to piggyback on the company sdk. I'm not an ax developer so I'm sorry if the lingo isn't correct.
Tried to use the nuget AxBusinessConnector from ms and I can see .net v2.0 dependency. I've also tried from the machine that has the business adapter installed to export all dll;s from the GAC to grab a x64 version for my project of the 'Microsoft.Dynamics.BusinessConnectorNet.dll'.
When running the project and try to use 'Axapta' class it throws error "System.TypeLoadException: 'Could not load type 'System.Web.HttpContext' from assembly 'System.Web, Version=4.0.0.0, Culture=neutral"
I guess the issue is that the BusinessConnector from ms is based on .net v2.0? Is there a newer version somewhere that can support dotnet core?