Possible Duplicate:
How to tell if a .NET application was compiled in DEBUG or RELEASE mode?
I'm sure this has been asked before, but google and SO search failed me.
How can I identify if a DLL is a release build or debug build?
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
The only best way to do this is to check the compiled assemblies itself. There is this very useful tool called '.NET Assembly Information' found here by Rotem Bloom. After you install this, it associates itself with .dll files to open with itself. After installing you can just double-click on the Assembly to open and it will give you the assembly details as displayed in the screenshots below. There you can identify if it's debug compiled or not.
LinkText: http://www.codeplex.com/AssemblyInformation Hope this helps.. |
|||||||||||
|
|
IMHO, The above application is really misleading; it only looks for the IsJITTrackingEnabled which is completely independent of whether or not the code is compiled for optimization and JIT Optimization. The DebuggableAttribute is present if you compile in Release mode and choose DebugOutput to anything other than "none". You also need to define exaclty what is meant by "Debug" vs. "Release"... Do you mean that the app is configured with code optimization? Do you mean that you can attach the VS/JIT Debugger to it? Do you mean that it generates DebugOutput? Do you mean that it defines the DEBUG constant? Remember that you can conditionally compile Methods with the System.Diagnostics.Conditional() attribute. IMHO, when someone asks whether or not an assembly is "Debug" or "Release", they really mean if the code is optimized... Sooo, assuming that you are wanting to know if the code is JITOptimized, here is the correct implementation:
I've provided this implementation on my blog at: |
|||||||
|