views:

116

answers:

1

Hi! I'm trying to implement a Visual Studio Addin to support cross-platform development. The addon currently only warns developer when using unsupported functions but I also want to implement a feature that informs him about functions that are implemented but produce sideffects / are unstable etc.

Can anyone help me? I would really appreciate this!

+3  A: 

Mono provides a utility to analyze application binary and check for mono support called Mono Migration Analyzer. You can probably read the source code to understand more about less supported features. You can even directly use run this tool with your add in and process the results.

Mehrdad Afshari