Reputation: 11
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
Reputation: 2313
Visual Studio does not recompile if there no changes, but always generates (build) a new executable.
Upvotes: 3
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