我知道我们可以在使用以下样式的 web.config 转换部署到不同的环境或设置时进行转换,但我的问题是是否可以用这种技术或其他一些设置完全替换 web.config 的另一部分。对于例如我有一个<System.IdentityModel> </System.IdentityModel>
部分,我想在部署到不同的环境时完全改变。这可能吗?
<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>
-->
</configuration>