ApprenticeHacker
ApprenticeHacker

Reputation: 22011

Targeting and Compiling For .NET Framework 4.0 with Mono

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

Answers (1)

Jb Evain
Jb Evain

Reputation: 17499

Instead of gmcs, use the dmcs front end of the Mono compiler which targets the 4.0 runtime.

Upvotes: 4

Related Questions