Hi,
There is build and rebuild in asp .net. I like to know which one is better and what is the need of both.
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.
Abhay ShankerPosted Apr 7, 2014, 11:12 AM
Jignesh TrivediPosted Apr 7, 2014, 8:44 AM
Build project / solution will perform incremental build. It means it compile and link only those files that have changed since last build.
Rebuild project / solution will perform compile and link all source code files regardless of any change find in file or not.
Also refer
http://petesbloggerama.blogspot.in/2007/12/visual-studio-difference-between-build.html
hope this will help you.