我的 web.config 在配置文件部分有一些属性的情况
<profile>
...
<properties >
<clear/>
<add type="System.String" name="propData"/>
...
</properties>
</profile>
现在我想添加一些其他属性,但来自外部文件(保留当前 web.config 用于服务器设置,但每次构建部署外部配置文件)。有没有办法将外部文件中的属性合并到我的 web.config 中,以便我得到
<profile>
...
<properties >
<clear/>
<add type="System.String" name="propData"/>
...
<add type="System.String" name="externalProp"/>
...
</properties>
</profile>
我可以使用“configSource”或“file”之类的 web.config 语法来做到这一点吗?