Reasons for C# projects to rebuild in Visual Studio

前端 未结 5 918
野趣味
野趣味 2021-02-09 05:17

I have a large solution, of some 320 projects, where even small changes to a single web form result in long build times to test/debug a small change. I suspect post-build file

5条回答
  •  北海茫月
    2021-02-09 05:39

    I think at 320 projects you've long ago exceeded the limit of what Visual Studio was designed to do comfortably.

    There's lots of good advice here but if you really must keep 320 projects you might want to ditch Visual Studio for building and design your own build process.

    Like I said in my comment, on windows at least, my recommendation for a build tool is psake which is built on powershell (and therefore included on every modern windows machine), quite powerful, and lightweight enough to commit the entire thing to your source control.

提交回复
热议问题