Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2012 slow compilation, high internet usage

When I compile my project in VS 2012, it takes forever (minute or 2). I have noticed, in my task manager, that the "System" is using internet connection heavily during the compilation.

I have tried disabling the symbols loading.

So far only thing that helped was me disabling my Local Area Connection.

Any idea what could be causing this?

like image 662
Miro Bucko Avatar asked Sep 19 '12 09:09

Miro Bucko


1 Answers

Could it be caused by extension or addin you have installed? For example, NuGet will download missing packages during build if they're not there.

Try to monitor your network with application such as WireShark and it may point you in the right direction.

You may also run Visual Studio with /Log parameter and see if there is anything logged in the activity.log.

Finally, you can set build output to Diagnostic from Tools | Options | Project and Solutions | Build and Run and see if there's anything unusual there.

like image 72
Jarek Kardas Avatar answered Sep 29 '22 16:09

Jarek Kardas