Getting Method not found: in Azure.AI.FormRecognizer.DocumentAnalysis.DocumentAnalysisClient constructor
I am trying to instance this class from a Functions app loading it downstream from a Plugin loaded assembly. So our code is calling Nuget to load a business assembly which references Azure.AI.FormRecognizer 4.1.0, and then that code tries to engage Azure AI for document classification and analysis. As soon as the code tries to get a new instance of the client, it throws that exception. I have tried using reflection to list all related assembly versions and locations at runtime, and everything is present and matching version numbers between the business logic assembly and the functions app host project.
Whether I have a reference to the AI package in the functions app or not, the same error keeps happening. I have also tried upgrading to the newer Azure AI DocumentIntelligence library from Nuget, and the same problem persists.
Thanks