我在MSBuild脚本中有以下任务:
<XmlUpdate
Namespace="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"
XmlFileName="$(PackageDir)\temp\OddEnds.Testing\OddEnds.Testing.nuspec"
XPath="/package/metadata/version"
Value="%(OddEndsTestingAsmInfo.Version)" />
应该使用程序集版本更新NuGet规范文件中的空version
节点。我的.nuspec文件如下所示:
<?xml version="1.0" encoding="utf-8"?>
<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http:www.w3.org/2001/XMLSchema-instance">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>OddEnds</id>
<authors>Tomas Lycken</authors>
<!-- Here's the node I want to update -->
<version></version>
<owners>Tomas Lycken</owners>
<description>Odd ends and bits that I might need in any project.</description>
</metadata>
</package>
我相信XPath指针/package/metadata/version
指向正确的节点(因为如果我将其更改为其他内容,它会抱怨找不到节点)但输出显示为0 node(s) selected for update.
我错过了什么?
答案 0 :(得分:2)
您可能需要在xpath字符串中包含命名空间。
查看此博文:http://www.lesnikowski.com/blog/index.php/update-nuspec-version-from-msbuild/
您也可以尝试// *:版本。这将选择所有版本元素,而不管命名空间。
答案 1 :(得分:1)
我在NuGet,XmlUpdate,MSBuild和XPath方面遇到了同样的问题。
最后,我切换到MSBuild Community Tasks项目的 NuGetPack 任务。
(请注意,NuGet任务(至少现在只在Nightly Build中提供)
使用此任务通过MSBuild将版本号添加到NuGet包中,看起来就像下面的代码片段一样:
<Target Name="NuGet">
<GetAssemblyIdentity AssemblyFiles="$(BuildCompileDirectory)\$(AssemblyName).dll">
<Output TaskParameter="Assemblies" ItemName="AssemblyIdentities"/>
</GetAssemblyIdentity>
<NuGetPack
ToolPath="$(ToolsDirectory)"
WorkingDirectory="$(BuildCompileDirectory)"
File="$(SrcDirectory)\$(SolutionName).nuspec"
Version="%(AssemblyIdentities.Version)"/>
</Target>
希望有所帮助!
答案 2 :(得分:1)
您的任务需要如下所示:
<XmlUpdate
Prefix="xmlsucks"
Namespace="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"
XmlFileName="$(PackageDir)\temp\OddEnds.Testing\OddEnds.Testing.nuspec"
XPath="/xmlsucks:package/xmlsucks:metadata/xmlsucks:version"
Value="%(OddEndsTestingAsmInfo.Version)" />
随意将前缀更改为您想要使用的任何贬义词: - )