我在项目中做了paket update
,它检测到一些未列出的软件包。它仍然下载了它们。这是我的输出的一部分:
Resolving packages for group MyGroup:
- Akka 1.4.0
Akka 1.4.0 was unlisted
- Akka 1.3.15
(...)
The owner of Akka 1.4.0 has unlisted the package. This could mean that the package version is deprecated or shouldn't be used anymore.
(...)
Installing into projects:
- Creating model and downloading packages.
Downloading Akka 1.4.0 (MyGroup)
Download of Akka 1.4.0 (MyGroup) done in 603 milliseconds. (11066 kbit/s, 0 MB)
我的paket.lock
还显示引用了未列出的Akka 1.4.0
:
NUGET
remote: https://api.nuget.org/v3/index.json
Akka (1.4)
Newtonsoft.Json (>= 9.0.1)
System.Collections.Immutable (>= 1.6)
System.ValueTuple (>= 4.5)
我如何告诉Paket忽略“未列出”的软件包而不将Akka的版本固定到1.3.15?
我只希望paket update
能够按预期更新,但不使用未列出的更新。