View Single Post
  #51  
Old 05-18-2020, 02:17 AM
Uleat's Avatar
Uleat
Developer
 
Join Date: Apr 2012
Location: North Carolina
Posts: 2,815
Default

It depends on your build type where your files are dumped.


I would do a Build all after making any changes.

If (and only if) one project builds, you can probably get away with only replacing that bin - such as zone.exe.

I would replace the pdb file too for debug info.


In VS, you can do a Clean, then Build .. that's the same as just clicking Rebuild.

But, if you only do a Build, it will use existing obj files (pre-compiled code chunks) and it will be a lot faster.

You may, on occasion run into an issue with LNK errors when doing this..which can be resolved by doing a Clean, then Build.

That usually only happens when you have something declared in the obj files .. but, somehow remove its definition - very rare, though.
__________________
Uleat of Bertoxxulous

Compilin' Dirty
Reply With Quote