Whenever we recompile an exe or DLL, its binary image is different, even if the source code is the same, due to different timestamps and checksums in the image.
But our quality system implies that every time a new DLL is published, related validation tests must be run again (often manually, and take a considerable amount of time.)
So, our goal is not to release DLLs that haven't really changed. Ie: with an automatic procedure (script, tool, whatever ...) that detect different Dlls based only on the informative information they contain (code and data), ignoring timestamps and checksum.
Is there a good way to achieve this?
source
share