Shankar
Shankar

Reputation: 157

Monodevelop source compilation errors

I am trying to download Monodevelop and compile the source code. Following are the errors which I get

{
/home/shankar/Development/Monodevelop/main/Main.sln: error : Could not find the project file '/home/shankar/Development/Monodevelop/main/external/Newtonsoft.Json/Src/Newtonsoft.Json/Newtonsoft.Json.csproj'
/home/shankar/Development/Monodevelop/main/Main.sln: error : Could not find the project file '/home/shankar/Development/Monodevelop/main/external/ikvm/reflect/IKVM.Reflection.csproj'
/home/shankar/Development/Monodevelop/main/Main.sln: error : Could not find the project file '/home/shankar/Development/Monodevelop/main/external/xwt/Xwt/Xwt.csproj'
/home/shankar/Development/Monodevelop/main/Main.sln: error : Could not find the project file '/home/shankar/Development/Monodevelop/main/external/xwt/Xwt.Gtk/Xwt.Gtk.csproj'
}

I see that all the external dependencies are not found. I used "git clone" to clone the project. Is there a specific git option to download the external dependencies or should I download each project individually to compile?

Thanks for your help

Shankar.

Upvotes: 0

Views: 427

Answers (1)

Lex Li
Lex Li

Reputation: 63123

http://git-scm.com/book/en/Git-Tools-Submodules

MonoDevelop uses several submodules, you need to also download and check them out.

Upvotes: 1

Related Questions