Rebuild or build?

  • Thread starter Thread starter Reza Alirezaei
  • Start date Start date
R

Reza Alirezaei

what's tyhe difference between rebuilding a project and building a project
in visual studio .Net 2003?
 
Rebuild will build it no matter what, build only builds if nothing has been
changed since the last build.
 
William said:
Rebuild will build it no matter what, build only builds if nothing has been
changed since the last build.

Correction: build _should_ only build if nothing has been
changed since the last build.

In most versions of the compiler for the past decade, the build feature only
partially works, sometimes rebuilding the entire project even though nothing
has changed.
 
Reza Alirezaei said:
what's tyhe difference between rebuilding a project and building a project
in visual studio .Net 2003?
Perhaps I'm not understanding the other responses correctly, but I thought:
Rebuild builds all parts of a project or solution regardless of changes to a
given part.
Build (in theory) builds only those part of a project the *have changed*
since the last build?
William and Julie, please tell me if I've totally lost it!
 
AFAIK, rebuild recompiles the project regardless of changes , build only
does it if there are changes. I'd like to know more from Julie, b/c I
haven't heard of that in .NET but that doesn't mean anything.
 
Is that in all the .NET compilers? I've tried this a bunch and never had it
happen so I'm curious if it affects all of the compilers?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top