How can I either select a comment or insert a comment using Web.config transforms?
Nowhere can I find any information on this.
I am trying to do either:
1) Insert a piece of xml (<serviceAuthorization impersonateCallerForAllOperations="true"/>
) before an existing comment in the Web.config
OR
2) Insert a comment and xml at the end of a set of siblings:
Web.config 変換が xPath 軸をサポートしていないことがわかる限り、最初のコメントの前にノードを挿入するためにいくつか試してみました。
<serviceAuthorization impersonateCallerForAllOperations="true" xdt:Transform="InsertBefore(/configuration/system.serviceModel/behaviors/serviceBehaviors/behavior[@name='behaviorOne']/serviceMetadata/preceding::comment()[1])"/>
<serviceAuthorization impersonateCallerForAllOperations="true" xdt:Transform="InsertBefore(/configuration/system.serviceModel/behaviors/serviceBehaviors/behavior[@name='behaviorOne']/child::node()[1]"/>
私は他のいくつかを試しましたが、あなたはアイデアを得る. 変換をプレビューするとエラーが発生します。
また、コメントを挿入する方法に関する情報が見つからないようです。何か不足していますか?