- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我将 ASP.NET Web 应用程序部署到生产环境时,我使用配置转换来删除 debug="true"
来自 <compilation>
.但是,就在今天,我注意到 web.config 中的另一个部分如下所示:
<system.codedom>
<compilers>
<compiler compilerOptions="/define:Debug=True" />
</compilers>
</system.codedom>
<compilation>
中删除的目的? ?如果我如上所示删除该属性会发生什么?
最佳答案
Is the fact that that's there defeating the purpose of removing it from
<compilation>
/debug
不是
/define:Debug=True
/debug : Instruct the compiler to emit debugging information.
/define : Defines preprocessor symbols.
Debug=True
你只在这种情况下实现代码:
#if DEBUG == true
// Compile what is inside here !
#endif
/define:Debug=True
不添加任何额外的调试信息,除非您在上面的代码中手动包含了它们。
txtDebug.Text = HttpContext.Current.IsDebuggingEnabled.ToString();
#if DEBUG
txtDebug.Text += "<br>defined Debug is on";
#endif
#if DEBUG == true
txtDebug.Text += "<br>defined Debug = true is on";
#endif
debug="false"
并与
compilerOptions="/define:Debug=True"
结果是
false
defined Debug = true is on
debug="true"
和
compilerOptions="/define:Debug=True"
结果是
true
defined Debug is on
defined Debug = true is on
<compiler language="c#;cs;csharp" extension=".cs"
compilerOptions="/define:Debug=True /D:DEBUG,TESTFLAG"
type="Microsoft.CSharp.CSharpCodeProvider, System,
Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
warningLevel="4" />
debug=false
False (debug is false)
defined Debug is on (but the defined DEBUG now is runs)
defined Debug = true is on (This is also runs)
test flag (but the defined extra flag is also runs)
/define:Debug=True
#if DEBUG == true
txtDebug.Text += "<br>defined Debug = true is on";
#endif
关于asp.net - system.web.compilation.debug vs. system.codedom.compilers.compiler.compilerOptions/define :Debug=True,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15908579/
抱歉,如果这是一个 nobb 问题,但我正在构建一个 Angular 应用程序并且我当前的 tsconfig.json 文件将“es6”作为“compilerOptions”中的“目标”: { "
我正在尝试映射 tsconfig.json 中的路径以摆脱 相对路径 hell 。我的 React App 基于 Create-React-App . 我试过这个 SO thread并在我的 tsco
我正在尝试通过查看这个问题 Visual Studio Code: compile typescript module 来配置 vscode 来编译 typescript 和这篇文章 https://
我正在开发一个 TypeScript 项目,我们使用 ES2017 作为输出目标,以及其中一个库,因为它将通过 Babel,我们希望支持最新的功能集我们在 Babel 中定位“Env”。 一切似乎都很
我对非 ts 模块(文本 Assets )有一个问题,它们没有按照 tsconfig.json 中的配置转移到 outDir(或者我做得不对)。 这是最简单的复制案例 // /src/main.ts
我正在使用 TypeScript 编译器 API。初始化程序时,系统要求我提供一个 CompilerOptions 对象。我想对给定的 tsconfig.json 文件使用 CompilerOptio
我正在尝试从 Create React App 迁移到 Vite.js,但我遇到了导入别名的问题。 在 Create React App 中,我有一个 jsconfig.json 文件,其中 comp
我正在尝试将我的 Angular4 应用程序更新到 Angular5。 我尝试按照官方网站建议的步骤进行操作,但现在我无法再编译,并且出现此错误: 错误 TS5023:未知的编译器选项“compile
从 2016 年中期开始,几乎所有 Angular2 TypeScript 教程和示例都在 tsconfig 的 compilerOptions 部分中使用 "target": "es5" .json
我正在尝试通过设置相应的字段来配置 Google Closure Compiler 的 CompilerOptions。但是,当我在简单模式下调用 setRemoveDeadCode() 方法激活死代
我对 tsconfig.json 中的 compilerOptions->lib 属性有疑问。 情况是我正在开发一个用 TypeScript 编写的 Firebase Cloud Functions
我正在使用 asp.net 3.5 在 web.config 中,我有 debug=false 和 compilerOptions="/debug:pdbonly"以进行优化编译,并且仍然在我的堆栈跟
我正在 Laravel 项目中开发 VueJS 3,我正在使用一个 JS 文件,该文件为我提供了用于 Markdown 工具栏的元素。基本上,它是一组功能,为我提供了应用所选 Markdown 选项的
**Trying to set the path inside tsconfig.json for compiler to treat src as baseUrl in react typescri
这个问题让我在使用 Vue 2 和 Vue CLI 时的几个方面感到困惑,现在又开始了一个新的 Vue 3.0 beta 项目。 Even with the currently newest Vue
更新到 Android Studio 2.3 后,尝试构建项目导致构建失败。 Execution failed for task ':app:greendao'. org.eclipse.jdt.in
我一直在使用 Svelte、TypeScript 和 Rollup(让 TypeScript 处理转译)来定位 ES7。现在我正在开始一个新项目,需要以 ES5 为目标。 我注意到的第一件事是一切都被
当我将 ASP.NET Web 应用程序部署到生产环境时,我使用配置转换来删除 debug="true"来自 .但是,就在今天,我注意到 web.config 中的另一个部分如下所示:
我是一名优秀的程序员,十分优秀!