【发布时间】:2012-03-24 00:47:04
【问题描述】:
我正在尝试使用 web.config 转换更新我的 web.config 文件中 appSettings 元素的 configSource 属性。
我的 web.config 中有以下内容
<appSettings configSource="Config\appSettings.local.config">
</appSettings>
我想要这个
<appSettings configSource="Config\appSettings.prod.config">
</appSettings>
当我构建发布时。这没有发生。我的 Web.Release.config 元素中有以下内容
<appSettings xdt:Transform="SetAttributes(configSource)" configSource="Config\appSettings.prod.config" />
【问题讨论】:
标签: asp.net .net web-config