0
votes
3answers
294 views
How can I check whether I am in a debug or release build in a web app?
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 relea …
0
votes
How can I check whether I am in a debug or release build in a web app?
This is what I ended up doing:
protected bool IsDebugMode
{
get
{
System.Web.Configuration.CompilationSection tSection;
tSection = ConfigurationManager.GetSe …
