Pergunta de entrevista da empresa HomeBanc

What is the difference between build and rebuild in VS

Resposta da entrevista

Sigiloso

7 de mar. de 2017

Build means compile and link only the source files that have changed since the last build, while Rebuild means compile and link all source files regardless of whether they changed or not. Build is the normal thing to do and is faster. Sometimes the versions of project target components can get out of sync and rebuild is necessary to make the build successful. In practice, you never need to Clean.