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

后端 未结 6 1930
迷失自我
迷失自我 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条回答
  •  广开言路
    2021-02-05 16:29

    The play button is the start debugging feature.

    Yes, Visual Studio will ask every project in the solution to build at that point. But note asking to build and actually building are different things. Asking to build merely says, about to do something build again if you would like. MsBuild will then do a bit of checking under the hood and decide if it should actually build the underlying project.

    If your project is actually building then there may be some other problem going on. Can you give us some more info like language, project type, etc ...

提交回复
热议问题