0
私は(それは、このインストールでインストールされている)ファイルweb.configファイルからいくつかの要素を削除したい
場合、いくつかのPROP =「0」web.configファイルから要素を削除するにはどうすればよいですか?
<configuration>
<thingy>
<stuff>
<item type='value1' name='name1' file='node1.txt'/>
<item type='value2' name='name2' file='node2.txt'/>
</stuff>
</thingy>
</configuration>
私はこの
<util:XmlConfig
On="install"
Action="delete"
Id="RemoveAnElement"
Node="element"
File="Application.dll.config"
VerifyPath="/configuration/thingy/stuff/item[\[]@type='value1'[\]]"
ElementPath="/configuration/thingy/stuff"
Sequence="100"
/>
エラーなしをやろうとしています要素はまだ存在します。どのようにそれを削除するには?