2
After creating my first console application with . NET Core on Windows 10 with Visual Studio 2017 copied to my server Linux - Ubuntu 16.04.3 LTS (already with . NET Core installed).
I successfully executed the command:
Windows
> dotnet minhaApp.dll
Linux
$ dotnet minhaApp.dll
Now I want to have a independent executable, without needing the dotnet
to execute. How do?
I wish to execute so:
Windows
> minhaApp.exe
Linux
$ ./minhaApp
To Linux worked, target Ubuntu.16.04-x64 and then permission to execute: chmod +x minhaapp. If you wish include in your reply.
– Edvaldo Silva
Permission regardless of this process, is something of the execution of anything.
– Maniero