Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I followed the instructions here for installing Monodevelop with F# support on Ubuntu, however when I open Monodevelop and try to compile a simple F# program I get the message:

Error: Framework '.NETFramework 4.5' not installed.

If I manually compile on the command line using the same compiler Monodevelop is using (/usr/bin/fsharpc) the file compiles and produces an executable that runs just fine. Why won't the project compile in Monodevelop and is there a way to fix it?

share|improve this question
2  
Have you checked what framework is selected in the project options->Build->General? – Jester Dec 19 '12 at 20:41
That looks like it's probably causing the problem. It's set by default to .NETFramework 4.5 but I can change it to Mono/.NET 4.0 and then it compiles and runs. I still get a warning about the target framework but not enough to stop it from compiling an running. Thank you @Jester – user1916823 Dec 19 '12 at 21:00
1  
Side note: framework 4.5 is available with Mono if you install newer version, that is 3.0 or higher. – konrad.kruczynski Dec 21 '12 at 10:58

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.