Request for "mono-complete" package.
sudo apt-get install mono-complete
I'm doing development on a tool in C#. It uses only open source libraries.
I can compile it on my Windows PC and upload it as an .exe and it runs fine in mono. However, it would be nice if it could be compiled on the server so others could develop it more easily.
If the mono-complete package is excessive for whatever reason, I believe libmono2.0-cil will be enough for me at this point:
sudo apt-get install libmono2.0-cil mono-runtime
User:Pengo