I had some monodevelop programs with a GTK# user interface running smoothly in ubuntu 11.04 wihtout unity. I have upgraded to unbuntu 11.10 with unity. Now I get the following error: "The type or namespace name 'Gtk' could not be found. Are you missing an assembly reference?". And indeed in my references the references atk-sharp, gdk-sharp, glade-sharp, glid-sharp, stk-sharp and pango-sharp are colored red and I can't re-add them.

If I search in the softwere to install at gtk-sharp then it tells me Gtk# 2.10 is installed. If I start a new gtk project in monodevelop it gives the same errors.

Does someone know how to fix this? Thanks!

link|improve this question

50% accept rate
feedback

1 Answer

up vote 2 down vote accepted

This issue is due to Mono runtime version. Please change Mono runtime version of the project from Mono/.NET 3.5 to Mono/.NET 4.0 to fix this issue.

For this, please follow the steps as given below:

  1. Launch 'Project Options' dialog using Solution Explorer.
  2. Select 'General' project settings available under 'Build' group
  3. Change Runtime version to Mono/.NET 4.0.
  4. MonoDevelop will upgrade the current project as Visual Studio 2010 equivalents. Then, Rebuild the project and verify the outcome.
link|improve this answer
It works! Thank you very much! – user1049221 Feb 13 at 11:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.