Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to always produce byte-for-byte identical .exe on rebuild of C# application?
    text
    copied!<p>I'll give you a little bit of background first as to why I'm asking this question:</p> <p>I am currently working in a stricly-regulated industry and as such our code is quite carefully looked-over by official test houses. These test houses expect to be able to build the code and generate an .exe or .dll which is EXACTLY the same each and every time (without changing any code obviously!). They check the MD5 and the SHA1 of the executables that they create to ensure this.</p> <p>Up until this point I have predominantly been coding in C++, where (after a few project setting tweaks) I managed to get the projects to rebuild consistantly to the same MD5/SHA1. I am now using C# in a project and am having great difficulty getting the MD5's to match after a rebuild. I am aware that there are "Time-Stamps" in the PE header of the file, and they have been cleared to 0. I am also aware that there is a GUID for the .exe, which again has been cleared to 00 00 00... etc. However the files still don't match.</p> <p>I'm using CFF Explorer to view and edit the PE Header to remove the time and date stamps. After using a binary comparison tool there are only 2 blocks of bytes in the .exe's that are different (both very small).</p> <p>One of the inconsistant blocks appears <em>just</em> before some binary code, which in ASCII details the path of the <code>*Project*\obj\Release\xxx.pdb</code> file.</p> <p><strong>EDIT:</strong> This is now known to be the GUID of the *.pdb file, however I still don't know if I can modify it without causing any errors!?</p> <p>The other block appears in the middle of what looks to be function names, ie. (a typical section) <code>AssemblyName.GetName.Version.get_Version.System.IO.Ports.SerialPort.Parity.Byte.&lt;PrivateImplementationDetails&gt;{</code> </p> <p>then the different code block: </p> <p><code>4A134ACE-D6A0-461B-A47C-3A4232D90816</code> </p> <p>followed by:</p> <p>"}.ValueType.__StaticArrayInitTypeSize=7.$$method0x60000ab-1.RuntimeFieldHandle.InitializeArray`... etc..</p> <p>Any ideas or suggestions would be most welcome!</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload