如何检查我是否在Web应用程序中进行调试或发布?

时间:2008-11-03 12:24:39

标签: c# asp.net debugging

在任何(非web).net项目中,编译器会自动声明DEBUG和TRACE常量,因此我可以使用条件编译,例如,在调试与发布模式下以不同方式处理异常。

例如:

#if DEBUG
    /* re-throw the exception... */
#else
    /* write something in the event log... */
#endif

如何在ASP.net项目中获得相同的行为? 看起来web.config中的system.web / compilation部分可能是我需要的,但是如何以编程方式检查呢? 或者我最好自己宣布DEBUG常量并在发布版本中对其进行评论?

编辑:我在VS 2008上

4 个答案:

答案 0 :(得分:7)

要在安德鲁斯回答的基础上添加,您可以将其包装在一个方法中

public bool IsDebugMode
{
  get
  {
#if DEBUG 
    return true;
#else
    return false;
#endif
  }
}

答案 1 :(得分:6)

看看ConfigurationManager.GetSection() - 这应该可以让你在那里大部分时间..但是,我认为你最好只是在调试和发布模式之间切换,让编译器决定执行“#if DEBUG “附上的陈述。

#if DEBUG
/* re-throw the exception... */
#else
/* write something in the event log... */
#endif

以上内容工作正常,只需确保您至少有两个构建配置(右键单击您正在处理的项目并转到“属性”,其中有一个部分在Builds上) - 确保一个这些构建中的“定义DEBUG”被检查,而另一个则没有。

答案 2 :(得分:5)

这就是我最终做的事情:

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;
    }
}

答案 3 :(得分:0)

我个人不喜欢“ #if debug”更改布局的方式。我通过创建一个条件方法来做到这一点,该方法仅在调试模式下才被调用,并通过引用传递一个布尔值。

[Conditional("DEBUG")]
private void IsDebugCheck(ref bool isDebug)
{
    isDebug = true;
}

public void SomeCallingMethod()
{ 
    bool isDebug = false;
    IsDebugCheck(ref isDebug);
}