Ubuntu - exe file as output?

OK. I am creating an application in MonoDevelop for Ubuntu Linux, but the compiled file is always an exe window, I configured it to compile as Linux binary, but I'm confused, can someone shed some light on how to get the proper Linux way to open programs?

thanks

+4
source share
1 answer

It compiles as an executable .NET assembly - it is always .exe files.

You can run it on linux by calling mono-runtime:

 mono myExe.exe 
+6
source

Source: https://habr.com/ru/post/1310033/


All Articles