RussGove
RussGove

Reputation: 342

Debugging Javascript on Windows 10 with VS2015

I upgrade my home computer to Windows 10 and installed VS2015. The default browser is edge. When I debug my project (a sharepoint hosted app), the edge browser launches and no brealpoints are hit.

How do I debug javascript on windows 10 with Vs2015?

Upvotes: 0

Views: 579

Answers (2)

Michael Braude
Michael Braude

Reputation: 6973

I suspect the problem is that you have 'just my code' enabled in your debugging options and that's causing the breakpoints to get skipped.

Go to tools -> options -> debugging and uncheck the "Just My Code" option to disable this: enter image description here

And then try again.

Upvotes: 0

sjokkogutten
sjokkogutten

Reputation: 2095

Make sure you have Script checked in Options | Debugging | Just-In-Time.
You might also want to try running it from IE

Upvotes: 1

Related Questions