在VS2010网站上定义DEBUG符号?
当我将配置下拉列表从调试更改为发布时,我找不到此设置的位置
#if !DEBUG
// some code
#endif
,我的代码中没有看到任何更改,这表明我的调试符号未定义
编辑
我没有在 Buid 屏幕中看到该设置为标记建议:
I can't find where this setting is
#if !DEBUG
// some code
#endif
when I change the configuration dropdown from debug to release, I see no changes in my code, which suggests that my DEBUG symbol is not defined
EDIT
I do not see the setting in the Buid screen as Mark suggests:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您转到项目(网站)的属性,请转到“构建”选项卡并确保选中
定义 DEBUG 常量
。可以为每个构建配置更改此设置。
If you go to the properties on the project (the website), go to the Build tab and make sure
Define DEBUG constant
is checked.This setting can be changed for each build configuration.
如果马克的答案不起作用,请尝试更改为
或 (可选)
,看看是否有帮助?
If Mark's answer doesn't do it, try changing to
or optionally
and see if that helps?
在 Web.config 中,将编译部分更改为:
或
Worked for me,但令人烦恼的是构建屏幕中没有选项。
In Web.config, change the compilation section to:
or
Worked for me, but it's annoying there is no option in the build screen.