Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get Xamarin Studio C# output within the IDE?

Tags:

c#

ide

mono

xamarin

I recently started experimenting with Xamarin and Mono C# on my Mac. I am used to working on Windows with Visual Studio so I find it cumbersome when every time I run my console application, a new terminal window and mono compiler terminal open up. And I have to manually close them. Is there anyway to get the output of my programs from a window or pane inside the IDE ? Or is there anyway to set it up so only one terminal window shows up ?

like image 798
Jenna Maiz Avatar asked Feb 19 '15 05:02

Jenna Maiz


1 Answers

If you open the Project Options there is a Run on external console check box in the Run - General category which controls this behaviour. If you uncheck this option when you run a console application the output will be shown in an Application Output window inside Xamarin Studio and no external console window will be opened.

like image 50
Matt Ward Avatar answered Sep 25 '22 02:09

Matt Ward