当你使用内置模板(File -> new project等)创建MVC项目时。配置读
<compilation debug="true" targetFramework="4.5" />
在Web.Release.config中,我看到这个变换
<compilation xdt:Transform="RemoveAttributes(debug)" />
所以我假设当我在发布模式下构建时,debug="true"将消失。然而,我没有看到这一点。转换是否仅在发布网站时应用?我见过通过拖拽&drop, with the Web。从根目录复制配置(包括debug="true")。
我想检查一下,如果通过拖放&Drop你必须手动删除这个属性吗?还是我错过了什么?
首选是发布您的网站(不同于F5
或drag and drop
),以便更新转换网络。配置…
关闭调试模式
取决于构建配置而不是目标环境,当您通常希望禁用调试时,无论您部署到哪个环境,debug属性都是针对发布构建的。
Visual Studio项目模板将创建一个Web.Release.config转换文件,其中的代码将从编译元素中删除debug属性。
在默认的Web.Release.config下面:(使用一些被注释掉的示例转换代码,它包括编译元素中删除debug属性的代码:)
<?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>