After creating my first .NET console application on Windows 10 with Visual Studio 2017 I copied it to my Linux - Ubuntu 16.04.3 LTS server (already with .NET Core installed).
I successfully ran the command:
Windows
> dotnet minhaApp.dll
Linux
$ dotnet minhaApp.dll
Now I want to have an independent executable , without needing dotnet
to run. How do I?
I want to do this:
Windows
> minhaApp.exe
Linux
$ ./minhaApp