31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- 有关使用 web.config 转换的详细信息,请访问 https://go.microsoft.com/fwlink/?LinkId=125889 -->
|
|
|
|
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
|
|
<!--
|
|
在以下示例中,"SetAttributes" 转换将更改
|
|
"connectionString" 的值,因此仅当 "Match" 定位符
|
|
找到属性 "name"(值为 "MyDB")时才使用 "ReleaseSQLServer"。
|
|
|
|
<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)" />
|
|
<!--
|
|
在以下示例中,"Replace" 转换将替换
|
|
web.config 文件的整个 <customErrors> 部分。
|
|
请注意,由于只有一个 customErrors 部分位于
|
|
<system.web> 节点下方,因此不需要使用 "xdt:Locator" 属性。
|
|
|
|
<customErrors defaultRedirect="GenericError.htm"
|
|
mode="RemoteOnly" xdt:Transform="Replace">
|
|
<error statusCode="500" redirect="InternalError.htm"/>
|
|
</customErrors>
|
|
-->
|
|
</system.web>
|
|
</configuration> |