Is there any way to determine if a .NET assembly was compiled with the "deterministic" flag?

Viewed 218

I am using code from this answer to get the linker timestamp of a .NET assembly.

However, if the assembly was compiled as "deterministic", this value is not an accurate measure of when the assembly was built (reference), and so I want to ignore it.

Is there any information in the PE header (or any other part of the assembly) which indicates that it's been built as "deterministic"?

0 Answers
Related