1

我很新,我想在网上搜索时转换 web.config 我发现 SlowCheetah ,但我无法转换设置,因为我可以找到任何具有以下值的公共属性是我想要转换的属性

<smtp deliveryMethod="Network" >
      <network host="xxx" userName="xxxx" password="xxx" port="xxx" enableSsl="xxx" defaultCredentials="false" />
  </smtp>

这就是我想把它变成

<smtp deliveryMethod="SpecifiedPickupDirectory" from="xxxxx">
    <specifiedPickupDirectory pickupDirectoryLocation="C:\" />
  </smtp>

提前谢谢你

4

1 回答 1

2

您可以使用以下转换。

<smtp deliveryMethod="SpecifiedPickupDirectory" from="xxxxx" xdt:Transform="SetAttributes">
    <network xdt:Transform="Remove" />
    <specifiedPickupDirectory pickupDirectoryLocation="C:\" xdt:Transform="Insert" />
</smtp>

您可以在 msdn 上找到有关所有转换功能的更多信息:http: //msdn.microsoft.com/en-us/library/dd465326.aspx

于 2013-03-14T10:00:26.803 回答