Build means compile and link only the source files that have changed since the last build.
If they have not changed those files will not be touched.
while Rebuild means compile and link all source files regardless of whether they changed or not.
Rebuild will build everything from scratch, irrespective of if there is code change in the file or not.
Rebuild solution will clean and then build the solution from scratch.
Rebuild = Clean + Build
Clean Solution will delete all compiled files (i.e., EXE’s and DLL’s) from the bin/obj directory
If they have not changed those files will not be touched.
while Rebuild means compile and link all source files regardless of whether they changed or not.
Rebuild will build everything from scratch, irrespective of if there is code change in the file or not.
Rebuild solution will clean and then build the solution from scratch.
Rebuild = Clean + Build
Clean Solution will delete all compiled files (i.e., EXE’s and DLL’s) from the bin/obj directory
No comments:
Post a Comment