XmlMassUpdate - 如何不添加xmlns?

时间:2009-08-20 12:24:46

标签: xml msbuild build-process msbuildcommunitytasks

我正在使用Nightly build 1.3.0.477的MSBuild社区任务,我遇到了XmlMassUpdate的问题。

这就是我想要做的事情:

对于每个项目,如果它没有引用CommonAssemblyInfo.cs文件,请添加该引用。

我这样做:

    

<Message Text="Path is $(MSBuildCommunityTasksPath)" Importance="normal" />
<!---->
<XmlMassUpdate ContentFile="%(DotNetProjects.FullPath)"
               ContentRoot="msb:Project/msb:ItemGroup[2]/msb:Compile[1]"
               NamespaceDefinitions="msb=http://schemas.microsoft.com/developer/msbuild/2003"
               SubstitutionsFile="$(BuildFolder)CommonAssemblyInfo.substitution"
               SubstitutionsRoot="ItemGroup/Compile" />

我的替换文件如下所示:

<ItemGroup>
    <Compile Include="..\..\CommonAssemblyInfo.cs" >
        <Link>Properties\CommonAssemblyInfo.cs</Link>
    </Compile>
</ItemGroup>

问题是,当我运行目标时,会将空xmlns添加到链接标记,这是非法的。

<ItemGroup>
<Compile Include="Class1.cs">
  <Link xmlns="">Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>

我怎么告诉它不要这样做?

1 个答案:

答案 0 :(得分:2)

简短的回答是你不能,即使替换文件的节点有一个命名空间,替换任务总是使用一个空名称空间。

请参阅:XmlMassUpdate.cs destinationParentNode.AppendChild(mergedDocument.CreateNode(XmlNodeType.Element, nodeToModify.Name, String.Empty)

中的第380行

作为替代方法,您可以使用XSLT任务转换xml文件。

我已经包含了一个如何完成此操作的基本示例,但我对XSLT并不是特别熟练,所以它有点被黑了。

<xsl:stylesheet
    version="1"
    xmlns="http://schemas.microsoft.com/developer/msbuild/2003"
    xmlns:msb="http://schemas.microsoft.com/developer/msbuild/2003"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    >

    <xsl:output indent="yes"
            standalone="yes"
            method="xml"
            encoding="utf-8"
            />

    <xsl:template match="/msb:Project/msb:ItemGroup[1]">
        <ItemGroup>
            <Compile Include="..\..\CommonAssemblyInfo.cs">
                <Link>Properties\CommonAssemblyInfo.cs</Link>
            </Compile>
        </ItemGroup>
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>

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

在构建文件中。

<Xslt Inputs="input.xml"
      Output="output.xml"
      Xsl="transform.xslt"
      />