Re: [users@lists.monobjc.net] Running mono in debug mode

2011-04-19 Thread Bastien Hofmann
Hello, Thank you, but I can't seem to make it work. Exceptions still don't have filename/line numbers infos (they do when I do something like mono --debug MyApp.exe), and the --debug param seems to be passed to my app instead of the mono runtime. Laurent Etiemble a écrit : Hello, As the

Re: [users@lists.monobjc.net] Running mono in debug mode

2011-04-19 Thread Laurent Etiemble
Hello, Sorry, my mistake. Options shall be passed with the MONO_OPTIONS environment variable: MONO_OPTIONS=--debug ./MyGreatApp.app/Contents/MacOS/MyGreatApp Regards, Laurent Etiemble. 2011/4/19 Bastien Hofmann bhofm...@waterproof.fr Hello, Thank you, but I can't seem to make it work.

Re: [users@lists.monobjc.net] Running mono in debug mode

2011-04-19 Thread Bastien Hofmann
Hello, Laurent Etiemble a écrit : Hello, Sorry, my mistake. Options shall be passed with the MONO_OPTIONS environment variable: MONO_OPTIONS=--debug ./MyGreatApp.app/Contents/MacOS/MyGreatApp Great, thank you! Regards, Laurent Etiemble. 2011/4/19 Bastien Hofmann bhofm...@waterproof.fr

Re: [users@lists.monobjc.net] Running mono in debug mode

2011-04-17 Thread Laurent Etiemble
Hello, As the new launcher is a wrapper around the Mono runtime, you have to use the command line want to pass additional arguments. For example, to launch MyGreatApp in debug mode, open a Terminal and type: ./MyGreatApp.app/Contents/MacOS/MyGreatApp --debug Regards, Laurent Etiemble.