如果我使用nuget.exe CLI,如何指定作者

时间:2016-11-10 14:45:57

标签: c# nuget

如果我使用nuget.exe CLI,我如何指定作者?

  

nuget pack some.csproj -IncludeReferencedProjects

-author这样的选项吗?我在文档中找不到任何内容。

2 个答案:

答案 0 :(得分:1)

您应该将作者信息添加到配置文件中,如下所示

<authors>JiaLei</authors>

答案 1 :(得分:1)

您需要使用the properties command传递替换令牌的值。您需要为作者with the exception of $configuration$, values in the project will be used in preference to any assigned to the same token on the command line and the default $author$ token is pulled from AssemblyCompany in the project.

创建一个新的令牌

在nuspec文件中

<authors>$CustomAuthor$</authors>

从命令行

nuget pack some.csproj -IncludeReferencedProjects -properties CustomAuthor="Scott Chamberlain"