Is there a tutorial that tells how to write a profile for mono 3.0 so that I can use it with Microsoft Visual studio 2010 ? The reason behind the same is that my application makes use of a Binding List and when I try to run in Mono , I get this error : ** (WindowsFormsApplication2.exe:608): WARNING **: The class System.ComponentModel.BindingList`1 could not be loaded, used in System, Version=4.0.0.0,
or in case a profile is already written , can you please share the same
I created my own 4.5 Profile for Mono 3.0.1 Beta for VS 2012 on a Windows 8 64-bit machine based on this.
Add the following to registry to stop Visual Studio asking for installation of this profile:
Now you should be able to select and compile against this profile. This steps might be slightly different on 32-bit machines (see link at top).
You should play with the MONO_LOG_LEVEL and MONO_LOG_MASK environment variables (especially, consider using "asm" value for the latter). All is explained here: http://www.mono-project.com/Logging_Runtime_Events
This will give you enough insight of what is happening.
On a side note, why do you need Mono in Windows? Unless you're doing very advanced things (such as embedding mono), I recommend you to only use Mono in Unix-like OSs, like Mac or Linux, which is where it shines. Mono in Windows is sub-standard quality because in Windows you have the .NET runtime from Microsoft anyway.