vote up 9 vote down star
4

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?

flag

3 Answers

vote up 12 vote down check

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.

alt text

alt text

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

Hope this helps..

link|flag
1  
Nice find. Thanks for the link. – Rob Allen Apr 28 at 17:17
1  
It has proven to be an exceptionally great tool in our development team. It's amazing! – this.__curious_geek Apr 29 at 4:57
vote up 2 vote down

This blog post has the programmatic approach.

link|flag
vote up 1 vote down

A Link to another SO question on the same topic.

link|flag

Your Answer

Get an OpenID
or

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