我有一个 ASP.NET Web API 项目,其中包括 2 个配置转换:
- Web.Live.config
- Web.UAT.config
如果我在发布时选择其中一个Live
或UAT
配置,则转换不会应用于呈现的web.config
文件。
我检查了我的转换配置,并且name
和xdt:Transform
是xdt:Locator
正确的。
在我的web.config
我有:
<connectionStrings>
<add name="foo" providerName="System.Data.SqlClient" connectionString="[main connection string]" />
</connectionStrings>
在我的web.Live.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">
<connectionStrings>
<add name="foo"
connectionString="[live connection string]"
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>
但是,即使Live
选择了,我发布的连接字符串仍然显示如下:
<connectionStrings>
<add name="foo" providerName="System.Data.SqlClient" connectionString="[main connection string]" />
</connectionStrings>
发生这种情况的可能原因有哪些?