Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I cannot figure out how to get rid of errors that basically should not be halting my compile in VS 2010 and should not be show stoppers, or at least I will fix them later but I don't want the compile to just error and halt on these kinds of problems.

For example I'm getting the following error:

Error 1 Warning as Error: XML comment on 'ScrewTurn.Wiki.SearchEngine.Relevance.Finalize(float)' has a paramref tag for 'IsFinalized', but there is no parameter by that name C:\www\Wiki\Screwturn3_0_2_509\SearchEngine\Relevance.cs 60 70 SearchEngine

for this code:

  /// <summary>
  /// Normalizes the relevance after finalization.
  /// </summary>
  /// <param name="factor">The normalization factor.</param>
  /// <exception cref="InvalidOperationException">If <paramref name="IsFinalized"/> is <c>false</c> (<see cref="M:Finalize"/> was not called).</exception>
  public void NormalizeAfterFinalization(float factor) {
   if(factor < 0) throw new ArgumentOutOfRangeException("factor", "Factor must be greater than or equal to zero");
   if(!isFinalized) throw new InvalidOperationException("Normalization can be performed only after finalization");
   value = value * factor;
  }

I looked in Tools | Options and I don't see where I can tweak the compiler and tell it not to worry about comment or XHTML based errors.

share|improve this question
9  
One method of getting rid of them is to fix the code giving the warning. ;) – user414076 Mar 26 '10 at 2:50

1 Answer

up vote 32 down vote accepted

Each project in Visual Studio has a "treat warnings as errors" option. Go through each of your projects and change that setting:

  1. Right-click on your project, select "Properties".
  2. Click "Build".
  3. Switch "Treat warnings as errors" from "All" to "Specific warnings" or "None".

The location of this switch varies, depending on the type of project (class library vs. web application, for example).

share|improve this answer
do VB projects have the corresponding ability? The only thing I could find was a "Treat all warnings as errors" checkbox on the compile tab. You can add them by directly editing the .vbproj file, but I don't like doing that. – BlackICE Nov 17 '10 at 19:39
Sheesh what a place to hide that. I looked everywhere but under project. – nportelli Nov 15 '11 at 13:44
1  
Does anybody know the new solution for VS2012? – bobble14988 Sep 13 '12 at 10:29
Same solution in VS2012, @bobble14988. – Michael Petrotta Sep 13 '12 at 15:55
@bobble14988 In VS2012 you can find that configuration under Project properties-> C/C++ -> General – Hanan N. Mar 13 at 10:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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