项目级别的自定义预处理器

在需要跳过某些操作时,可以方便地在项目级别设置自定义条件预处理。

转到 Solution Explorer - >点击 Right Mouse 你要设置变量的项目 - > Properties - > Build - >一般找到字段 Conditional compilation symbols 并在这里输入你的条件变量

StackOverflow 文档

代码示例将跳过一些代码:

public void Init()
{
    #if !IGNOREREFRESHDB
    // will skip code here
     db.Initialize();
    #endif
}