How to identify if the DLL is Debug or Release build (in .NET) [duplicate]
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 exactly what … Read more