如果我使用nuget.exe
CLI,我如何指定作者?
nuget pack some.csproj -IncludeReferencedProjects
有-author
这样的选项吗?我在文档中找不到任何内容。
答案 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"