Reputation: 342
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
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:
And then try again.
Upvotes: 0
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