当使用内置模板(文件 - >新项目等)创建MVC项目时,web.config读取
<compilation debug="true" targetFramework="4.5" />
在Web.Release.config中我看到了这个转换
<compilation xdt:Transform="RemoveAttributes(debug)" />
所以我假设当我在Release模式下构建debug =&#34; true&#34;会消失的。但是我没有看到这一点。 转换仅在发布网站时应用?我已经看到了由drag&amp; amp ;;删除,从根目录复制Web.config(使用debug =&#34; true&#34;包括在内)。
我想检查一下,如果通过拖拽和部署进行部署你需要手动删除这个属性吗?或者我错过了什么?
答案 0 :(得分:0)
首选发布您的网站(与F5
或drag and drop
不同),以便更新\转换web.config ...
禁用调试模式
取决于构建配置而不是目标环境,debug属性适用于Release版本,当您通常希望禁用调试时,无论您要部署到哪个环境。
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>