Nuget Pack-有没有办法为后缀使用通配符或变量?

时间:2018-07-09 18:37:54

标签: asp.net nuget

我正在使用nuget pack从这样的命令行中创建一个Nuget包:

nuget pack -Build -Properties Configuration=Release -Suffix beta1

是否可以在后缀参数中使用通配符或变量,因此我可以自动获取内部版本号或其他内容?

想做这样的事情(不起作用):

nuget pack -Build -Properties Configuration=Release -Suffix beta$(buildNumber)
nuget pack -Build -Properties Configuration=Release -Suffix beta$(variableFromSomewhere)

1 个答案:

答案 0 :(得分:0)

使用TFS创建程序包时,它支持使用变量。

您可以使用nuget pack并选择Automatic package versioning来创建软件包:

one demo for your reference

或使用Nuget custom指定命令:

enter image description here