Running a mono program from command line in Ubuntu -
believe me, have tried searching this, posts have seen on mono stops @ installation. have hello world c# program want execute command line - how do that?
in addition, want run command line programs in mono. mono packages should install (i'm on ubuntu) me able that?
mono helloworld.exe
, or, if have binfmt handler installed, ./helloworld.exe
(make sure got execute permissions). note mono basics on official website has tutorial beginners.
what packages install depends on libraries programs want run need. bare minimum mono-runtime
(which pull in dependencies automatically). can't go wrong mono-complete
, though ;)
Comments
Post a Comment