0
  • File -> Source価値を引き出す方法
  • として割り当て、XSLT が提供された新しい要素としてRegistryValue -> NameどこRegistryValueに注入されますか?

ソース XML

<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
    <Fragment>
        <DirectoryRef Id="WixSlave.Binaries">
            <Component Id="cmpA1D1BF677641BE2AE700859D8256B0FC" Guid="{B0BF9CBD-8A5D-43C1-B9DE-0A1B5A6BD1DE}">
                <File Id="filC2827DDF7874712A62423151FBE8CE34" Source="$(var.WixSlave.TargetDir)\WixSlave.exe" />
            </Component>
            <Component Id="cmpBC6AB890535757A915C99A10445CC74E" Guid="{8726FF82-808A-4736-AD0A-C804A34E494B}">
                <File Id="fil7BD5BE5CD71AC92FF47D1D51A99FEE05" Source="$(var.WixSlave.TargetDir)\WixSlave.exe.config" />
            </Component>
        </DirectoryRef>
    </Fragment>
    <Fragment>
        <ComponentGroup Id="WixSlave.Binaries">
            <ComponentRef Id="cmpA1D1BF677641BE2AE700859D8256B0FC" />
            <ComponentRef Id="cmpBC6AB890535757A915C99A10445CC74E" />
        </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">
    <!-- Copy all attributes and elements to the output. -->
    <xsl:template match="@*|*">
        <xsl:copy>
            <xsl:apply-templates select="@*"/>
            <xsl:apply-templates select="*"/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="wix:Wix/wix:Fragment/wix:DirectoryRef/wix:Component">
        <Component>
            <xsl:apply-templates select="@*|*"/>
            <RegistryValue Name="toBeVariableKey" Root="HKCU" Key="Software\[Manufacturer]\[ProductName]" Type="integer" Value="1" KeyPath="yes"/>
        </Component>
    </xsl:template>
</xsl:stylesheet>
  • より具体的には、File要素属性を読み取り、Source="$(var.WixSlave.TargetDir)\WixSlave.exe"それを変換してWixSlaveexe 、ソース文字列から文字 (az、AZ) のみを抽出し、最後のスラッシュの後に開始します。
  • そして、その文字列をRegistryValueelementName属性に割り当てます。サンプルでは ですが、最初Name="toBeVariableKey"は になるはずですName="WixSlaveexe"Component

  • 2 番目Componentは、 から読み取り、File Source="$(var.WixSlave.TargetDir)\WixSlave.exe.config"で追加RegistryValueする必要がありName="WixSlaveexeconfig"ます。

4

1 に答える 1

2

属性値テンプレートを使用して名前を設定できます

<RegistryValue Name="{substring-after(wix:File/@Source, '\')}" />

これにより、最初のスラッシュの後の部分文字列が抽出され、結果が属性nameに割り当てられます。

テキストからドットを削除するには、次のように翻訳機能を使用できます。

<RegistryValue Name="{translate(substring-after(wix:File/@Source, '\'), '.', '')}" />
于 2012-04-27T16:18:20.813 に答える