Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
92 views

In C#/VS 2010, how can I suppress error messages for files not marked to compile?

Ok, we have a 'pseudo-c#' file that we've added to the solution for reference. While it does have a .cs extension (to let VS take a stab at color-coding it since it's pretty big and that helps with ...
2
votes
1answer
479 views

How to prevent Error List Window from showing up within Visual Studio ASP.NET Editor?

Any errors or warnings within the markup pops up the window and it reminds me VB6 error message box, stealing the focus and concentration. Quite an eyesore. Is there a way to prevent the Error List ...
2
votes
1answer
230 views

GNU C++ error messages

Is there a comprehensive list of error/warning messages for the g++ compiler available online? I'm looking for something similar to the MSDN documentation which describes what each message means and ...
1
vote
3answers
198 views

Visual Studio Shows errors until I open the *.aspx.cs page?

The Visual Studio Error List shows like 50 errors about controls and variables not existing. I double click an error, it takes me to it, and after about 1 second they all go away! There aren't any ...
0
votes
0answers
7 views

Is there a way to clear the Error List window of custom errors?

I use several custom tools during the build process, mostly code generators for service references, T4 templating, and the like. When these produce errors or warnings, they show up in the Error List ...
0
votes
1answer
27 views

How to tell Visual Studio not to display the same warning multiple times?

A few weeks ago I started noticing that my VS displays some warnings twice. Same Line/Column for both displayed warnings. It's exactly the same warning which is displayed twice within the Error List. ...
0
votes
1answer
196 views

Visual Studio 2010 plugin / code to clear “Error List” warnings before each build

VS2010 is driving me nuts: whenever I rebuild, the "Error List" warnings from the previous compilation are persisted and any new warnings are simply added to the end of the list. Over time, this list ...
0
votes
1answer
91 views

Visual Studio - Accessing Warnings/Errors from Error List in C#

I am a bit new to CSharp for a couple months, and I am trying to make "grab" the warnings/errors from the error list pane in Visual Studio and use them in my code, so that hopefully there can be a ...
0
votes
0answers
41 views

Viewing a file's path in Error list

Basically, thanks to this very good question and it's answer, I have turned on View building. I have a fairly large ASP MVC application, and it has come back with a View I no longer use as the ...