I'm trying to run a .net console application on Linux using .net core, I built this application on windows. these are the steps I took:
- Build the project in VS2015 .net 4.6.1 (Windows).
- Copy the output directory to Linux machine.
- Run the command
dotnet QL3.exe
I get the following error message:
A fatal error was encountered. The library 'libhostpolicy.so' required to execute the application was not found in '/home/ubuntu/QL3'.
comment: when I take those same step but use mono the application runs.
Suggestions?