在VS2010网站上定义DEBUG符号?

发布于 2024-10-15 17:45:09 字数 253 浏览 1 评论 0原文

当我将配置下拉列表从调试更改为发布时,我找不到此设置的位置

#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:

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

贵在坚持 2024-10-22 17:45:09

如果您转到项目(网站)的属性,请转到“构建”选项卡并确保选中定义 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.

难以启齿的温柔 2024-10-22 17:45:09

如果马克的答案不起作用,请尝试更改为

#ifndef DEBUG

 /* ... */

#endif

或 (可选)

#if !defined(DEBUG)

 /* ... */

#endif

,看看是否有帮助?

If Mark's answer doesn't do it, try changing to

#ifndef DEBUG

 /* ... */

#endif

or optionally

#if !defined(DEBUG)

 /* ... */

#endif

and see if that helps?

今天小雨转甜 2024-10-22 17:45:09

在 Web.config 中,将编译部分更改为:

<compilation debug="false">

<compilation debug="true">

Worked for me,但令人烦恼的是构建屏幕中没有选项。

In Web.config, change the compilation section to:

<compilation debug="false">

or

<compilation debug="true">

Worked for me, but it's annoying there is no option in the build screen.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文