Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试查找有关debug参数在我的 Web 应用程序的 web.config 文件的这一行中的作用的一些信息:
debug
<system.web> <compilation targetFramework="4.0" debug="true"/>
有人可以解释吗?我是否需要将其保留在生产产品中?出于某种原因,当我发布 Web 应用程序时,该行保留在我的 web.config 中。
它确定是否为已编译的程序集生成调试信息。IIS 自动编译内容,因此如果您更改页面文件,您的更改会自动生效。有问题的标签告诉 IIS 如何编译它。