I'm successfully using System.Diagnostics.Process.Start() to start my external mono executable on windows. However it fails on mac. I'm not getting any error, simply nothing at all happens.
I tried doing it the following way:
System.Diagnostics.Process.Start("mono", "/path/program.exe");
Also I've tried opening terminal like the following (which also failed):
System.Diagnostics.Process.Start("Terminal");
The only thing I was able to do is launch the Terminal in the following way:
System.Diagnostics.Process.Start("open", "-a Terminal");
Any ideas? I would really appreciate any help.
Thanks!