Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I see the compile error-code number in Visual Studio Error List view?

In previous versions of Visual Studio I remember I saw the error code/number in the Error List View. I may have that confused with C++ though. To see the actual compile error number I need to save and compile the project and then check the Output-window.

It's nothing but a convenience to see the actual error number at once and it makes it easier to do a Google search for it. Below is a screenshot of error code CS1002.

Anybody any idea how to magically show the compile time error numbers again?

enter image description here

PS: likewise, it would be great if hitting F1 in that same window would bring me to the error description page on MSDN as opposed to the useless "how to use the Error Window" page.

like image 253
Abel Avatar asked Mar 23 '12 18:03

Abel


2 Answers

I am afraid you can't see the information in the "Error List" window. What you can do is to open "Output" windows (you find it in "View" menu or press Ctrl+W,O. The output will be not in the table form, but you will nevertheless see the information which you need:

enter image description here

enter image description here

like image 57
Oleg Avatar answered Sep 30 '22 16:09

Oleg


Visual Studio 2015 has this feature:

enter image description here

like image 40
as9876 Avatar answered Sep 30 '22 18:09

as9876