如何解决如何使用 Web.config 转换更改 appSettings 部分中的属性值
你想要这样的东西:
<appSettings>
<add key="developmentModeUserId" xdt:Transform="Remove" xdt:Locator="Match(key)"/>
<add key="developmentMode" value="false" xdt:Transform="SetAttributes"
xdt:Locator="Match(key)"/>
</appSettings>
另请参阅:Web 应用程序项目部署的 Web.config 转换语法
解决方法
是否可以转换以下 Web.config appSettings 文件:
<appSettings>
<add key="developmentModeUserId" value="00297022" />
<add key="developmentMode" value="true" />
/* other settings here that should stay */
</appSettings>
变成这样的东西:
<appSettings>
<add key="developmentMode" value="false" />
/* other settings here that should stay */
</appSettings>
因此,我需要删除键 developmentModeUserId ,并且需要替换键 developmentMode 的值。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。