我刚刚开始使用 web.config 转换,并且能够成功应用替换转换。但是我正在努力进行更复杂的转换,例如
<downloadHandlers>
<add name="FileDownload" path="~/Download.ashx">
<tcpDownloadEndpoint endpointIPAddress="127.0.0.1" endpointPort="8100" />
</add>
</downloadHandlers>
我在转换文件中有以下行,用于将本地 IP 替换为 UAT 环境的 UAT IP。
<tcpDownloadEndpoint
endpointIPAddress="127.127.0.1"
xdt:Transform="SetAttributes(endpointIPAddress)">
</tcpDownloadEndpoint >
但是上面的代码没有任何作用,web.config中的IP经过改造后仍然包含本地IP。
我正在使用带有由 Syed Hashmi (MS) 编写的 web.config 转换插件的 Visual Studio 2010。
谁能告诉我我做错了什么。
谢谢