我正在尝试使用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>
答案 0 :(得分:1)
您可以使用xmlstarlet edit子命令直接执行此操作:
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>