Hi,
Adding the nuget package ACRCloudSdkCore 1.0.0.4 on .net-core 3.1 App and calling the function RecognizeByFile will throw an exception :
Unable to load DLL 'libacrcloud_extr_tool.dll' or one of its dependencies
That's the code :
var recognizer = new ACRCloudRecognizer(new ACRCloudOptions(_apiHost, _apiKey, _apiSecretKey));
var result = Task.Run(async () => await recognizer.RecognizeByFileAsync(filePath)).Result;