How can I speed up Visual Studio builds to match MSBuild parallel performance?

。_饼干妹妹 提交于 2019-12-23 08:39:32

问题


I encounter a noticable difference in the speed when building the same solution one time with Devenv and the other time with msbuild /m.

As an information I have set the parameter "number of parallel build processes" in Visual studio to 4.

Is there any posiblity to speed up the build inside Visual Studio (Version 9.0.30729.1 SP)?


回答1:


This won't answer your exact question, but take a look at this post by Scott Hanselman. Basically, the problem is that VS does not officially support parallel builds for managed languages, so you'll have to "hack" a bit in order to get parallel builds.



来源:https://stackoverflow.com/questions/1509397/how-can-i-speed-up-visual-studio-builds-to-match-msbuild-parallel-performance

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!