Right now I’m evaluating the LexActivator for our C# solutions. I’ve imported the LexActivator nuget package and compiled the project for multiple plattforms. As long as I’m running it under x86 or x64 everything works, whether its linux or windows.
Unfortunately I’m unable to run the application under ARM linux systems. I get the following the error message:
Unhandled exception. System.DllNotFoundException: Unable to load shared library 'LexActivator' or one of its dependencies. In order to help diagnose loading problems, consider setting the LD_DEBUG environment variable: libLexActivator: cannot open shared object file: No such file or directory
If I copy the ARMhf so lib (libLexActivator.so) from the download page into the binary folder and duplicate it under the name (libLexActivator32.so) I can start the application, but get the following message:
Unhandled exception. Cryptlex.LexActivatorException: The product id is incorrect.
at Cryptlex.LexActivator.IsLicenseGenuine()
It seems like at least the arm runtimes are missing from the nuget package.
Am I doing something wrong here, or does the LexActivator nuget package not work with arm systems in the current state?
Thanks for your help in advance!