Speeding up build times in ASP.NET

后端 未结 10 1093
感动是毒
感动是毒 2020-12-28 20:32

I am currently involved in a ASP.NET project with about 40 projects in the solution. We are doing all our development in cloned Virtual PC environments so all developers hav

10条回答
  •  [愿得一人]
    2020-12-28 21:38

    What we did at our company is to use file reference, so only the changed projects need to be built, and at any given time there is no more than 10 projects in my solution, mostly 2~3 gets built.

    We also build our trunk for each check-in, and have batch file for developers to pull the most recent dlls.

    Of course, this doesn't stop the painful assembly reference error from happening, but they become more of a nuisance than problem after a while.

提交回复
热议问题