JohnCambell
JohnCambell

Reputation: 633

Visual Studio 2015 - How to stop annoying popup

Before when I was editing a view or partial view, I could simply do this and just refresh the browser to see the changes. Now every time I edit a view, VS2015 prompts me with this annoying dialog "Do you want to stop debugging?". When I click No, it allows me to continue but it keeps on popping up each time I do a change. Anybody any idea how to stop this?

Upvotes: 0

Views: 249

Answers (2)

JohnCambell
JohnCambell

Reputation: 633

I found the solution myself. One thing I should have mentioned is that I'm also using DotCover with Continuous Testing switched on. When I switched it off, the problem disappeared.

The thought that it was caused by DotCover didn't occur to me because I used NCrunch before which never caused a problem. This is possibly due to the fact that NCrunch runs tests in memory while DotCover only runs them on Save.

Upvotes: 1

Luca Ritossa
Luca Ritossa

Reputation: 1185

Do you already have verified the VS setting? You can found it in "Tools > Options > Debugging > General > Enable Edit and Continue"

Upvotes: 0

Related Questions