duyoungk
duyoungk

Reputation: 11

Visual studio 2010 rebuilds with no modifications?

I found something strange when i was building a project, after I built my project, I can get the latest output file (.exe) and then I tried building the project again.

As far as I know, at this time visual studio won't make a new output file again, but it made a newer file again even though I didn't modify any source codes.

Why is this happening?

Upvotes: 1

Views: 376

Answers (2)

Morvader
Morvader

Reputation: 2313

Visual Studio does not recompile if there no changes, but always generates (build) a new executable.

Upvotes: 3

Darin Dimitrov
Darin Dimitrov

Reputation: 1038830

as i know, at this time visual studio must not make a new output file again.

Visual Studio rebuilds the file even if there are no code changes.

Upvotes: 4

Related Questions