I have a C# application with GUI created using Monodevelop 3 and MonoMac libraries. After build, I get a mac app with embedded mono v3 runtime.
Application runs fine, but it does not receive any command line arguments that i pass to it.
static void Main (string[] args)
{
// args are always empty
}
I've tried passing them using
open -a /Applicaitons/MyApp.app --args my_command_line_arg
and even just running generated executable directly
/Applicaitons/My.app/Contents/MacOS/MyApp my_command_line_arg