Reputation:
Is there a way to stop Visual Studio 2012 from popping up the Error List when there are only warnings? I am writing a .resx file for localization of my sitemap and every time I put .title in my Resource's Name column it generates a warning which then pops up the stupid error list. Is there a way from stopping this stupid list from popping up on only warnings during normal editing of a file. I have tried turning off the Tools -> Options -> Projects and Solutions -> General -> Always show Error List if Build finishes with errors. I have even set the build output to quite but that does not affect it either since these only affect builds and I am just editing not building.
Upvotes: 5
Views: 4181
Reputation: 1628
I suspect you're referring to IntelliSense errors, not compiler warnings. If so, right-click on the error list column header and uncheck "Show IntelliSense Errors".
Upvotes: 2