Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 Appveyor 项目中,我在构建中配置了它并Package NuGet projects选中。在我的源代码中,我有.csproj一个匹配.nuspec 的,但我的构建没有调用nuget pack来创建.nupkg文件。
Package NuGet projects
.csproj
.nuspec
nuget pack
.nupkg
我错过了什么?
问题是我的appveyor.yml文件中的配置不正确。我将文件更新为只有这个,它开始工作。
appveyor.yml
version: '2.0.0.{build}-prerelease' build: publish_nuget: true