Rebuild Failed - 0 errors many warnings.

Shouldn't there be someway to determine which error is causing the build to fail. Most of my warnings are Performance, Globilization and interoperability errors.

It does give me an option to run the latest build that worked which appears to be the build that the IDE is telling me is failing.

 



Answer this question

Rebuild Failed - 0 errors many warnings.

  • 27

    I selected Disable all warning and the build failed. Where is the log for this process
  • TandyBoy

    You can either adress your problems in the code, (which are problems, that's why they are warning you), or you can ignore it, and hope that nothing bad will happen from them.


    To ignore them, Go to Project->Properties menu.
    Go to the Compile section.  This is where you can configure which errors are ignored.

    You can also ignore errors using the...
    <Assembly: Global.System.Diagnostics.CodeAnalysis.SuppressMessageAttribute() _

    Dustin.


  • gauer

    How do I know which error is causing it to fail. When I first brought it over from VB6 it gave me errors but it still compiled.
  • Rebuild Failed - 0 errors many warnings.