У меня есть следующий конфиг для моей почты:
<system.net>
<mailSettings>
<smtp from="foo@bar.com" deliveryMethod="SpecifiedPickupDirectory">
<specifiedPickupDirectory pickupDirectoryLocation="C:/test"/>
<network host="localhost" userName="" password=""/>
</smtp>
</mailSettings>
</system.net>
Это моя версия .Release:
<system.net>
<mailSettings>
<smtp from="foo@bar.com" xdt:Transform="RemoveAttributes(deliveryMethod)">
<network xdt:Transform="Replace" host="192.168.1.9" userName="" password="" />
</smtp>
</mailSettings>
</system.net>
Как мне удалить
<specifiedPickupDirectory pickupDirectoryLocation="C:/test"/>
такон не отображается в моем .Release вообще?
Кроме того, я хотел бы полностью удалить другие пространства имен, такие как System.Diagnostics
.Каков синтаксис для этого?