Stop Visual Studio from displaying a list of errors when there are only warnings while editing a file

Is there a way to stop the appearance of Visual Studio 2012 in the error list when there are only warnings? I am writing a .resx file to localize my Sitemap, and every time I put the .title in the "Resource Name" column, it generates a warning, which then produces a list of stupid errors. Is there any way to stop this stupid list from displaying only warnings during normal file editing. I tried disabling Tools -> Options -> Projects and Solutions -> General -> Always show a list of errors if the assembly ends with errors. I even completely installed the output of the assembly, but this does not affect it, since they only affect the assembly, and I just edit it without building.

+4
source share
1 answer

I suspect that you mean IntelliSense errors, not compiler warnings. If so, right-click the column heading for the error list column and clear the "Show IntelliSense Errors" check box.

+2
source

Source: https://habr.com/ru/post/1486437/


All Articles