HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

monodevelop — Cross platform IDE for C#, F#, and more. More information: <https://www.monodevelop.com/documentatio

Submitted by: @import:tldr-pages··
0
Viewed 0 times
monodevelopidecommandandclicrossplatformfor

Problem

How to use the monodevelop command: Cross platform IDE for C#, F#, and more. More information: <https://www.monodevelop.com/documentation/>.

Solution

monodevelop — Cross platform IDE for C#, F#, and more. More information: <https://www.monodevelop.com/documentation/>.

Start MonoDevelop:
monodevelop


Open a specific file:
monodevelop {{path/to/file}}


Open a specific file with the caret at a specific position:
monodevelop {{path/to/file}};{{line_number}};{{column_number}}


Force opening a new window instead of switching to an existing one:
monodevelop --new-window


Disable redirection of stdout and stderr to a log file:
monodevelop --no-redirect


Enable performance monitoring:
monodevelop --perf-log

Code Snippets

Start MonoDevelop

monodevelop

Open a specific file

monodevelop {{path/to/file}}

Open a specific file with the caret at a specific position

monodevelop {{path/to/file}};{{line_number}};{{column_number}}

Force opening a new window instead of switching to an existing one

monodevelop --new-window

Disable redirection of `stdout` and `stderr` to a log file

monodevelop --no-redirect

Context

tldr-pages: common/monodevelop

Revisions (0)

No revisions yet.