如何在 Visual Studio 中跨项目禁用警告
我知道这听起来很糟糕,但是如何禁用/抑制解决方案中所有项目的特定警告。 我所有的项目都是VC++项目。 是否可以? 如果是,该怎么办?
环境是Visual Studio 2005
I know this sounds bad but how can I disable/suppress a specific warning for all the projects in a solution. All of my projects are VC++ projects. Is it possible? If yes, how can this be done?
Environment is Visual Studio 2005
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为使用 IDE 本身无法完成此操作。 我们这样做的方法是拥有一个全局包含文件Configure.h,其中包含必须为每个源文件设置/定义/声明的内容。 该包含文件还使用编译指示禁用一些警告。
问候,
塞巴斯蒂安
I don't think it can be done using the IDE itself. The way we do it is to have a global include file Configure.h that contains stuff that has to be set/defined/declared for every source file. This include file also disables some warnings using pragmas.
Regards,
Sebastiaan
在 VS2005 中无法在全局级别执行此操作。 最好的方法是在解决方案中的每个项目中单独抑制。
There is no way to do this at a global level in VS2005. The best way is to suppress individually in every project in the solution.