gpt4 book ai didi

asp.net - Web Config 转换以添加子元素

转载 作者:行者123 更新时间:2023-12-03 04:50:48 28 4
gpt4 key购买 nike

我在 web.config 中有以下配置:

  <resizer>
<sizelimits imageWidth="0" />
<plugins>
<add name="MvcRoutingShim" />
<!--<add name="AzureReader" connectionString="DataConnectionString" /> -->
<add name="DiskCache" />
<add name="PrettyGifs" />
<add name="AnimatedGifs" />
</plugins>
</resizer>

在 web.config.Release 中,如何将 AzureReader 元素添加为插件元素的子元素(有效地取消注释上述内容)?

我熟悉如何进行基本转换,但以前从未这样做过。

最佳答案

您可以使用插入转换:

 <resizer>
<plugins>
<add name="AzureReader" connectionString="DataConnectionString"
xdt:Transform="Insert" />
</plugins>
</resizer>

Web.config Transformation Syntax for Web Application Project Deployment

关于asp.net - Web Config 转换以添加子元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11032868/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com