Getting the .NET framework setting for <compilation debug="true"> - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T02:58:44Zhttp://stackoverflow.com/feeds/question/450017http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/450017/getting-the-net-framework-setting-for-compilation-debugtrue0Getting the .NET framework setting for <compilation debug="true">Ian Quigley2009-01-16T10:29:40Z2009-01-16T10:57:18Z
<p>In my web.config I have the standard element;</p>
<pre><code><compilation debug="true" defaultLanguage="c#">
</code></pre>
<p>I know I could use [Conditional("DEBUG")] on methods, or use some pre-compiler if statement like #if DEBUG, but what I am looking for is the built-in .NET framework setting that lets me know if the setting for debug in the compilation section.</p>
<p>I've seen it done before but can't find it or remember it.</p>
<p><strong>Duplicate - <a href="http://stackoverflow.com/questions/401306/programmatically-access-the-compilation-section-of-a-web-config#401413">Programmatically access the <code><compilation /></code> section of a web.config?</a></strong> </p>
http://stackoverflow.com/questions/450017/getting-the-net-framework-setting-for-compilation-debugtrue/450072#4500721Answer by Ian Quigley for Getting the .NET framework setting for <compilation debug="true">Ian Quigley2009-01-16T10:57:18Z2009-01-16T10:57:18Z<p>HttpContext.Current.IsDebuggingEnabled (posted by Jason Diamond) was what I was looking for.</p>
<p>Thanks for your help Marc!</p>