Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VS2013 Preview high cpu usage when in theory idle

I have a asp.net-mvc5 application which I am developing and from time to time I can see in windows server2008r2 task manager that devenv.exe (the visual studio 2013 instance I am using) is consuming 50%ish cpu usage. Considering this is a quad-core machine that means it must be maxing out two processors. VS still appears to be responsive when this occurs. Is there anything I can run diagnostically to see what feature is causing it?

incidentally I do quite often get errors with the JavaScript language service and it tells me to restart visual studio but this isn't occurring in this scenario.

like image 869
Tim Avatar asked Sep 04 '13 17:09

Tim


1 Answers

Try disabling Browser Link:

<add key="vs:EnableBrowserLink" value="false" />

in your web.config appSettings

like image 90
Mikeon Avatar answered Nov 15 '22 18:11

Mikeon