vote up 1 vote down star

I've a solution with 15 projects (14 class libraries and one web application). Each class library has corresponding test project (i.e. if I have MyApp.Services project there exists MyApp.Services.Tests -- using NUnit). Everything is written in VB.NET. The problem is that when VS tries to compile any of *.Tests project it stops responding (the bigger the project the longer the period without reposnse). I don't know where to start looking for an issue. I'll add that I've R# 4.5 installed.

UPDATE 1:

Is there any way to benchmark a build in visual studio? To get build times for every project?

UPDATE 2:

It seems that there is no difference after disabling R#.

flag

75% accept rate
3  
How long does it stop responding for? 5 seconds? A day? – Bears will eat you Oct 28 at 17:25
why not build projects individually ? – Xinus Oct 28 at 17:27
@Matt: It depends on project.. for MyApp.BO.Teststhat was sth about 5 minutes, for MyApp.Services.Tests VS sometimes just hang and I've to kill the process. – rafek Oct 28 at 17:39
@Xinus: It is the idea, but if I'd like to run tests, the build time just make me furious. – rafek Oct 28 at 17:40
@UPDATE 1: In Visual C++, you can just enable build timing, which is what you want. I think this is unfortunately not available for the C# compiler, so you have to resort to the MSBuild output, which does timing as well, as Marcel Gosselin suggests. – OregonGhost Oct 29 at 9:18

4 Answers

vote up 1 vote down

Disabling Resharper will probably help.

As for the benchmark, try building with msbuild with the following options, it will print statistics on build process at the end.

msbuild yoursolution.sln /verbosity:diagnostic
link|flag
vote up 2 vote down

Try turning on verbose logging for the build

Tools...Options...Projects and Solutions...Build and Run..."MSBuild project build output verbosity"

This should help you get a better picture of what is going on.

link|flag
vote up 1 vote down

Try closing the tool panes associated with unit testing.

link|flag
vote up 1 vote down

Hi there.

Have you tried disabling Resharper 4.5, using the Tools->Addins menu, and tried building again?

Also, is there a difference in time if you shutdown VS, restart it and load your solution and try building again before you do anything else. It might be that the build times get slower over time?

Cheers. Jas.

link|flag
I'll try this tomorrow (R# thing). If it comes to shutdown, there is no difference, after one the situation is happening again. – rafek Oct 28 at 17:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.