Reputation: 157
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
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