VS2015 RC 中的包管理器在 installing/restoring 一些包上失败

Package Manager in VS2015 RC fails on installing/restoring some packages

我正在尝试将来自 nuget.org (https://www.nuget.org/packages/NGenerics/) 的 nuget 包 - NGenerics.1.4.1 安装到 ASP.NET 5 项目(网站)中。程序包管理器因 UriFormatException 而失败。之后,将引用添加到解决方案资源管理器中的引用文件夹中,但带有黄色三角形 ('warning')。
添加到错误列表中的错误:"Dependency NGenerics >= 1.4.1.0 could not be resolved".
我还尝试从本地文件夹注册表安装。

这是 msconnect 上的错误。

我想知道是否有人遇到过与我在 google 中找不到任何内容相同的问题。也欢迎任何解决方法。

包管理器的输出:

Installing NuGet package NGenerics.1.4.1.
Successfully installed 'NGenerics.1.4.1' to Samples.AjaxDemo2.
========== Finished ==========
Restoring packages for D:\Work\Apps\Samples.AjaxDemo2\project.json
----------
System.UriFormatException: Invalid URI: The format of the URI could not be determined.
   at System.Uri.CreateThis(String uri, Boolean dontEscape, UriKind uriKind)
   at System.Uri..ctor(String uriString)
   at Microsoft.Framework.PackageManager.PackageSourceUtils.CreatePackageFeed(PackageSource source, Boolean noCache, Boolean ignoreFailedSources, Reports reports)
   at Microsoft.Framework.PackageManager.RestoreCommand.AddRemoteProvidersFromSources(List`1 remoteProviders, List`1 effectiveSources)
   at Microsoft.Framework.PackageManager.RestoreCommand.<RestoreForProject>d__74.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at Microsoft.Framework.PackageManager.RestoreCommand.<>c__DisplayClass73_0.<<ExecuteCommand>b__0>d.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at Microsoft.Framework.PackageManager.RestoreCommand.<ExecuteCommand>d__73.MoveNext()
----------
Restore failed
Invalid URI: The format of the URI could not be determined.

终于找到问题所在了。我在文件夹结构中的解决方案上方某处有“.nuget\NuGet.config”文件。
NuGet.config 包含具有相对文件路径的包源:

<configuration>
  <packageSources>
    <add key="local" value="..\..\..\Release"/>
  </packageSources>
</configuration>

当我删除 VS 中的 packageSource 包管理器时,它开始工作了。

有点可笑

希望它能帮助一些人不要像我一样浪费那么多时间。

我今天在 Visual Studio 2013 的 NuGet 2.8.5 中偶然发现了同样的问题。@Shrike 的回答帮助我发现这是我在自定义 NuGet.config 中的相对路径规范。由于看起来 System.Uri 必须能够解析它,所以您所要做的就是确保相对路径是正确的、合法的 URI。相对文件 URI 必须以“./”开头(当然也不要使用反斜杠,它们是 Windows 东西!)。参见 c# type to handle relative and absolute URI's and local file paths

例如使用:

<add key="local-feed" value="./lib/nuget-feed" />

而不是:

<add key="local-feed" value="lib/nuget-feed" />

删除本地提要不是一个好主意,因为您现在必须从不同的提要恢复,这可能不是您想要的(就个人而言,鉴于它的轨道,我不会将我的作品押在 nuget 画廊上停机记录...)

在异常上浪费了大约两个小时后,我发现我的包源已添加到 .nuget\NuGet.config 中的 disabledPackageSources 部分。我只需要将它从禁用列表中删除即可。

 <disabledPackageSources>
    <add key="RaNuget" value="true" />
  </disabledPackageSources>