MVC web.config compilation debug=true - 需要手动更改吗?

MVC web.config compilation debug=true - a manual change needed?

当使用内置模板(文件 -> 新项目等)创建 MVC 项目时,web.config 显示为

<compilation debug="true" targetFramework="4.5" />

在 Web.Release.config 我看到这个转换

<compilation xdt:Transform="RemoveAttributes(debug)" />

所以我假设当我在 Release 模式下构建时,debug="true" 会消失。但是我没有看到这个。 转换仅在 发布 网站时应用吗?我见过通过拖放部署的网站,其中 Web.config 从根目录复制过来(包括 debug="true")。

我想检查一下,如果通过拖放部署,您是否必须手动删除此属性?还是我遗漏了什么?

最好是发布您的网站(不同于 F5drag and drop)以便 update\transform web.config ...

禁用调试模式

取决于构建配置而不是目标环境,调试属性专门用于发布构建,特别是当您通常希望禁用调试时,无论您部署到哪个环境。

Visual Studio 项目模板将创建一个 Web.Release.config 转换文件,其中包含从编译元素中删除调试属性的代码。

低于默认值Web.Release.config:(一些示例转换代码被注释掉,它包括删除调试属性的编译元素中的代码:)

<?xml version="1.0" encoding="utf-8"?>

<!-- For more information on using web.config transformation visit     http://go.microsoft.com/fwlink/?LinkId=125889 -->

<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
  <!--
    In the example below, the "SetAttributes" transform will change the value     of 
    "connectionString" to use "ReleaseSQLServer" only when the "Match" locator 
    finds an attribute "name" that has a value of "MyDB".

    <connectionStrings>
      <add name="MyDB" 
        connectionString="Data Source=ReleaseSQLServer;Initial     Catalog=MyReleaseDB;Integrated Security=True" 
        xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
    </connectionStrings>
  -->
  <system.web>
    <compilation xdt:Transform="RemoveAttributes(debug)" />
    <!--
      In the example below, the "Replace" transform will replace the entire 
      <customErrors> section of your web.config file.
      Note that because there is only one customErrors section under the 
      <system.web> node, there is no need to use the "xdt:Locator" attribute.

      <customErrors defaultRedirect="GenericError.htm"
        mode="RemoteOnly" xdt:Transform="Replace">
        <error statusCode="500" redirect="InternalError.htm"/>
      </customErrors>
    -->
  </system.web>
</configuration>