- 子要素の属性がファイルではない場合、すべての
Component
要素とそれに対応する要素を削除する必要がありますか?ComponentRef
Component
File
Source
dll
Source
文字列値の評価関数があります。つまり、値を含む値に対して{substring(wix:File/@Source, string-length(wix:File/@Source) - 2)}='dll'
trueを返しますSource
dll
Component
しかし、関数を使用して最後の 2 つの要素 (子要素を含む) と対応する最後の 2 つの要素 (属性ComponentRef
によってマップされた)を削除する方法がわかりません。Id
ソース XML
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<DirectoryRef Id="TARGETFOLDER">
<Component Id="cmpA733DB49D89AC9CEA2EDFAAEE51992E7" Guid="{F3412A8F-5718-45AB-9E6F-7B802BCC0EED}">
<File Source="$(var.WixSlave.TargetDir)\protobuf-net.dll" Id="fil910D6DB28382BAB5A9DF0ACBD5095ADE" KeyPath="yes" />
</Component>
<Component Id="cmpF1D751B9621E283AD7BDAA8BC6997338" Guid="{20C09DBB-C8D6-43CF-A9D6-C823850F86F6}">
<File Source="$(var.WixSlave.TargetDir)\client.wyc" Id="fil7454A527FA7C3918A537EB96235C9F5F" KeyPath="yes" />
</Component>
<Component Id="cmp8CDA926DD93F7CEFBF8FFF444D5828F4" Guid="{2243D9D8-C172-4FFE-AEBE-43659294E55D}">
<File Source="$(var.WixSlave.TargetDir)\protobuf-net.pdb" Id="fil3EA19C07C51C4E31D37065B3A8620713" KeyPath="yes" />
</Component>
</DirectoryRef>
</Fragment>
<Fragment>
<ComponentGroup Id="Dlls">
<ComponentRef Id="cmpA733DB49D89AC9CEA2EDFAAEE51992E7" />
<ComponentRef Id="cmpF1D751B9621E283AD7BDAA8BC6997338" />
<ComponentRef Id="cmp8CDA926DD93F7CEFBF8FFF444D5828F4" />
</ComponentGroup>
</Fragment>
</Wix>
機能しない XSLT スタブ
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:wix="http://schemas.microsoft.com/wix/2006/wi" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="wix:File[{substring(wix:File/@Source, string-length(wix:File/@Source) - 2)}!='dll']"/>
</xsl:stylesheet>
この XSLT は多くの点で機能しません。まず 2 番目のエラーが表示さ
match
れ、式の何が問題なのかわかりません..DirectoryRef
それが機能したとしても、不一致要素Component
と子要素を削除しながら、どのように常に保持しFile
ますか?対応する要素の削除が
ComponentRef
完全に欠落していますか?
必要な XML 出力
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<DirectoryRef Id="TARGETFOLDER">
<Component Id="cmpA733DB49D89AC9CEA2EDFAAEE51992E7" Guid="{F3412A8F-5718-45AB-9E6F-7B802BCC0EED}">
<File Source="$(var.WixSlave.TargetDir)\protobuf-net.dll" Id="fil910D6DB28382BAB5A9DF0ACBD5095ADE" KeyPath="yes" />
</Component>
</DirectoryRef>
</Fragment>
<Fragment>
<ComponentGroup Id="Dlls">
<ComponentRef Id="cmpA733DB49D89AC9CEA2EDFAAEE51992E7" />
</ComponentGroup>
</Fragment>
</Wix>