Is it possible to convert .NET Framework applications from Windows to Mac?

2

Can I get my project ready, and have it run on a Mac OS X? (It was done in .NET Framework 4.5.2 for Windows.)

    
asked by anonymous 13.10.2015 / 04:14

1 answer

2

Depends on what was used in the project. It depends on how it was written (this part may require a little adaptation if it was not thought to work on a different platform, but nothing too difficult). And of course some things may be too specific to wear. Porting does not mean it will look great on the other platform. But it is possible to improve.

It was already possible to do this with Mono , with some limitations. It is now possible with .Net Core , also with limitations. Some extra libraries can be used to help with portability.

If you want to enjoy GUI, forget it. If the project is poorly done, the chance to reuse in full in an easy way was pro space. The quality of portability has to do with the quality of the project as a whole.

    
13.10.2015 / 04:28