Reputation: 4484
I'm trying mono develop on linux, but trying to create a package, gives me the error Could not obtain a C# compiler. C# compiler not found for Mono / .NET 3.5.
I assumed the compiler was installed with monodevelop. thanks
Upvotes: 7
Views: 6526
Reputation: 37888
You can switch to the now default 4.0 runtime in :
project -> project-name options -> build -> general -> runtime version
Or if you don't have the compiler installed at all use :
sudo apt-get install mono-gmcs
to install it.
Upvotes: 13