Is there any way to find out if an Assembly has been compiled with the TRACE or DEBUG flag set without modifying the assembly.

link|improve this question
With or without adding code to the assembly? – StingyJack Mar 10 '09 at 11:11
feedback

6 Answers

The only best way to do is 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 asociates .dll files to open with itself. After installing you can just double-click on the Assembly to open with it and it will give you the assembly details as displayed in the screenshop below. There you can identify if it's debug compiled or not.

alt text

alt text

LinkText: http://www.codeplex.com/AssemblyInformation

link|improve this answer
feedback

Direct link to an IsDebug tool, along with usage instructions.

link|improve this answer
feedback

There is probably no generic way. However, you could look for references to Assert and Debug from the System.Diagnostics namespace. Presence of those will indicate that the DEBUG flag was set.

The same holds for Trace and the TRACE flag.

Obviously this won't work if the source code does not use types from these namespaces.

link|improve this answer
feedback
static bool IsDebug(){
 bool rv = false;
 #if DEBUG
 rv = true;
 #endif
 return rv;
}
link|improve this answer
Well thanks, but I am looking for a way to find out without modifying the assembly. I want to instpect an already compiled assembly preferably with some command line tool. – Ralf Mar 10 '09 at 11:15
feedback

The "IsDebug" app mentioned above, actually has a bug in it where it doesn't reflect on the correct DubuggableAttributes. It incorrectly assumes that if the DebuggableAttribute is present, then the assembly is not JIT Optimized. I've provided a correct implementation on my blog at:

How to Tell if an Assembly is Debug or Release

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.