.net core .net:将新源添加到Paket配置

.net core .net:将新源添加到Paket配置,.net-core,f#,nuget,paket,.net Core,F#,Nuget,Paket,背景:我在中遇到了一个bug,并注意到我使用的Nuget包()已经三个月没有更新了。我觉得在提交bug报告之前,我应该试一下每晚的构建 然后,我按照他们的自述,其中指出 如果将此提要添加到nuget.config:,则每日生成可用 当我将Paket用于我的玩具项目(主要用于学习目的)时,需要System.CommandLine,我反而更新了packet.dependentials source https://www.nuget.org/api/v2 nuget FSharp.Core sour

背景:我在中遇到了一个bug,并注意到我使用的Nuget包()已经三个月没有更新了。我觉得在提交bug报告之前,我应该试一下每晚的构建

然后,我按照他们的自述,其中指出

如果将此提要添加到nuget.config:,则每日生成可用

当我将Paket用于我的玩具项目(主要用于学习目的)时,需要
System.CommandLine
,我反而更新了
packet.dependentials

source https://www.nuget.org/api/v2
nuget FSharp.Core
source https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json
nuget System.CommandLine.Experimental
但是当我运行
paketupdate

$ paket update
Paket version 5.224.0                          
Resolving packages for group Main:
Possible Performance degradation, could not retrieve 'https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json/Packages?semVerLevel=2.0.0&$filter=Id eq 'System.CommandLine.Experimental'', ignoring further warnings for this source
 - FSharp.Core 4.7.0
 - System.CommandLine.Experimental 0.3.0-alpha.19405.1
 - system.memory 4.5.3
 - Microsoft.CSharp 4.6.0
 - System.Runtime.CompilerServices.Unsafe 4.6.0
 - System.Buffers 4.5.0
 - System.Numerics.Vectors 4.5.0
/home/nodakai/prog/CommandLineFSharp/paket.lock is already up-to-date
...snip...
我得到的只是Nuget
0.3.0-alpha.19405.1的3个月版本,这让我很难过

我做错了什么


FWIW当我用web浏览器打开源URL时,它似乎没有直接引用
System.CommandLine
。但我不熟悉Nuget和/或Paket生态系统,因此我不确定源数据本身是否有任何问题。

请尝试在
Paket.dependencies中指定
prerelease
,即:

nuget System.CommandLine.Experimental预发布版

此处列出了可用的版本:


谢谢,但这对我不起作用。在
paket.lock中获得了相同的
System.CommandLine.Experimental(0.3.0-alpha.19405.1)