How can I check whether I am in a debug or release build in a web app? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T14:20:59Z http://stackoverflow.com/feeds/question/258481 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/258481/how-can-i-check-whether-i-am-in-a-debug-or-release-build-in-a-web-app 0 How can I check whether I am in a debug or release build in a web app? Loris 2008-11-03T12:24:39Z 2008-11-03T16:57:18Z <p>In any (non-web) .net project, the compiler automatically declares the DEBUG and TRACE constants, so I can use conditional compiling to, for example, handle exceptions differently in debug vs release mode.</p> <p>For example:</p> <pre><code>#if DEBUG /* re-throw the exception... */ #else /* write something in the event log... */ #endif </code></pre> <p>How do I obtain the same behavior in an ASP.net project? It looks like the system.web/compilation section in the web.config could be what I need, but how do I check it programmatically? Or am I better off declaring a DEBUG constant myself and comment it out in release builds?</p> <p>EDIT: I'm on VS 2008</p> http://stackoverflow.com/questions/258481/how-can-i-check-whether-i-am-in-a-debug-or-release-build-in-a-web-app/258495#258495 2 Answer by Andrew Theken for How can I check whether I am in a debug or release build in a web app? Andrew Theken 2008-11-03T12:34:24Z 2008-11-03T12:56:58Z <p>Look at <a href="http://msdn.microsoft.com/en-us/library/system.configuration.configurationmanager.getsection.aspx" rel="nofollow">ConfigurationManager.GetSection()</a> - this should get you most of the way there.. however, I think you're better off just changing between debug and release modes and letting the compiler determine to execute the "#if DEBUG" enclosed statements.</p> <pre><code>#if DEBUG /* re-throw the exception... */ #else /* write something in the event log... */ #endif </code></pre> <p>the above will work just fine, just make sure you have at least two build configurations (right-click the project you're working on and go to "Properties" there's a section in there on Builds) - make sure that one of those builds has the "define DEBUG" checked and the other does not.</p> http://stackoverflow.com/questions/258481/how-can-i-check-whether-i-am-in-a-debug-or-release-build-in-a-web-app/258515#258515 3 Answer by TheCodeJunkie for How can I check whether I am in a debug or release build in a web app? TheCodeJunkie 2008-11-03T12:41:33Z 2008-11-03T12:41:33Z <p>To add ontop of Andrews answer, you could wrap it in a method as well</p> <pre><code>public bool IsDebugMode { get { #if DEBUG return true; #else return false; #endif } } </code></pre> http://stackoverflow.com/questions/258481/how-can-i-check-whether-i-am-in-a-debug-or-release-build-in-a-web-app/259271#259271 0 Answer by Loris for How can I check whether I am in a debug or release build in a web app? Loris 2008-11-03T16:57:18Z 2008-11-03T16:57:18Z <p>This is what I ended up doing:</p> <pre><code>protected bool IsDebugMode { get { System.Web.Configuration.CompilationSection tSection; tSection = ConfigurationManager.GetSection("system.web/compilation") as System.Web.Configuration.CompilationSection; if (null != tSection) { return tSection.Debug; } /* Default to release behavior */ return false; } } </code></pre>