如何为自定义配置元素配置web.config转换

时间:2019-05-10 11:59:28

标签: c# asp.net-mvc web-config web.config-transform

我正在尝试为xdt编写web.config文件中的自定义元素,以便为每种配置模式获取不同的值。

我有一个自定义元素,如下所示:

<unity xmlns="http://schemas.microsoft.com/practices/2010/unity">
    <containers>
      <container name="Service">
        <register type="" mapTo="" xdt:Transform="SetAttributes(type)" xdt:Locator="Match(mapTo)" />
        <register type="" mapTo="" xdt:Transform="SetAttributes(type)" xdt:Locator="Match(mapTo)" />
      </container>
    </containers>
  </unity>

我还添加了xdt元素。但是发布后,期望值就没有生成。

任何帮助将不胜感激。

0 个答案:

没有答案