I installed MonoFramework and I have myproject.exe file.How to run C# Desktop Application with extension .exe in Mac OSX?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
You should use the following command line:
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
I think you will have to install Mono Runtime on target machine.