I presume that if the C# code is unchanged, the generated IL will be the same each build. The problem is that 2 EXE files generated from the same code don’t have the same hash.
I would like to check whether a change in code style generates a different IL. How can I achieve that?
There are some tools you can use to disassemble the EXE and compare their content. Look at this blog http://immitev.blogspot.com.br/2008/10/ways-to-compare-net-assemblies.html
[]’s