NuGet在创建pack时提示”The replacement token 'author' has no value“问题解决

时间:2022-10-18 00:09:45

在创建pack时出现了“The replacement token 'author' has no value”的错误提示。

解决方法:

1、可能程序没生成过,在解决方案上重新生成解决方案,注意Debug和Release版本都生成一次,再重新运行pack的命令进行打包。

2、如果上面还不能解决,可以尝试此命令,指定参数:nuget pack myproject.csproj -IncludeReferencedProjects -Prop Configuration=Release

痛过以上方法,基本可以解决问题。