Why does VS have to rebuild ALL of my projects every time I hit “Play”?

后端 未结 6 2060
迷失自我
迷失自我 2021-02-05 15:45

Do I have some weird setting that is making this happen? I only want to change the text of a message box (and no other assemblies depend on that one) yet VS rebuilds all of my

6条回答
  •  萌比男神i
    2021-02-05 16:17

    You can exclude projects from your general build through the build menu..

    Build → Configuration Manager → Uncheck projects that you don't want to always build.

    This can massively speed up build time by only building projects that absolutely need to be built every time.

    Note though you will have to build the projects that you've unselected independently (right click->Build on the project etc) if they need to be rebuilt.

    You can also setup alternate build configurations so you can mix and match what will build when.

提交回复
热议问题