vote up 2 vote down star

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

flag
With or without adding code to the assembly? – StingyJack Mar 10 at 11:11

5 Answers

vote up 0 vote down
static bool IsDebug(){
 bool rv = false;
 #if DEBUG
 rv = true;
 #endif
 return rv;
}
link|flag
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 at 11:15
vote up 1 vote down

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|flag
vote up 2 vote down

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

link|flag
vote up 2 vote down

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

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

Hope this helps..

link|flag

Your Answer

Get an OpenID
or

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