Build Vs Rebuild Vs Clean ( c# interview questions with answers)

Posted by Questpond under C# category on | Points: 350 | Views : 5899
In this video we will try to under Build Vs Rebuild Vs Clean solution menu.
Build solution menu: - This will perform an incremental build. In other words it will only build code files which have changed. If they have not changed those files will not touched.
Rebuild solution menu: - This will delete all current compiled files (i.e. exe and dll's) and will build everything from scratch, irrespective if there is code change in the file or not.
Clean solution menu: - This menu will delete all compiled files (i.e. EXE's and DLL's) from "bin" / "obj" directory.



Get Questpond videos on discounted price from ITFunda.com.

Comments or Responses

Posted by: Chakravarthi on: 7/23/2013
Thanks

Login to post response