How to run C# Desktop Application with extension .

2020-07-05 05:22发布

I installed MonoFramework and I have myproject.exe file.How to run C# Desktop Application with extension .exe in Mac OSX?

标签: c# macos mono
3条回答
叼着烟拽天下
2楼-- · 2020-07-05 05:45

You should use the following command line:

mono my_cool_program.exe
查看更多
老娘就宠你
3楼-- · 2020-07-05 05:47

yes this is working fine for run exe file...

open terminal ...

then write mono on terminal and copy exe file path and past after mono, then your exe file execute...

like

apple-pc:~ Santosh$ mono /Users/Santosh/Downloads/Myapp/bin/Debug/Myapp.exe

查看更多
Root(大扎)
4楼-- · 2020-07-05 05:57

I think you will have to install Mono Runtime on target machine.

查看更多
登录 后发表回答