如何在 Visual Studio 中跨项目禁用警告

发布于 2024-07-27 21:00:16 字数 112 浏览 7 评论 0原文

我知道这听起来很糟糕,但是如何禁用/抑制解决方案中所有项目的特定警告。 我所有的项目都是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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

枕梦 2024-08-03 21:00:16

我认为使用 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

乖乖公主 2024-08-03 21:00:16

在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文