2012-04-11 12 views
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" 
/> 

エラーなしをやろうとしています要素はまだ存在します。どのようにそれを削除するには?

答えて

3

基本XMLファイルから要素を削除し、PROP = "1"の場合、WiXが要素を追加するようにロジックを反転します。

関連する問題