How to disable project warning in Visual Studio

I know this sounds bad, but how can I disable / suppress a specific warning for all projects in a solution. All my projects are VC ++ projects. Is it possible? If so, how can this be done?

Environment is Visual Studio 2005

+3
source share
2 answers

I do not think that this can be done using the IDE itself. The way we do this is to have a global Configure.h file containing material that needs to be installed / defined / defined for each source file. This file also disables some warnings using pragmas.

Hello,

Sebastiaan

+1
source

There is no way to do this globally in VS2005. The best way is to crush individually in each project in the solution.

0
source

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


All Articles