SundayMonday
SundayMonday

Reputation: 19727

Monodevelop console on OS X

I'm using Monodevelop on OS X to write some basic command line programs. When I run my program the output is sent to a new Terminal window. How can I have the output sent to a console that's part of MonoDevelop?

This functionality seems standard as I've used it in Xcode and Visual Studio. I can't find the option in Monodevelop.

Upvotes: 2

Views: 1026

Answers (1)

Andreas
Andreas

Reputation: 5309

Open your project and select the menu:

Project > YourConsoleProjectsName Options

then select

Run > General

in the left pane and deselect the checkbox Run on external console. Voilà you should now have output in the Application Output window.

Upvotes: 4

Related Questions