【发布时间】:2016-11-14 10:07:30
【问题描述】:
我有这个 web.config,我希望使用 msdeploy 工具在构建时更改一个 xml 元素。
<customBinding>
<binding name="customBinaryBinding">
<binaryMessageEncoding>
<readerQuotas maxStringContentLength="20971520"/>
</binaryMessageEncoding>
<httpTransport maxReceivedMessageSize="2147483647" authenticationScheme="Negotiate" maxBufferSize="2147483647"/>
</binding>
</customBinding>
如何配置我的 Parameters.xml 和 SetParameters 以使其从 httpTransport 更改为 httpsTransport。我是新手,请多多包涵:)。
【问题讨论】:
标签: xml parameters build config msdeploy