Here's the video http://vimeo.com/20526416
For MonoDevelop 2.4.2 - monodevelop.rhinodebug.dll.zip
For MonoDevelop 2.6
The monobuild python script can be downloaded above, or you can just create a new script using the following:
import sys import os import string import shutil oldname = sys.argv[1] for i in range(2,len(sys.argv)): oldname += " " + sys.argv[i] newname = string.replace(oldname, ".dll", ".rhp") print "oldname =", oldname print "newname =", newname os.rename(oldname, newname) os.rename(oldname+".mdb", newname+".mdb")