tags:

views:

89

answers:

1

Im testing the Sharp Develop 3.1 to find out that can i use sharp develop on windows for building mono application. building process works find, while i'm debugging ,execution is not stopping at break points.

Can any one tell why is this happening?

+1  A: 

This is not supported in SharpDevelop.

If you compile your code with mono then .pdb files are not generated which are required by SharpDevelop's debugger. Running your code under mono will not work since SharpDevelop's debugger relies on the Microsoft debugging framework which is COM based.

I would take a look at MonoDevelop 2.2 which I believe has an integrated debugger that works under Windows.

Another alternative may be Mono Tools for Visual Studio which allows you to remotely debug on Mono.

Matt Ward