0
votes

When I compile my gtk# project with MonoDevelop, it creates the files and puts them in /bin/Release just as it should. But when I double click on the program, it shows the mono runtime terminal in the background. I want to be able to open my program without the runtime terminal showing as well. Is there anyway to accomplish this?

Note: This program is made only for use in Ubuntu.

1
Could not reproduce it on openSUSE 12.1. So added ubuntu tag.Lex Li

1 Answers

0
votes

I think it's not the best way to double click on Mono assemblies on Linux..

You can try creating a simple executable script like this:

#!/bin/bash
mono /path/to/executable.exe

Give it the executable permission, than try to execute it.