Using the Raspbian Wheezy image...
I installed the mono runtime like so on my Raspberry PI:
sudo apt-get update
sudo apt-get install mono-runtime
and it seemed to install fine (If I run mono I get a sensible command output).
Then I started MonoDevelop up up my mac and created a "Hello World" console application (you know, just what you get when you go New Solution | Console Application) - compiled and ran - no problem.
Now I copied the exe over to the PI and was expecting that I could just go:
mono HelloWorld.exe
but when I do so I get this error:
The assembly mscorlib.dll was not found or could not be loaded. It should have been installed in the `/usr/lib/mono/2.0/mscorlib.dll' directory.
Now I am confused - what have I done wrong and how should I get that DLL? Is there another package I should install?