我们正在使用改进的自动包还原过程来还原丢失的 NuGet 包。
构建时,开始从包源下载时会弹出“恢复”对话框,这是正确的:
我可以看到这些包正在恢复到包文件夹中,但它并没有完成所有这些包的恢复。我收到以下类型的错误:
Error 10 NuGet Package restore failed for project MyProject: System.InvalidOperationException: Unable to find version '6.0.1' of package 'Newtonsoft.Json'.
at NuGet.PackageHelper.ResolvePackage(IPackageRepository repository, String packageId, SemanticVersion version)
at NuGet.VsEvents.PackageRestorer.RestorePackage(PackageReference package)
at NuGet.VsEvents.PackageRestorer.RestorePackages(String packageReferenceFileFullPath, IFileSystem fileSystem)
at NuGet.VsEvents.PackageRestorer.PackageRestore(ProjectPackageReferenceFile projectPackageReferenceFile).
这可能是因为我有多个包源吗?
例如,NuGet 可能在我们的私有包源中搜索“Newtonsoft.Json”,而不是在nuget.org
源中。
.nuget/NuGet.config
文件:
<configuration>
<packageSources>
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
<add key="private" value="http://privatePackageSource.com/nuget" />
</packageSources>
<solution>
<add key="disableSourceControlIntegration" value="true" />
</solution>
</configuration>
我们正在使用 Visual Studio 2013 和 NuGet 2.8.5。
编辑:
使用 Fiddler,我已经确认 NuGet 确实在不正确的源中搜索包。它正在从我的私人存储库中请求以下包。
我还阅读了这篇文章并将该activePackageSource
部分添加到NuGet.config
文件中:
<configuration>
<packageSources>
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
<add key="private" value="http://privatePackageSource.com/nuget" />
</packageSources>
<activePackageSource>
<add key="All" value="(Aggregate source)" />
</activePackageSource>
<solution>
<add key="disableSourceControlIntegration" value="true" />
</solution>
</configuration>
但这并不能解决问题。