Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you debug Silverlight applications with Chrome AND hit breakpoints?

I am using Visual Studio 2010 to create a Silverlight 4 application.

I set a breakpoint in my code-behind, start the debug session from Visual Studio, and unfortunately, my breakpoint never gets hit.

So, I eventually I tried setting my default browser to Internet Explorer ... and lo and behold ... my breakpoint gets suddenly hit.

Is Chrome a supported browser for debugging Silverlight applications? If so, what am I missing in order to get this to work?

Or, is Internet Explorer the only supported browser when it comes to debugging?

like image 978
cplotts Avatar asked Oct 15 '22 04:10

cplotts


2 Answers

See my answer and this answer on another question.

You have to manually attach to the Silverlight process. Use the Debug menu and select Attach to Process... once you have started debugging (via F5 or the Debug/Start Debugging option).

like image 73
Jeff Yates Avatar answered Oct 18 '22 17:10

Jeff Yates


As of September 2011 with Firefox 6, you need to configure Firefox if you want to debug. Steps are:

  • Load Firefox
  • Type "about:config" into Firefox's address bar
  • Accept the warning (if applicable)
  • Search for the entry "dom.ipc.plugins.enabled"
  • Change its value from "true" to "false" (double-click)
  • Restart the browser

Tada!

like image 43
ashes999 Avatar answered Oct 18 '22 17:10

ashes999