1

xmlstarletを使用して.Netプロジェクトファイルの大規模なグループを処理しようとしていますが、xslを使用してこの単純な変換を試みても機能しProductVersionません。

私は試し//ProductVersionましたが、このインスタンスの名前空間が問題を引き起こしている可能性がありますか?

run.cmd

SET ProjFile=test.vbproj
SET TempFile=%TEMP%\temp.proj
xml tr clean.xsl %ProjFile% > %TempFile%
move /Y %TempFile% %ProjFile%

clean.xsl

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>

    <xsl:strip-space elements="*"/>

    <xsl:template match='@*|node()'>
        <xsl:copy>
            <xsl:apply-templates select='@*|node()'/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="ProductVersion"/>
</xsl:stylesheet>

test.vbproj

<?xml version="1.0" encoding="UTF-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build" ToolsVersion="4.0">
  <PropertyGroup>
    <ProductVersion>9.0.30729</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
  </PropertyGroup>
</Project>
4

1 に答える 1

1

これは、xmlstarleteditサブコマンドを使用して直接行うことができます。

xmlstarlet ed \
  -N ms=http://schemas.microsoft.com/developer/msbuild/2003 \
  -d '//ms:ProductVersion' test.vbproj

または、名前空間を尊重するようにXSLTを変更できます。

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:ms="http://schemas.microsoft.com/developer/msbuild/2003">
    <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
    <xsl:strip-space elements="*"/>
    <xsl:template match='@*|node()'>
        <xsl:copy>
            <xsl:apply-templates select='@*|node()'/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="ms:ProductVersion"/>
</xsl:stylesheet>
于 2012-06-07T00:30:20.550 に答える