I am having trouble debugging silverlight, and the silverlight unit tests.
Lets first talk about debugging silverlight. My silverlight project has the 'silverlight' debugger checked in the project properties so I don't really understand. Sometimes it will debug OK and I can put breakpoints in my view model classes, and other times not. Is this something that others are finding?
Next is debugging unit tests. I have used the silverlight unit test framework, so the tests run in a browser. How should I debug these tests? I am writing tests blindly which is OK until things get complicated.
For instance with classic unit testing you can just put in breakpoints. Or else you can use Console.WriteLine. At the very least I need to be able to put something that will write certain debugging information to the web page when the silverlight unit tests are running.
Thanks.