How to show the most nested errors first in Visual Studio?
Visual Studio 2010.
Typical case -- solution with two projects A (library) and B (main project). Of course B depends on A. Let's say I made an error in A (library). As effect I get million errors from main project and then at the end error from library.
I don't have to explain how tiresome it is, gcc fo开发者_JAVA百科r example always shows the most nested errors first, because it is obvious that error in most used part of software can be the cause of all other errors.
So how to make Visual Studio to show the most nested errors first? Thank you in advance.
You can compile projects independently from each other, by rightclick the project and selecting build. So only compile the library, the errors for the projects depending on it will disappear (as they aren't compiled, syntax errors will still show of course). However, you might need to clean the solution first.
In order to show errors according to their importance, one has to click on the column without title (it should be the first column in errors list, one with error and warning icons).
精彩评论