Skip to main content

Difference between "build solution" and "rebuild solution" in Microsoft Visual Studio -- MicroFocus Cobol ?????

  • August 30, 2013
  • 3 replies
  • 0 views

I'd like to understand the distinction.

3 replies

Chris Glazier
Forum|alt.badge.img+2

I'd like to understand the distinction.

Build means compile and link only the source files that have changed since the last build, while Rebuild means compile and link all source files regardless of whether they changed or not. Build is the normal thing to do and is faster.

Thanks.


  • August 30, 2013

I'd like to understand the distinction.

Thanks.  Suppose I change one copybook that is used by seven different programs, and then do "Build", Will it re-compile those seven programs?


Chris Glazier
Forum|alt.badge.img+2

I'd like to understand the distinction.

Yes, it keeps a list of dependencies for each program including copybooks so if the timestamp on a copybook is newer than the last time it was built then it will build all programs that reference that copybook.