danspam
danspam

Reputation: 195

Debugging Tests in VS2008 Slow due to loading symbols

If I click on 'debug all tests' in Visual Studio 2008 it takes ages to start (whereas 'run all tests' starts instantly). As far a can tell, this is because it is downloading symbols from Microsoft. Why is this? Is there anyway I can stop it or to make it start faster?

Upvotes: 2

Views: 845

Answers (1)

Sam Harwell
Sam Harwell

Reputation: 99979

Go to Tools > Options > Debugging > Symbols and check the box for "Search the above locations only when symbols are loaded manually."

It won't affect breakpoints or anything; the only thing it means is when you see a callstack without symbols you have to right click the frame in the callstack and "Load Symbols > From Symbol Path".

Upvotes: 5

Related Questions