How to run C# Desktop Application with extension .exe in Mac OSX?

后端 未结 3 1944
一生所求
一生所求 2021-02-20 10:11

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

相关标签:
3条回答
  • 2021-02-20 10:45

    You should use the following command line:

    mono my_cool_program.exe
    
    0 讨论(0)
  • 2021-02-20 10:46

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

    0 讨论(0)
  • 2021-02-20 11:01

    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

    0 讨论(0)
提交回复
热议问题