Skip to content

Instantly share code, notes, and snippets.

@choffmeister
Last active December 14, 2015 16:28
Show Gist options
  • Star 24 You must be signed in to star a gist
  • Fork 10 You must be signed in to fork a gist
  • Save choffmeister/5114966 to your computer and use it in GitHub Desktop.
Save choffmeister/5114966 to your computer and use it in GitHub Desktop.
Install MonoDevelop 4 under Ubuntu 12.04 LTS from sources
#!/bin/bash
sudo apt-get install build-essential automake checkinstall intltool git
sudo apt-get install mono-complete mono-addins-utils gtk-sharp2 gnome-sharp2
git clone git://github.com/mono/monodevelop
cd monodevelop
git checkout monodevelop-4.0
git submodule update --init --recursive
./configure
make
sudo checkinstall
@renatocantarino
Copy link

Hi,

My build Show a error:

./JavaLanguageBinding.cs(31,28): error CS0234: The type or namespace name Dom' does not exist in the namespaceMonoDevelop.Projects'. Are you missing an assembly reference?
./JavaLanguageBinding.cs(32,28): error CS0234: The type or namespace name Dom' does not exist in the namespaceMonoDevelop.Projects'. Are you missing an assembly reference?
./JavaLanguageBinding.cs(34,28): error CS0234: The type or namespace name CodeGeneration' does not exist in the namespaceMonoDevelop.Projects'. Are you missing an assembly reference?
./JavaLanguageBinding.cs(109,24): error CS0246: The type or namespace name IParser' could not be found. Are you missing a using directive or an assembly reference? ./JavaLanguageBinding.cs(113,24): error CS0246: The type or namespace nameIRefactorer' could not be found. Are you missing a using directive or an assembly reference?

how i can resolve this?

@zesterer
Copy link

zesterer commented Aug 1, 2014

I get the same error as renatocantarino on Arch Linux, but only when specifically installing the Vala bindings (monodevelop-vala). I've already got the main IDE installed.

Seemingly the package is no longer actively maintained, so it's fallen behind current Vala versions. Oh well. Time to move to another IDE :(

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment