Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dotnet restore fails with private feed configured in local system account #6846

Closed
PaulTrampert opened this issue Sep 18, 2016 · 1 comment
Closed

Comments

@PaulTrampert
Copy link

Note: "privatefeed.com" is just what I'm using to anonymise my actual private feed.

Steps to reproduce

  • In your local system account profile (C:\Windows\SysWOW64\config\systemprofile\AppData\NuGet\NuGet.Config), set up a protected feed with basic auth.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
    <add key="privatefeed.com" value="https://privatefeed.com/nuget/Default" />
  </packageSources>
  <activePackageSource>
    <add key="All" value="(Aggregate source)" />
  </activePackageSource>
  <packageSourceCredentials>
    <privatefeed.com>
      <add key="Username" value="***" />
      <add key="ClearTextPassword" value="***" />
    </privatefeed.com>
  </packageSourceCredentials>
</configuration>
  • In a dotnet project with or without dependencies on the private feed, run dotnet restore as the local system. (I've done this through my jenkins server)

Expected behavior

dotnet restore works.

Actual behavior

dotnet restore -v Debug fails with the following console output.

08:58:15 trace: NuGet Command Line Version: 3.5.0.0
08:58:15 trace: Running restore with 2 concurrent jobs.
08:58:15 trace: Reading project file C:\Jenkins\workspace\RxnLog.Identity\src\RxnLog.Identity\project.json.
08:58:15 log  : Restoring packages for C:\Jenkins\workspace\RxnLog.Identity\src\RxnLog.Identity\project.json...
08:58:15 trace: Restoring packages for .NETStandard,Version=v1.6...
08:58:15 trace: Resolving conflicts for .NETStandard,Version=v1.6...
08:58:15 trace: Restoring packages for .NETFramework,Version=v4.6...
08:58:15 trace: Resolving conflicts for .NETFramework,Version=v4.6...
08:58:15 trace: Scanning packages for runtime.json files...
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Platforms 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:15 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:16 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:16 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:16 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:16 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:16 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:16 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:16 trace: Merging in runtimes defined in package/Microsoft.NETCore.Targets 1.0.1.
08:58:16 trace: Scanning packages for runtime.json files...
08:58:16 trace: Reading project file C:\Jenkins\workspace\RxnLog.Identity\src\RxnLog.Identity.MongoDb\project.json.
08:58:16 log  : Restoring packages for C:\Jenkins\workspace\RxnLog.Identity\src\RxnLog.Identity.MongoDb\project.json...
08:58:16 trace: Restoring packages for .NETStandard,Version=v1.6...
08:58:16 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver'
08:58:16 trace: Checking compatibility of packages on .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for RxnLog.Identity 1.0.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for NETStandard.Library 1.6.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for Microsoft.NETCore.Platforms 1.0.1 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for Microsoft.Win32.Primitives 4.0.1 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.AppContext 4.1.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Collections 4.0.11 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Collections.Concurrent 4.0.12 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Console 4.0.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Diagnostics.Debug 4.0.11 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Diagnostics.Tools 4.0.1 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Diagnostics.Tracing 4.1.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Globalization 4.0.11 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Globalization.Calendars 4.0.1 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.IO 4.1.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.IO.Compression 4.1.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.IO.Compression.ZipFile 4.0.1 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.IO.FileSystem 4.0.1 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.IO.FileSystem.Primitives 4.0.1 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Linq 4.1.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Linq.Expressions 4.1.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Net.Http 4.1.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Net.Primitives 4.0.11 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Net.Sockets 4.1.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.ObjectModel 4.0.12 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Reflection 4.1.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Reflection.Extensions 4.0.1 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Reflection.Primitives 4.0.1 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Resources.ResourceManager 4.0.1 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Runtime 4.1.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Runtime.Extensions 4.1.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Runtime.Handles 4.0.1 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Runtime.InteropServices 4.1.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Runtime.InteropServices.RuntimeInformation 4.0.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Runtime.Numerics 4.0.1 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Security.Cryptography.Algorithms 4.2.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Security.Cryptography.Encoding 4.0.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Security.Cryptography.Primitives 4.0.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Security.Cryptography.X509Certificates 4.1.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Text.Encoding 4.0.11 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Text.Encoding.Extensions 4.0.11 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Text.RegularExpressions 4.1.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Threading 4.0.11 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Threading.Tasks 4.0.11 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Threading.Timer 4.0.1 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Xml.ReaderWriter 4.0.11 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Xml.XDocument 4.0.11 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for Microsoft.NETCore.Targets 1.0.1 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for runtime.native.System 4.0.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for runtime.native.System.IO.Compression 4.1.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Buffers 4.0.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Reflection.Emit 4.0.1 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Reflection.Emit.ILGeneration 4.0.1 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Reflection.Emit.Lightweight 4.0.1 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Reflection.TypeExtensions 4.1.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for runtime.native.System.Net.Http 4.0.1 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for runtime.native.System.Security.Cryptography 4.0.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Diagnostics.DiagnosticSource 4.0.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Globalization.Extensions 4.0.1 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Security.Cryptography.OpenSsl 4.0.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Security.Cryptography.Cng 4.2.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Security.Cryptography.Csp 4.0.0 with .NETStandard,Version=v1.6.
08:58:16 debug: Checking compatibility for System.Threading.Tasks.Extensions 4.0.0 with .NETStandard,Version=v1.6.
08:58:16 trace: All packages and projects are compatible with .NETStandard,Version=v1.6.
08:58:16 trace: Checking compatibility of packages on .NETFramework,Version=v4.6.
08:58:16 debug: Checking compatibility for RxnLog.Identity 1.0.0 with .NETFramework,Version=v4.6.
08:58:16 trace: All packages and projects are compatible with .NETFramework,Version=v4.6.
08:58:16 info : Committing restore...
08:58:16 log  : Writing lock file to disk. Path: C:\Jenkins\workspace\RxnLog.Identity\src\RxnLog.Identity\project.lock.json
08:58:16 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver''. The request will now be retried.
08:58:16 info : An error occurred while sending the request.
08:58:16 info :   The parameter is incorrect
08:58:16 log  : C:\Jenkins\workspace\RxnLog.Identity\src\RxnLog.Identity\project.json
08:58:16 log  : Restore completed in 1000ms.
08:58:16 trace: Reading project file C:\Jenkins\workspace\RxnLog.Identity\test\RxnLog.Identity.Test\project.json.
08:58:16 log  : Restoring packages for C:\Jenkins\workspace\RxnLog.Identity\test\RxnLog.Identity.Test\project.json...
08:58:16 trace: Restoring packages for .NETCoreApp,Version=v1.0...
08:58:16 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='NUnit'
08:58:16 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='dotnet-test-nunit'
08:58:16 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='Moq'
08:58:16 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='NUnit''. The request will now be retried.
08:58:16 info : An error occurred while sending the request.
08:58:16 info :   The parameter is incorrect
08:58:16 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='Moq''. The request will now be retried.
08:58:16 info : An error occurred while sending the request.
08:58:16 info :   The parameter is incorrect
08:58:16 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='dotnet-test-nunit''. The request will now be retried.
08:58:16 info : An error occurred while sending the request.
08:58:16 info :   The parameter is incorrect
08:58:16 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver'
08:58:16 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver''. The request will now be retried.
08:58:16 info : An error occurred while sending the request.
08:58:16 info :   The parameter is incorrect
08:58:16 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='NUnit'
08:58:17 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='NUnit''. The request will now be retried.
08:58:17 info : An error occurred while sending the request.
08:58:17 info :   The parameter is incorrect
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='dotnet-test-nunit'
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='Moq'
08:58:17 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='dotnet-test-nunit''. The request will now be retried.
08:58:17 info : An error occurred while sending the request.
08:58:17 info :   The parameter is incorrect
08:58:17 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='Moq''. The request will now be retried.
08:58:17 info : An error occurred while sending the request.
08:58:17 info :   The parameter is incorrect
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver'
08:58:17 log  : Retrying 'FindPackagesByIdAsyncCore' for source 'https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver''.
08:58:17 log  : An error occurred while sending the request.
08:58:17 log  :   The parameter is incorrect
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver'
08:58:17 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver''. The request will now be retried.
08:58:17 info : An error occurred while sending the request.
08:58:17 info :   The parameter is incorrect
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='NUnit'
08:58:17 log  : Retrying 'FindPackagesByIdAsyncCore' for source 'https://privatefeed.com/nuget/Default/FindPackagesById()?id='NUnit''.
08:58:17 log  : An error occurred while sending the request.
08:58:17 log  :   The parameter is incorrect
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='NUnit'
08:58:17 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='NUnit''. The request will now be retried.
08:58:17 info : An error occurred while sending the request.
08:58:17 info :   The parameter is incorrect
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='dotnet-test-nunit'
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='Moq'
08:58:17 log  : Retrying 'FindPackagesByIdAsyncCore' for source 'https://privatefeed.com/nuget/Default/FindPackagesById()?id='dotnet-test-nunit''.
08:58:17 log  : An error occurred while sending the request.
08:58:17 log  :   The parameter is incorrect
08:58:17 log  : Retrying 'FindPackagesByIdAsyncCore' for source 'https://privatefeed.com/nuget/Default/FindPackagesById()?id='Moq''.
08:58:17 log  : An error occurred while sending the request.
08:58:17 log  :   The parameter is incorrect
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='dotnet-test-nunit'
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='Moq'
08:58:17 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='dotnet-test-nunit''. The request will now be retried.
08:58:17 info : An error occurred while sending the request.
08:58:17 info :   The parameter is incorrect
08:58:17 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='Moq''. The request will now be retried.
08:58:17 info : An error occurred while sending the request.
08:58:17 info :   The parameter is incorrect
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver'
08:58:17 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver''. The request will now be retried.
08:58:17 info : An error occurred while sending the request.
08:58:17 info :   The parameter is incorrect
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='NUnit'
08:58:17 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='NUnit''. The request will now be retried.
08:58:17 info : An error occurred while sending the request.
08:58:17 info :   The parameter is incorrect
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='Moq'
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='dotnet-test-nunit'
08:58:17 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='Moq''. The request will now be retried.
08:58:17 info : An error occurred while sending the request.
08:58:17 info :   The parameter is incorrect
08:58:17 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='dotnet-test-nunit''. The request will now be retried.
08:58:17 info : An error occurred while sending the request.
08:58:17 info :   The parameter is incorrect
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver'
08:58:17 log  : Retrying 'FindPackagesByIdAsyncCore' for source 'https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver''.
08:58:17 log  : An error occurred while sending the request.
08:58:17 log  :   The parameter is incorrect
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver'
08:58:17 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver''. The request will now be retried.
08:58:17 info : An error occurred while sending the request.
08:58:17 info :   The parameter is incorrect
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='NUnit'
08:58:17 log  : Retrying 'FindPackagesByIdAsyncCore' for source 'https://privatefeed.com/nuget/Default/FindPackagesById()?id='NUnit''.
08:58:17 log  : An error occurred while sending the request.
08:58:17 log  :   The parameter is incorrect
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='NUnit'
08:58:17 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='NUnit''. The request will now be retried.
08:58:17 info : An error occurred while sending the request.
08:58:17 info :   The parameter is incorrect
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='dotnet-test-nunit'
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='Moq'
08:58:17 log  : Retrying 'FindPackagesByIdAsyncCore' for source 'https://privatefeed.com/nuget/Default/FindPackagesById()?id='Moq''.
08:58:17 log  : An error occurred while sending the request.
08:58:17 log  :   The parameter is incorrect
08:58:17 log  : Retrying 'FindPackagesByIdAsyncCore' for source 'https://privatefeed.com/nuget/Default/FindPackagesById()?id='dotnet-test-nunit''.
08:58:17 log  : An error occurred while sending the request.
08:58:17 log  :   The parameter is incorrect
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='Moq'
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='dotnet-test-nunit'
08:58:17 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='Moq''. The request will now be retried.
08:58:17 info : An error occurred while sending the request.
08:58:17 info :   The parameter is incorrect
08:58:17 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='dotnet-test-nunit''. The request will now be retried.
08:58:17 info : An error occurred while sending the request.
08:58:17 info :   The parameter is incorrect
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver'
08:58:17 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver''. The request will now be retried.
08:58:17 info : An error occurred while sending the request.
08:58:17 info :   The parameter is incorrect
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='NUnit'
08:58:17 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='NUnit''. The request will now be retried.
08:58:17 info : An error occurred while sending the request.
08:58:17 info :   The parameter is incorrect
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='dotnet-test-nunit'
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='Moq'
08:58:17 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='Moq''. The request will now be retried.
08:58:17 info : An error occurred while sending the request.
08:58:17 info :   The parameter is incorrect
08:58:17 info : An error was encountered when fetching 'GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='dotnet-test-nunit''. The request will now be retried.
08:58:17 info : An error occurred while sending the request.
08:58:17 info :   The parameter is incorrect
08:58:17 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver'
08:58:18 error: Failed to retrieve information from remote source 'https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver''.
08:58:18 error: An error occurred while sending the request.
08:58:18 error: Failed to retrieve information from remote source 'https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver''.
08:58:18 error:   An error occurred while sending the request.
08:58:18 error:   The parameter is incorrect
08:58:18 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='NUnit'
08:58:18 error: Failed to retrieve information from remote source 'https://privatefeed.com/nuget/Default/FindPackagesById()?id='NUnit''.
08:58:18 error: An error occurred while sending the request.
08:58:18 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='Moq'
08:58:18 info :   GET https://privatefeed.com/nuget/Default/FindPackagesById()?id='dotnet-test-nunit'
08:58:18 error: Failed to retrieve information from remote source 'https://privatefeed.com/nuget/Default/FindPackagesById()?id='dotnet-test-nunit''.
08:58:18 error: An error occurred while sending the request.
08:58:18 error: Failed to retrieve information from remote source 'https://privatefeed.com/nuget/Default/FindPackagesById()?id='Moq''.
08:58:18 error: An error occurred while sending the request.
08:58:18 trace: System.AggregateException: One or more errors occurred. (Failed to retrieve information from remote source 'https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver''.) ---> NuGet.Protocol.Core.Types.FatalProtocolException: Failed to retrieve information from remote source 'https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver''. ---> System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.Net.Http.WinHttpException: The parameter is incorrect
08:58:18 trace:    at System.Net.Http.WinHttpAuthHelper.SetWinHttpCredential(SafeWinHttpHandle requestHandle, ICredentials credentials, Uri uri, UInt32 authScheme, UInt32 authTarget)
08:58:18 trace:    at System.Net.Http.WinHttpAuthHelper.CheckResponseForAuthentication(WinHttpRequestState state, UInt32& proxyAuthScheme, UInt32& serverAuthScheme)
08:58:18 trace:    at System.Net.Http.WinHttpHandler.<StartRequest>d__101.MoveNext()
08:58:18 trace:    --- End of inner exception stack trace ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult()
08:58:18 trace:    at System.Net.Http.HttpClient.<FinishSendAsync>d__58.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult()
08:58:18 trace:    at NuGet.Protocol.TimeoutUtility.<StartWithTimeout>d__0`1.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Protocol.HttpRetryHandler.<SendAsync>d__0.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Protocol.HttpSource.<SendWithCredentialSupportAsync>d__30.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Protocol.HttpSource.<>c__DisplayClass24_0.<<GetAsync>b__0>d.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Common.ConcurrencyUtilities.<ExecuteWithFileLockedAsync>d__0`1.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Protocol.HttpSource.<GetAsync>d__24.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Protocol.Core.v3.RemoteRepositories.RemoteV2FindPackageByIdResource.<FindPackagesByIdAsyncCore>d__23.MoveNext()
08:58:18 trace:    --- End of inner exception stack trace ---
08:58:18 trace:    at NuGet.Protocol.Core.v3.RemoteRepositories.RemoteV2FindPackageByIdResource.<FindPackagesByIdAsyncCore>d__23.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Protocol.Core.v3.RemoteRepositories.RemoteV2FindPackageByIdResource.<GetAllVersionsAsync>d__19.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.DependencyResolver.SourceRepositoryDependencyProvider.<FindLibraryAsync>d__14.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.DependencyResolver.RemoteDependencyWalker.<>c__DisplayClass14_1.<<FindLibrary>b__0>d.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.DependencyResolver.RemoteDependencyWalker.<FindLibrary>d__14.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.DependencyResolver.RemoteDependencyWalker.<FindLibraryByVersion>d__13.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.DependencyResolver.RemoteDependencyWalker.<FindLibraryMatch>d__10.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.DependencyResolver.RemoteDependencyWalker.<FindLibraryEntry>d__8.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.DependencyResolver.RemoteDependencyWalker.<CreateGraphNode>d__3.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.DependencyResolver.RemoteDependencyWalker.<CreateGraphNode>d__3.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.DependencyResolver.RemoteDependencyWalker.<CreateGraphNode>d__3.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Commands.ProjectRestoreCommand.<WalkDependenciesAsync>d__5.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Commands.ProjectRestoreCommand.<TryRestore>d__3.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Commands.RestoreCommand.<ExecuteRestoreAsync>d__14.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Commands.RestoreCommand.<ExecuteAsync>d__8.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Commands.RestoreRunner.<Execute>d__1.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Commands.RestoreRunner.<>c__DisplayClass0_0.<<Run>b__0>d.MoveNext()
08:58:18 trace:    --- End of inner exception stack trace ---
08:58:18 trace:    at System.Threading.Tasks.Task.ThrowIfExceptional(Boolean includeTaskCanceledExceptions)
08:58:18 trace:    at System.Threading.Tasks.Task`1.GetResultCore(Boolean waitCompletionNotification)
08:58:18 trace:    at Microsoft.Dnx.Runtime.Common.CommandLine.CommandLineApplication.<>c__DisplayClass68_0.<OnExecute>b__0()
08:58:18 trace:    at Microsoft.Dnx.Runtime.Common.CommandLine.CommandLineApplication.Execute(String[] args)
08:58:18 trace:    at NuGet.CommandLine.XPlat.Program.MainInternal(String[] args, CommandOutputLogger log)
08:58:18 trace: ---> (Inner Exception #0) NuGet.Protocol.Core.Types.FatalProtocolException: Failed to retrieve information from remote source 'https://privatefeed.com/nuget/Default/FindPackagesById()?id='MongoDB.Driver''. ---> System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.Net.Http.WinHttpException: The parameter is incorrect
08:58:18 trace:    at System.Net.Http.WinHttpAuthHelper.SetWinHttpCredential(SafeWinHttpHandle requestHandle, ICredentials credentials, Uri uri, UInt32 authScheme, UInt32 authTarget)
08:58:18 trace:    at System.Net.Http.WinHttpAuthHelper.CheckResponseForAuthentication(WinHttpRequestState state, UInt32& proxyAuthScheme, UInt32& serverAuthScheme)
08:58:18 trace:    at System.Net.Http.WinHttpHandler.<StartRequest>d__101.MoveNext()
08:58:18 trace:    --- End of inner exception stack trace ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult()
08:58:18 trace:    at System.Net.Http.HttpClient.<FinishSendAsync>d__58.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult()
08:58:18 trace:    at NuGet.Protocol.TimeoutUtility.<StartWithTimeout>d__0`1.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Protocol.HttpRetryHandler.<SendAsync>d__0.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Protocol.HttpSource.<SendWithCredentialSupportAsync>d__30.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Protocol.HttpSource.<>c__DisplayClass24_0.<<GetAsync>b__0>d.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Common.ConcurrencyUtilities.<ExecuteWithFileLockedAsync>d__0`1.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Protocol.HttpSource.<GetAsync>d__24.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Protocol.Core.v3.RemoteRepositories.RemoteV2FindPackageByIdResource.<FindPackagesByIdAsyncCore>d__23.MoveNext()
08:58:18 trace:    --- End of inner exception stack trace ---
08:58:18 trace:    at NuGet.Protocol.Core.v3.RemoteRepositories.RemoteV2FindPackageByIdResource.<FindPackagesByIdAsyncCore>d__23.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Protocol.Core.v3.RemoteRepositories.RemoteV2FindPackageByIdResource.<GetAllVersionsAsync>d__19.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.DependencyResolver.SourceRepositoryDependencyProvider.<FindLibraryAsync>d__14.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.DependencyResolver.RemoteDependencyWalker.<>c__DisplayClass14_1.<<FindLibrary>b__0>d.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.DependencyResolver.RemoteDependencyWalker.<FindLibrary>d__14.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.DependencyResolver.RemoteDependencyWalker.<FindLibraryByVersion>d__13.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.DependencyResolver.RemoteDependencyWalker.<FindLibraryMatch>d__10.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.DependencyResolver.RemoteDependencyWalker.<FindLibraryEntry>d__8.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.DependencyResolver.RemoteDependencyWalker.<CreateGraphNode>d__3.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.DependencyResolver.RemoteDependencyWalker.<CreateGraphNode>d__3.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.DependencyResolver.RemoteDependencyWalker.<CreateGraphNode>d__3.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Commands.ProjectRestoreCommand.<WalkDependenciesAsync>d__5.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Commands.ProjectRestoreCommand.<TryRestore>d__3.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Commands.RestoreCommand.<ExecuteRestoreAsync>d__14.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Commands.RestoreCommand.<ExecuteAsync>d__8.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Commands.RestoreRunner.<Execute>d__1.MoveNext()
08:58:18 trace: --- End of stack trace from previous location where exception was thrown ---
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
08:58:18 trace:    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
08:58:18 trace:    at NuGet.Commands.RestoreRunner.<>c__DisplayClass0_0.<<Run>b__0>d.MoveNext()<---

Environment data

dotnet --info output:
.NET Command Line Tools (1.0.0-preview2-003131)

Product Information:
Version: 1.0.0-preview2-003131
Commit SHA-1 hash: 635cf40

Runtime Environment:
OS Name: Windows
OS Version: 6.3.9600
OS Platform: Windows
RID: win81-x64

@TheRealPiotrP
Copy link
Contributor

Moved to nuget repo

@msftgits msftgits transferred this issue from dotnet/cli Jan 31, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants