0

Still unsure about all the BUILD options.

If I just want to over-write the .exe file in the Solutions bin\Debug directory all I need to do is choose Build ?

ReBuild has another purpose?

Clean I assume is if it has bugged at a point creating problems within the Solution?

I've referred to this page on MSDN but it doesn't refer to specific directories within the solution.

whytheq
  • 32,991
  • 61
  • 166
  • 261

1 Answers1

2

Build - does incremental builds (doesn't bother updating stuff that hasn't changed)

Rebuild - does a Clean then a Build

Clean - just clears all intermediate build files (obj and bin directory)

Look here for more info:

Difference between Rebuild and Clean + Build in Visual Studio

The answers there point out some of the subtleties

Community
  • 1
  • 1
Charleh
  • 13,545
  • 3
  • 36
  • 56
  • so if I just hit Build then _any changes_ I have made will be reflected in the exe in the bin directory; all unchanged bits of code will be left alone ? – whytheq Dec 11 '12 at 10:31