有没有办法为整个解决方案的 Visual Studio 设置编译指示禁用警告?
有没有办法为整个解决方案的 Visual Studio 设置编译指示禁用警告?
Is there a way to set a pragma disable warning for visual studio for an entire solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 /w 编译器开关每个项目的抑制。 我不知道有什么方法可以在不选择所有项目并将其添加到每个项目的命令行中的情况下在解决方案范围内完成此操作(这可以在一次操作中完成)。
Use the /w compiler switch for per-project suppression. I'm not aware of any way to do it solution wide without selecting all projects and adding it to the command-line for each project (which can be done in one operation).