What is difference between build and rebuild
What is main difference between build and rebuild
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rajeev KumarPosted Mar 7, 2023, 5:21 AM
Build solution: Compiles code files (DLL and EXE) which are changed. Rebuild: Deletes all compiled files and compiles them again irrespective if the code has changed or not. Clean solution: Deletes all compiled files (DLL and EXE file). ... The difference is the way the build and clean sequence happens for every project.
Mageshwaran RPosted Nov 25, 2019, 10:26 AM
Sonu GuptaPosted Aug 13, 2019, 11:37 PM
Build solution - Compile code files (DLL and EXE) which are changed or modified.
Rebuild solution - Delete all compiled files and compile them again irrespective if the code has changed/modified or not.
Clean solution - Delete all compiled files (DLL and EXE file).
Priyanka SinghPosted Aug 13, 2019, 4:30 AM
Satyapriya NayakPosted Jul 13, 2012, 7:05 AM
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.
Build or Rebuild Solution builds or rebuilds all projects in the your solution, while Build or Rebuild
Please refer the below link
http://petesbloggerama.blogspot.in/2007/12/visual-studio-difference-between-build.html
Thanks