誰かが以下のXSLTを理解するのを手伝ってくれませんか
<xsl:stylesheet version="1.0" >
<xsl:output method="xml" indent="yes" />
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()" />
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
基本的に、XSLt 変換を適用して、以下の要素を web.config から削除したいと思います。
<system.net>
<defaultProxy>
<proxy
usesystemdefault = "false"
proxyaddress="http://proxyserver"
bypassonlocal="true"
/>
</defaultProxy>
</system.net>