在工作中,我们拥有超过90个项目的解决方案。我想知道是否有办法阻止visual studio在遇到错误时立即编译。通常它会尽可能地编译并在错误窗口中显示错误列表。
有什么想法吗?
答案 0 :(得分:13)
Einar Egilsson为此目的提供了Visual Studio 2010 - 2017的扩展: http://tech.einaregilsson.com/2011/01/06/stop-build-on-first-error-in-visual-studio-2010/
StopOnFirstBuildError是Visual Studio 2010扩展,如果单个项目无法编译,则取消其余的解决方案构建,从而节省您的时间。 Download it in the Visual Studio Gallery.
答案 1 :(得分:3)
尝试VSCommands http://vscommands.com/feature-comparison free(lite)版本包含此功能(以及其他功能)。
答案 2 :(得分:2)
C#的默认快捷方式:CTRL + BREAK
答案 3 :(得分:-1)
您可以随时点击break键手动停止编译。