我正在尝试为特定的构建配置创建一个nuget包。我们以Debug为例。我运行命令:
nuget pack path_to_my.nuspec -Properties“Configuration = Debug;” - 详细程度
它引发了以下错误:
尝试从'path_to_my.nuspec'构建包。 System.IO.FileNotFoundException:找不到文件:'bin \ Release \ mydll.dll'。
正如您所看到的,它尝试从bin \ Release获取dll,而不是bin \ Debug。
是否可以告诉nuget使用与Release不同的Configuration,或使用其他路径?