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?
.NETFramework 4.5but I can change it toMono/.NET 4.0and 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