我很新 当我在网上搜索时,我想转换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>
提前感谢你
答案 0 :(得分: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