我正在使用内置 xdt 的 vs 2010 发布一个网站。我知道转换正在起作用,因为 web.config 的其他元素正在转换。
这是给我带来问题的转换语句:
<param name="ssrsServiceUrl" value="thevalue" xdt:Locator="XPath (/configuration/unity/container/register[@name='ReportingRegistration']/constructor/param[@name='ssrsServiceUrl'])" xdt:Transform="SetAttributes(value)"/>
这是配置文件(仅相关部分)
<?xml version="1.0"?>
<configuration>
<unity xmlns="http://schemas.microsoft.com/practices/2010/unity">
<container>
<register name="ReportingRegistration" type="IMyType" mapTo="MyType">
<lifetime type="singleton"/>
<constructor>
<param name="ssrsServiceUrl" value="foovalue"/>
</constructor>
</register>
</container>
</unity>
</configuration>
我省略了 web.config 中的多个参数。