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.
我们将团队城市用作 nuget 服务器,并且工件清理正在删除旧的 nuget 包。不幸的是,我们的一些包不是经常构建的,当它们被清理时,其他构建就会中断。
我尝试将清理规则更改为 exclude *.nupkg,但这似乎不起作用。
*.nupkg
有任何想法吗?
我不知道您在发布此内容时使用的 TC 版本,但在版本 7 及更高版本中,有一个地方可以设置清理规则。
通过设置-:*.nupkg,您可以从清理过程中排除 NuGet 包。
-:*.nupkg
在 TeamCity 的 Build History Clean-up 选项中,您会在底部附近找到一个 Dependencies 类别,其中包含一个选项以防止清理其他构建配置所依赖的构建。我认为这将解决您的问题。