Reputation: 22011
Generally the Managed executables I compile with the Mono GMCS on Ubuntu, run fine with .NET Framework 2.0 on Windows, but don't work with any other version. Is it possible to compile exes that run on the .NET Framework 4 with Mono?
Upvotes: 1
Views: 827
Reputation: 17499
Instead of gmcs
, use the dmcs
front end of the Mono compiler which targets the 4.0 runtime.
Upvotes: 4