Coder Social home page Coder Social logo

aspnet-docker's People

Contributors

ahmetb avatar alexchesser avatar barhun avatar claytonhunt avatar danroth27 avatar davidfowl avatar dotnet-maestro-bot avatar drewnoakes avatar eilon avatar friism avatar geminiyellow avatar gldraphael avatar glennc avatar jchannon avatar juntaoluo avatar michaelsimons avatar moander avatar muojp avatar natemcmaster avatar northtyphoon avatar ravimeda avatar shaggygi avatar troydai avatar vlesierse avatar yanchenw avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

aspnet-docker's Issues

Kestrel can't find libdl

I'm sure I've done something stupid, otherwise there would already be an issue for this, but I can't get a basic application running using this image as a base.

Repro, using the Basic application from yo aspnet with no changes:

Dockerfile:

FROM microsoft/aspnet

COPY project.json /app/
WORKDIR /app
RUN ["dnu", "restore"]
COPY . /app


EXPOSE 5000
ENTRYPOINT ["dnx", "-p", "project.json", "kestrel"]

Output:

System.DllNotFoundException: libdl
  at (wrapper managed-to-native) Microsoft.AspNet.Server.Kestrel.Networking.PlatformApis/LinuxApis:dlopen (string,int)
  at Microsoft.AspNet.Server.Kestrel.Networking.PlatformApis+LinuxApis.LoadLibrary (System.String dllToLoad) [0x00000] in <filename unknown>:0 
  at Microsoft.AspNet.Server.Kestrel.Networking.Libuv.Load (System.String dllToLoad) [0x00000] in <filename unknown>:0 
  at Microsoft.AspNet.Server.Kestrel.KestrelEngine..ctor (ILibraryManager libraryManager, IApplicationShutdown appShutdownService) [0x00000] in <filename unknown>:0 
  at Microsoft.AspNet.Server.Kestrel.ServerFactory.Start (IServerInformation serverInformation, System.Func`2 application) [0x00000] in <filename unknown>:0 
  at Microsoft.AspNet.Hosting.Internal.HostingEngine.Start () [0x00000] in <filename unknown>:0 
  at Microsoft.AspNet.Hosting.Program.Main (System.String[] args) [0x00000] in <filename unknown>:0 
  at (wrapper managed-to-native) System.Reflection.MonoMethod:InternalInvoke (System.Reflection.MonoMethod,object,object[],System.Exception&)
  at System.Reflection.MonoMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00000] in <filename unknown>:0 
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0 
  at Microsoft.Dnx.Runtime.Common.EntryPointExecutor.Execute (System.Reflection.Assembly assembly, System.String[] args, IServiceProvider serviceProvider) [0x00000] in <filename unknown>:0 
  at Microsoft.Dnx.ApplicationHost.Program.ExecuteMain (Microsoft.Dnx.Runtime.DefaultHost host, System.String applicationName, System.String[] args) [0x00000] in <filename unknown>:0 
  at Microsoft.Dnx.ApplicationHost.Program.Main (System.String[] args) [0x00000] in <filename unknown>:0 
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0 
  at Microsoft.Dnx.Runtime.Common.EntryPointExecutor.Execute (System.Reflection.Assembly assembly, System.String[] args, IServiceProvider serviceProvider) [0x00000] in <filename unknown>:0 
  at Microsoft.Dnx.Host.Bootstrapper.RunAsync (System.Collections.Generic.List`1 args, IRuntimeEnvironment env, System.Runtime.Versioning.FrameworkName targetFramework) [0x00000] in <filename unknown>:0 

Error when trying to build Docker image

I have the following Dockerfile

FROM microsoft/aspnet
COPY project.json /app/
WORKDIR /app
RUN ["kpm", "restore"]
COPY . /app
EXPOSE 5004
ENTRYPOINT ["k", "kestrel"]

# In this folder:
# sudo docker build -t myapp .
# sudo docker run -t -d -p 80:5004 myapp /port=5004

I get the following error when I run the command sudo docker build -t myapp .

root@rustbox:/home/jakescott/vnext/hello-web# sudo docker build -t myapp .
Sending build context to Docker daemon 105.5 kB
Sending build context to Docker daemon 
Step 0 : FROM microsoft/aspnet
 ---> 98b0320569c3
Step 1 : COPY project.json /app/
 ---> f6c9eaaee015
Removing intermediate container d323ec72e0c8
Step 2 : WORKDIR /app
 ---> Running in 99e801881f10
 ---> 49da217d991e
Removing intermediate container 99e801881f10
Step 3 : RUN kpm restore
 ---> Running in 78306a175ad1
Restoring packages for /app/project.json
  GET https://www.nuget.org/api/v2/FindPackagesById()?Id='Kestrel'.
  GET https://www.nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Diagnostics'.
  GET https://www.nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Hosting'.
  GET https://www.nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Server.WebListener'.
  GET https://www.nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.StaticFiles'.
  OK https://www.nuget.org/api/v2/FindPackagesById()?Id='Kestrel' 2313ms
  OK https://www.nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Server.WebListener' 2254ms
  GET https://www.nuget.org/api/v2/package/Kestrel/1.0.0-beta3.
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Server.WebListener/1.0.0-beta3.
  OK https://www.nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.StaticFiles' 2330ms
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.StaticFiles/1.0.0-beta3.
  OK https://www.nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Hosting' 2400ms
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Hosting/1.0.0-beta3.
  OK https://www.nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Diagnostics' 2454ms
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Diagnostics/1.0.0-beta3.
ERROR building certificate chain: System.NullReferenceException: Object reference not set to an instance of an object
  at System.Security.Cryptography.X509Certificates.X509Certificate2Collection.AddRange (System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates) [0x00000] in <filename unknown>:0 
  at System.Security.Cryptography.X509Certificates.X509Chain.get_CertificateCollection () [0x00000] in <filename unknown>:0 
  at System.Security.Cryptography.X509Certificates.X509Chain.FindParent (System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) [0x00000] in <filename unknown>:0 
  at System.Security.Cryptography.X509Certificates.X509Chain.BuildChainFrom (System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) [0x00000] in <filename unknown>:0 
  at System.Security.Cryptography.X509Certificates.X509Chain.Build (System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) [0x00000] in <filename unknown>:0 
  at System.Net.ServicePointManager+ChainValidationHelper.ValidateChain (Mono.Security.X509.X509CertificateCollection certs) [0x00000] in <filename unknown>:0 
Please, report this problem to the Mono team
ERROR processing certificate: System.NullReferenceException: Object reference not set to an instance of an object
  at System.Collections.CollectionBase.get_Count () [0x00000] in <filename unknown>:0 
  at System.Security.Cryptography.X509Certificates.X509ExtensionCollection..ctor (Mono.Security.X509.X509Certificate cert) [0x00000] in <filename unknown>:0 
  at System.Security.Cryptography.X509Certificates.X509Certificate2.get_Extensions () [0x00000] in <filename unknown>:0 
  at System.Net.ServicePointManager+ChainValidationHelper.CheckCertificateUsage (System.Security.Cryptography.X509Certificates.X509Certificate2 cert) [0x00000] in <filename unknown>:0 
Please, report this problem to the Mono team

Unhandled Exception:
System.NullReferenceException: Object reference not set to an instance of an object
  at (wrapper unknown) System.Threading.Monitor:FastMonitorEnterV4 (object,bool&)
  at Mono.Security.Protocol.Tls.RecordProtocol+ReceiveRecordAsyncResult.SetComplete (System.Exception ex, System.Byte[] resultingBuffer) [0x00000] in <filename unknown>:0 
  at Mono.Security.Protocol.Tls.RecordProtocol+ReceiveRecordAsyncResult.SetComplete (System.Exception ex) [0x00000] in <filename unknown>:0 
  at Mono.Security.Protocol.Tls.RecordProtocol.InternalReceiveRecordCallback (IAsyncResult asyncResult) [0x00000] in <filename unknown>:0 
INFO[0004] The command [kpm restore] returned a non-zero code: 255 
root@rustbox:/home/jakescott/vnext/hello-web# 

docker build fails on Ubuntu 15.04

Following the instructions at https://github.com/aspnet/Home/blob/dev/GettingStartedDeb.md does not work.

My working copy of HelloWeb is: https://github.com/aspnet/Home/tree/1d06f1f9352e6ce75f0602f19bbcb04b01dc9ccb/samples/latest/HelloWeb
My docker version is: 1.5.0, build a8a31ef
Dockerfile: https://github.com/aspnet/Home/blob/1d06f1f9352e6ce75f0602f19bbcb04b01dc9ccb/samples/latest/HelloWeb/Dockerfile

sudo docker build -t aspnet-home-helloweb .

=>

Sending build context to Docker daemon   320 kB
Sending build context to Docker daemon 
Step 0 : FROM microsoft/aspnet
Pulling repository microsoft/aspnet
5d7513d98c09: Error pulling image (latest) from microsoft/aspnet, HTTP code 400 
ba249489d0b6: Download complete 
19de96c112fc: Download complete 
b92a854a78d0: Download complete 
63e9265ef57c: Error pulling dependent layers 
INFO[0011] Error pulling image (latest) from microsoft/aspnet, HTTP code 400

Code structure

Git already provides great version control, why specific folder is created for each beta release?
It looks like a old behaviour to have branches in TFS......

commands not found when building/running docker images based on microsoft/aspnet

I followed the article http://blogs.msdn.com/b/webdev/archive/2015/01/14/running-asp-net-5-applications-in-linux-containers-with-docker.aspx and tried to set up a simple site based on .NET in docker. I created my Dockerfile and made microsoft/aspnet as its base image. I got an error 'kpm: command not found' when running 'docker build'. Finally I realized the 1.0.0-beta4 has changed and I should use 'dnu restore', but no idea how I can start kestrel bcz 'k: command not found' when I ran the container

FROM microsoft/aspnet
COPY . /app
WORKDIR /app
RUN ["dnu", "restore"]
EXPOSE 5004
CMD ["k", "kestrel"]

Dockerfile caching

It seems that none of the packages are cached between builds when using this setup. I opened this issue with the intention of investigating various caching techniques for the Docker build step.

I will base things around what I believe to be a fairly standard Dockerfile:

FROM microsoft/aspnet:1.0.0-beta4

ADD . /app
WORKDIR /app

RUN dnu restore

EXPOSE 5000
ENV DNX_TRACE 1
ENTRYPOINT sleep 1000 | dnx ./src/ASPNetTest kestrel

During the build, Docker will cache the result of each command one by one. Sadly as the "ADD . /app" line is before the restore and you will generally be rebuilding the container after making an application change, the results of the restore cannot be cached.

There standard recommendation for this seem to be to use a HTTP proxy outside of the container. I'd like to look into some options without needing to add anything to the outer environment.

So my initial thought would be to do the restore in two steps:

FROM microsoft/aspnet:1.0.0-beta4

RUN dnu restore

ADD . /app
WORKDIR /app

RUN dnu restore

EXPOSE 5000
ENV DNX_TRACE 1
ENTRYPOINT sleep 1000 | dnx ./src/ASPNetTest kestrel

Now sadly dnu restore does not allow you to request a list of packages by command line arguments, so before the first restore you would need to make a project.json file with a list of common ASP.Net 5 dependencies. This should then be cached as it will be quite constant. (Untested)

This could possibly be taken a step further and added to the microsoft/aspnet container through an ONBUILD step. My understanding of this is that the packages themselves would not be downloaded as part of the microsoft/aspnet container, but the restore step would then automatically be added to the start of the user's Dockerfile.

Any thoughts on this ?

Repo structure with multiple dockerfiles

We have #84 adding CoreCLR support for this dockerfile, and we will soon have Windows based Dockerfiles for windows containers.

Do we think that a Dockerfile for each image should be in this repository or that we should make a repo for Windows and a Repo for Linux?

Seems something like this would probably work in this repo:

/Windows/1.0.0-beta7/Dockerfile
/Linux/1.0.0-beta7/Dockerfile

or alternatively if we want the CLR to be a different image instead of a tag on the same image:

/Windows/CLR/1.0.0-beta7/Dockerfile
/Linux/CLR/1.0.0-beta7/Dockerfile

What are peoples thoughts on how this should work? I am thinking a single repo with everything at the moment since we will generally want to update all of the dockerfiles at the same time. So it would be convenient for maintenance to have them all in the same place. Are there reasons to split them that I am missing though?

Change base image

I am thinking more and more that we need to change the base image and install Mono ourselves.

The Ubuntu base that is being used by almost everyone to test out things like Kestrel is Jessie based. So I think we are going to get less issues like #95 if we are at least using Jessie. Alternatively we could use Ubuntu 14.04. But I don't really know the size difference, I am hesitant to add a bunch of Ubuntu packages if they aren't really needed.

Does anyone else have any thoughts?

Error building Docker image

Trying to build an ASP.NET Docker image but getting an intermittent SIGSEGV while restoring packages. It's very strange as it doesn't happen on every restore.

Here's my Dockerfile

FROM microsoft/aspnet

COPY /app/approot/src/Docker.Web /app
WORKDIR /app
RUN ["kpm", "restore", "-s", "https://www.myget.org/F/aspnetrelease", "-f", "https://nuget.org/api/v2"]

EXPOSE 5004
ENTRYPOINT ["k", "kestrel"]

Here's output I'm getting, have seen a few people with similar issues:

docker@development:~/images/aspnet5-elasticsearch-docker$ docker build -t website .                                                            
Sending build context to Docker daemon   214 kB                                                                                                
Sending build context to Docker daemon                                                                                                         
Step 0 : FROM microsoft/aspnet                                                                                                                 
Pulling repository microsoft/aspnet                                                                                                            
6d21a65194aa: Download complete                                                                                                                
511136ea3c5a: Download complete                                                                                                                
30d39e59ffe2: Download complete                                                                                                                
c90d655b99b2: Download complete                                                                                                                
7e24001dcfba: Download complete                                                                                                                
3b2ff660d029: Download complete                                                                                                                
b5fef56823c6: Download complete                                                                                                                
6d5034208a17: Download complete                                                                                                                
7135753393ad: Download complete                                                                                                                
ab769e829c32: Download complete                                                                                                                
2fbcbf4fbb90: Download complete                                                                                                                
e804e2e09e69: Download complete                                                                                                                
5f13bee0ff3f: Download complete                                                                                                                
a6b06e965ff4: Download complete                                                                                                                
11f7a553e1e6: Download complete                                                                                                                
Status: Downloaded newer image for microsoft/aspnet:latest                                                                                     
 ---> 6d21a65194aa                                                                                                                             
Step 1 : COPY /app/approot/src/Docker.Web /app                                                                                                 
 ---> 3efb168e8d89                                                                                                                             
Removing intermediate container fc59bc74481f                                                                                                   
Step 2 : WORKDIR /app                                                                                                                          
 ---> Running in 720a174ee6eb                                                                                                                  
 ---> 01d92d228473                                                                                                                             
Removing intermediate container 720a174ee6eb                                                                                                   
Step 3 : RUN kpm restore -s https://www.myget.org/F/aspnetrelease/api/v2 -f https://nuget.org/api/v2                                           
 ---> Running in dd459dd332f7                                                                                                                  
Restoring packages for /app/project.json                                                                                                       
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Kestrel'.                                                            
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Kestrel'.                                                                                
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Hosting'.                                           
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Hosting'.                                                               
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc'.                                               
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc'.                                                                   
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Server.WebListener'.                                
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Server.WebListener'.                                                    
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Framework.ConfigurationModel.Json'.                        
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Framework.ConfigurationModel.Json'.                                            
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Net.Http'.                                                    
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Net.Http'.                                                                        
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Kestrel' 2129ms                                                       
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Server.WebListener' 2378ms                                               
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc' 2384ms                                          
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Framework.ConfigurationModel.Json' 2384ms                   
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Kestrel' 2405ms                                                                           
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Server.WebListener' 2496ms                           
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Net.Http' 2503ms                                                                   
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Hosting' 8513ms                                                          
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Framework.ConfigurationModel.Json' 9012ms                                       
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc' 15028ms                                                             
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Net.Http' 15526ms                                              
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Hosting' 21544ms                                     
  GET https://www.nuget.org/api/v2/package/Kestrel/1.0.0-beta2.                                                                                
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.ConfigurationModel.Json/1.0.0-beta2.                                            
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Mvc/6.0.0-beta2.                                                                   
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Server.WebListener/1.0.0-beta2.                                                    
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Hosting/1.0.0-beta2.                                                               
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Net.Http/4.0.0-beta-22605.                                                   
  OK https://www.nuget.org/api/v2/package/Microsoft.Framework.ConfigurationModel.Json/1.0.0-beta2 1660ms                                       
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Server.WebListener/1.0.0-beta2 1724ms                                               
  OK https://www.nuget.org/api/v2/package/Kestrel/1.0.0-beta2 1760ms                                                                           
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Hosting/1.0.0-beta2 1661ms                                                          
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.FeatureModel'.                                      
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.FeatureModel'.                                                          
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Http'.                                              
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Http'.                                                                  
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Framework.ConfigurationModel'.                             
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Framework.ConfigurationModel'.                                                 
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Server.Kestrel'.                                    
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Server.Kestrel'.                                                        
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Runtime'.                                                     
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Runtime'.                                                                         
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Framework.Logging'.                                        
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Framework.Logging'.                                                            
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Net.Http.Server'.                                          
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Net.Http.Server'.                                                              
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Net.WebSocketAbstractions'.                                
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Net.WebSocketAbstractions'.                                                    
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.FileSystems'.                                       
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.FileSystems'.                                                           
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.PipelineCore'.                                      
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.PipelineCore'.                                                          
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Newtonsoft.Json'.                                                    
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Newtonsoft.Json'.                                                                        
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Framework.OptionsModel'.                                   
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Framework.OptionsModel'.                                                       
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Console'.                                                     
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Console'.                                                                         
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Mvc/6.0.0-beta2 1876ms                                                              
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc.Razor'.                                         
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc.Razor'.                                                             
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Runtime' 351ms                                                                     
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Net.Http.Server' 579ms                                      
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Framework.Logging' 692ms                                    
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Server.Kestrel' 722ms                                                    
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Http' 724ms                                                              
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.FeatureModel' 732ms                                                      
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Framework.ConfigurationModel' 1450ms                                            
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Framework.Logging' 7241ms                                                       
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc.Razor' 7620ms                                                        
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Newtonsoft.Json' 8257ms                                               
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Net.WebSocketAbstractions' 14282ms                                              
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Console' 14754ms                                                                   
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Console' 21038ms                                               
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Runtime' 21279ms                                               
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Framework.OptionsModel' 27287ms                                                 
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Net.Http.Server' 27784ms                                                        
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc.Razor' 33670ms                                   
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Server.Kestrel' 34296ms                              
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.FileSystems' 40298ms                                 
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Newtonsoft.Json' 40799ms                                                                  
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.PipelineCore' 41317ms                                                    
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.PipelineCore' 41803ms                                
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.FileSystems' 47825ms                                                     
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.FeatureModel' 48330ms                                
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Http' 54341ms                                        
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Net.WebSocketAbstractions' 54836ms                          
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Framework.ConfigurationModel' 55345ms                       
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Framework.OptionsModel' 55836ms                             
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Net.Http/4.0.0-beta-22605 63501ms                                             
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.IO'.                                                          
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.IO'.                                                                              
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Net.Primitives'.                                              
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Net.Primitives'.                                                                  
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Text.Encoding'.                                               
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Text.Encoding'.                                                                   
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Threading.Tasks'.                                             
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Threading.Tasks'.                                                                 
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Text.Encoding' 6024ms                                          
  GET https://www.nuget.org/api/v2/package/Microsoft.Net.WebSocketAbstractions/1.0.0-beta2.                                                    
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.IO' 12048ms                                                                        
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Net.Primitives' 12047ms                                                            
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Text.Encoding' 12525ms                                                             
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Threading.Tasks' 18545ms                                                           
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Net.Primitives' 19033ms                                        
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Threading.Tasks' 25038ms                                       
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.IO' 25541ms                                                    
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Http/1.0.0-beta2.                                                                  
  GET https://www.nuget.org/api/v2/package/Microsoft.Net.Http.Server/1.0.0-beta2.                                                              
  OK https://www.nuget.org/api/v2/package/Microsoft.Net.WebSocketAbstractions/1.0.0-beta2 14023ms                                              
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Console/4.0.0-beta-22416.                                                    
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.PipelineCore/1.0.0-beta2.                                                          
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Http/1.0.0-beta2 6022ms                                                             
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Collections'.                                                 
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Collections'.                                                                     
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.ComponentModel'.                                              
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.ComponentModel'.                                                                  
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Diagnostics.Tools'.                                           
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Diagnostics.Tools'.                                                               
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Globalization'.                                               
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Globalization'.                                                                   
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Globalization.Extensions'.                                    
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Globalization.Extensions'.                                                        
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Linq'.                                                        
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Linq'.                                                                            
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Runtime.Extensions'.                                          
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Runtime.Extensions'.                                                              
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Runtime.InteropServices'.                                     
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Runtime.InteropServices'.                                                         
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Security.Claims'.                                             
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Security.Claims'.                                                                 
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Security.Principal'.                                          
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Security.Principal'.                                                              
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Runtime/4.0.20-beta-22416.                                                   
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Runtime/4.0.20-beta-22220.                                                   
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Mvc.Razor/6.0.0-beta2.                                                             
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.FileSystems/1.0.0-beta2.                                                           
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Net.Primitives/4.0.10-beta-22220.                                            
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Runtime.Extensions' 6485ms                                                         
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.ComponentModel' 6496ms                                                             
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Collections' 12502ms                                                               
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Globalization' 13000ms                                                             
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Runtime.InteropServices' 19001ms                                                   
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Globalization.Extensions' 19513ms                                                  
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.ComponentModel' 20669ms                                        
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Diagnostics.Tools' 20710ms                                     
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Linq' 26619ms                                                  
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Security.Principal' 27122ms                                    
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Globalization' 27622ms                                         
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Globalization.Extensions' 33632ms                              
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Runtime.InteropServices' 34125ms                               
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Collections' 34639ms                                           
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Runtime.Extensions' 35132ms                                    
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Security.Claims' 35629ms                                       
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.PipelineCore/1.0.0-beta2 36163ms                                                    
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.HttpFeature'.                                       
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.HttpFeature'.                                                           
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.WebUtilities'.                                      
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.WebUtilities'.                                                          
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Diagnostics.Debug'.                                           
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Diagnostics.Debug'.                                                               
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Console/4.0.0-beta-22416 36174ms                                              
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Security.Claims' 36149ms                                                           
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Diagnostics.Tools' 36638ms                                                         
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Linq' 42654ms                                                                      
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Security.Principal' 43151ms                                                        
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Diagnostics.Debug' 13026ms                                                         
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.WebUtilities' 13520ms                                                    
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.HttpFeature' 19533ms                                                     
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.FileSystems/1.0.0-beta2 56084ms                                                     
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.FileSystems.Interfaces'.                            
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.FileSystems.Interfaces'.                                                
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.IO.FileSystem'.                                               
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.IO.FileSystem'.                                                                   
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Net.Primitives/4.0.10-beta-22220 56085ms                                      
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Runtime.Handles'.                                             
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Runtime.Handles'.                                                                 
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Diagnostics.Debug' 20050ms                                     
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Runtime/4.0.20-beta-22220 56597ms                                             
  OK https://www.nuget.org/api/v2/package/Microsoft.Net.Http.Server/1.0.0-beta2 62716ms                                                        
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Net.WebSockets'.                                           
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Net.WebSockets'.                                                               
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Win32.Primitives'.                                         
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Win32.Primitives'.                                                             
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Security.Cryptography.X509Certificates'.                      
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Security.Cryptography.X509Certificates'.                                          
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Security.Principal.Windows'.                                  
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Security.Principal.Windows'.                                                      
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.HttpFeature' 20558ms                                 
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.WebUtilities' 21039ms                                
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Mvc.Razor/6.0.0-beta2 63105ms                                                       
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc.Core'.                                          
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc.Core'.                                                              
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc.Razor.Host'.                                    
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc.Razor.Host'.                                                        
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.CodeAnalysis.CSharp'.                                      
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.CodeAnalysis.CSharp'.                                                          
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Runtime/4.0.20-beta-22416 63113ms                                             
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.FileSystems.Interfaces' 7021ms                                           
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.IO.FileSystem' 7513ms                                                              
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Runtime.Handles' 13522ms                                                           
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Security.Principal.Windows' 13514ms                                                
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Net.WebSockets' 14017ms                                                         
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Win32.Primitives' 20024ms                                                       
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Security.Cryptography.X509Certificates' 20528ms                                    
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.FileSystems.Interfaces' 21543ms                      
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Win32.Primitives' 27058ms                                   
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc.Razor.Host' 21045ms                                                  
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc.Core' 27059ms                                                        
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.IO.FileSystem' 34574ms                                         
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Security.Cryptography.X509Certificates' 34562ms                
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Runtime.Handles' 41096ms                                       
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Security.Principal.Windows' 41084ms                            
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.CodeAnalysis.CSharp' 40596ms                                                    
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.CodeAnalysis.CSharp' 41097ms                                
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc.Razor.Host' 41608ms                              
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc.Core' 42111ms                                    
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Net.WebSockets' 54626ms                                     
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Threading.Tasks/4.0.10-beta-22220.                                           
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Threading.Tasks/4.0.10-beta-22416.                                           
  GET https://www.nuget.org/api/v2/package/Microsoft.CodeAnalysis.CSharp/1.0.0-beta2.                                                          
  GET https://www.nuget.org/api/v2/package/Newtonsoft.Json/6.0.6.                                                                              
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Logging/1.0.0-beta2.                                                            
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.FeatureModel/1.0.0-beta2.                                                          
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.IO/4.0.0.0.                                                                  
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.IO/4.0.10-beta-22416.                                                        
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.FileSystems.Interfaces/1.0.0-beta2.                                                
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Text.Encoding/4.0.10-beta-22220.                                             
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Text.Encoding/4.0.10-beta-22416.                                             
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Text.Encoding/4.0.10-beta-22220 6155ms                                        
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Threading.Tasks/4.0.10-beta-22220 6321ms                                      
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.IO/4.0.10-beta-22416 6168ms                                                   
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Threading.Tasks/4.0.10-beta-22416 6326ms                                      
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.FeatureModel/1.0.0-beta2 6217ms                                                     
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Framework.Runtime.Interfaces'.                             
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Framework.Runtime.Interfaces'.                                                 
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Reflection'.                                                  
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Reflection'.                                                                      
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Reflection.TypeExtensions'.                                   
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Reflection.TypeExtensions'.                                                       
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Threading'.                                                   
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Threading'.                                                                       
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.FileSystems.Interfaces/1.0.0-beta2 6207ms                                           
  OK https://www.nuget.org/api/v2/package/Microsoft.Framework.Logging/1.0.0-beta2 6235ms                                                       
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Collections.Concurrent'.                                      
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Collections.Concurrent'.                                                          
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Diagnostics.TraceSource'.                                     
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Diagnostics.TraceSource'.                                                         
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.IO/4.0.0.0 6362ms                                                             
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Collections.Concurrent' 6143ms                                                     
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Reflection.TypeExtensions' 6657ms                                                  
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Threading' 12677ms                                                                 
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Reflection' 13179ms                                                                
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Text.Encoding/4.0.10-beta-22416 25395ms                                       
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Diagnostics.TraceSource' 19176ms                                                   
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Framework.Runtime.Interfaces' 19694ms                                           
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Threading' 25712ms                                             
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Reflection.TypeExtensions' 26199ms                             
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Diagnostics.TraceSource' 32187ms                               
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Collections.Concurrent' 32690ms                                
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Reflection' 33212ms                                            
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Framework.Runtime.Interfaces' 33721ms                       
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.IO.FileSystem/4.0.0-beta-22416.                                              
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Security.Principal.Windows/4.0.0-beta-22416.                                 
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Diagnostics.Tools/4.0.0-beta-22416.                                          
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.ComponentModel/4.0.0-beta-22416.                                             
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Security.Claims/4.0.0-beta-22416.                                            
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.ConfigurationModel/1.0.0-beta2.                                                 
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.ComponentModel/4.0.0-beta-22416 6062ms                                        
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Diagnostics.Tools/4.0.0-beta-22416 6067ms                                     
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Security.Principal.Windows/4.0.0-beta-22416 6075ms                            
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.IO.FileSystem/4.0.0-beta-22416 6090ms                                         
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.IO.FileSystem.Primitives'.                                    
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.IO.FileSystem.Primitives'.                                                        
  OK https://www.nuget.org/api/v2/package/Newtonsoft.Json/6.0.6 46814ms                                                                        
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Mvc.Core/6.0.0-beta2.                                                              
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.OptionsModel/1.0.0-beta2.                                                       
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Runtime.Handles/4.0.0-beta-22220.                                            
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Runtime.Handles/4.0.0-beta-22416.                                            
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Server.Kestrel/1.0.0-beta2.                                                        
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.IO.FileSystem.Primitives' 11867ms                                                  
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Security.Claims/4.0.0-beta-22416 12519ms                                      
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.IO.FileSystem.Primitives' 12356ms                              
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Runtime.Handles/4.0.0-beta-22220 6996ms                                       
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Runtime.Handles/4.0.0-beta-22416 7000ms                                       
  OK https://www.nuget.org/api/v2/package/Microsoft.Framework.ConfigurationModel/1.0.0-beta2 13012ms                                           
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Resources.ResourceManager'.                                   
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Resources.ResourceManager'.                                                       
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Diagnostics.TraceSource/4.0.0-beta-22416.                                    
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Mvc.Razor.Host/6.0.0-beta2.                                                        
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.HttpFeature/1.0.0-beta2.                                                           
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/Microsoft.Win32.Primitives/4.0.0-beta-22416.                                        
  OK https://www.nuget.org/api/v2/package/Microsoft.Framework.OptionsModel/1.0.0-beta2 7043ms                                                  
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Framework.DependencyInjection'.                            
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Runtime.InteropServices/4.0.20-beta-22416.                                   
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Framework.DependencyInjection'.                                                
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.WebUtilities/1.0.0-beta2.                                                          
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Linq/4.0.0-beta-22416.                                                       
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Diagnostics.Debug/4.0.10-beta-22416.                                         
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Security.Principal/4.0.0-beta-22416.                                         
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Runtime.Extensions/4.0.10-beta-22416.                                        
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Globalization.Extensions/4.0.0-beta-22416.                                   
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Mvc.Core/6.0.0-beta2 7160ms                                                         
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc.HeaderValueAbstractions'.                       
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc.HeaderValueAbstractions'.                                           
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc.ModelBinding'.                                  
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc.ModelBinding'.                                                      
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Routing'.                                           
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Routing'.                                                               
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Security'.                                          
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Security'.                                                              
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Security.DataProtection'.                           
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Security.DataProtection'.                                               
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.CSharp'.                                                   
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.CSharp'.                                                                       
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Resources.ResourceManager' 1064ms                                                  
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Framework.DependencyInjection' 7190ms                                           
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.HttpFeature/1.0.0-beta2 7515ms                                                      
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Net.Primitives/4.0.10-beta-22416.                                            
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.CSharp' 7379ms                                                                  
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.WebUtilities/1.0.0-beta2 7965ms                                                     
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Security.DataProtection' 7858ms                                          
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Security' 13858ms                                                        
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Routing' 14359ms                                                         
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc.ModelBinding' 14861ms                                                
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc.HeaderValueAbstractions' 15363ms                                     
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Resources.ResourceManager' 16014ms                             
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Linq/4.0.0-beta-22416 16789ms                                                 
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/Microsoft.Win32.Primitives/4.0.0-beta-22416 16807ms                                  
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Runtime.Extensions/4.0.10-beta-22416 16787ms                                  
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Security.Principal/4.0.0-beta-22416 16791ms                                   
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Diagnostics.Debug/4.0.10-beta-22416 16795ms                                   
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Mvc.Razor.Host/6.0.0-beta2 16849ms                                                  
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Razor.Runtime'.                                     
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Razor.Runtime'.                                                         
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Runtime.InteropServices/4.0.20-beta-22416 16817ms                             
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Reflection.Primitives'.                                       
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Reflection.Primitives'.                                                           
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Globalization/4.0.10-beta-22416.                                             
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Framework.DependencyInjection' 16934ms                      
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Globalization.Extensions/4.0.0-beta-22416 22479ms                             
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Reflection.Primitives' 5687ms                                  
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Diagnostics.TraceSource/4.0.0-beta-22416 23028ms                              
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.CSharp' 22875ms                                             
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Reflection.Primitives' 12182ms                                                     
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Razor.Runtime' 12679ms                                                   
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc.HeaderValueAbstractions' 35399ms                 
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Routing' 35898ms                                     
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Razor.Runtime' 25215ms                               
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Mvc.ModelBinding' 42422ms                            
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.CodeAnalysis.CSharp/1.0.0-beta2                                  
  The Task was canceled                                                                                                                        
  GET https://www.nuget.org/api/v2/package/Microsoft.CodeAnalysis.CSharp/1.0.0-beta2.                                                          
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Security' 42923ms                                    
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Server.Kestrel/1.0.0-beta2 56093ms                                                  
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Threading.ThreadPool'.                                        
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Threading.ThreadPool'.                                                            
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Threading.Thread'.                                            
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Threading.Thread'.                                                                
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Diagnostics.Tracing'.                                         
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Diagnostics.Tracing'.                                                             
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Security.DataProtection' 48945ms                     
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Globalization/4.0.10-beta-22416 32625ms                                       
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Net.Primitives/4.0.10-beta-22416 42056ms                                      
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Threading/4.0.0-beta-22416.                                                  
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Threading.Thread' 710ms                                                            
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Diagnostics.Tracing' 995ms                                                         
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Threading.ThreadPool' 7048ms                                                       
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Diagnostics.Tracing' 7552ms                                    
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Threading.Thread' 8050ms                                       
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Threading.ThreadPool' 14061ms                                  
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Threading/4.0.0-beta-22416 14055ms                                            
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Security.Cryptography.X509Certificates/4.0.0-beta-22416.                     
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Reflection/4.0.10-beta-22416.                                                
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Reflection/4.0.10-beta-22220.                                                
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Reflection.TypeExtensions/4.0.0-beta-22416.                                  
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Collections.Concurrent/4.0.10-beta-22416.                                    
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Collections/4.0.10-beta-22416.                                               
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Collections/4.0.0.0.                                                         
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.IO.FileSystem.Primitives/4.0.0-beta-22416.                                   
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Resources.ResourceManager/4.0.0-beta-22416.                                  
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Security/1.0.0-beta2.                                                              
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Threading.Thread/4.0.0-beta-22416.                                           
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Diagnostics.Tracing/4.0.10-beta-22416.                                       
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Security/1.0.0-beta2 6151ms                                                         
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.RequestContainer'.                                  
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.RequestContainer'.                                                      
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Reflection/4.0.10-beta-22220 7074ms                                           
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Reflection.TypeExtensions/4.0.0-beta-22416 7066ms                             
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Collections/4.0.0.0 7062ms                                                    
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.IO.FileSystem.Primitives/4.0.0-beta-22416 7056ms                              
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Resources.ResourceManager/4.0.0-beta-22416 7057ms                             
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Globalization/4.0.10-beta-22220.                                             
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Collections/4.0.10-beta-22416 7075ms                                          
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Reflection/4.0.10-beta-22416 7093ms                                           
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Collections.Concurrent/4.0.10-beta-22416 7084ms                               
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Security.Cryptography.X509Certificates/4.0.0-beta-22416 7104ms                
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Security.Cryptography.Encoding'.                              
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Security.Cryptography.Encoding'.                                                  
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Security.Cryptography.Encryption'.                            
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Security.Cryptography.Encryption'.                                                
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Razor.Runtime/4.0.0-beta2.                                                         
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.RequestContainer' 1385ms                                                 
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Security.Cryptography.Encryption' 978ms                                            
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Security.Cryptography.Encoding' 6986ms                         
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Threading.Thread/4.0.0-beta-22416 8517ms                                      
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Diagnostics.Tracing/4.0.10-beta-22416 8507ms                                  
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Security.Cryptography.Encryption' 7490ms                       
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Security.Cryptography.Encoding' 7991ms                                             
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Razor.Runtime/4.0.0-beta2 13998ms                                                   
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Razor'.                                             
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Razor'.                                                                 
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Reflection.Extensions'.                                       
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Reflection.Extensions'.                                                           
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Globalization/4.0.10-beta-22220 14023ms                                       
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Mvc.HeaderValueAbstractions/1.0.0-beta2.                                           
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Routing/1.0.0-beta2.                                                               
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Security.Cryptography.Encoding/4.0.0-beta-22416.                             
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Security.Cryptography.Encryption/4.0.0-beta-22416.                           
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Runtime.Interfaces/1.0.0-beta2.                                                 
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Threading.ThreadPool/4.0.10-beta-22416.                                      
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/Microsoft.CSharp/4.0.0-beta-22416.                                                  
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.RequestContainer' 14989ms                            
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Reflection.Extensions' 6030ms                                  
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Razor' 6517ms                                        
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Reflection.Extensions' 12527ms                                                     
  GET https://www.nuget.org/api/v2/package/Microsoft.Net.WebSockets/1.0.0-beta2.                                                               
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Reflection.Extensions/4.0.0-beta-22416.                                      
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Reflection.Primitives/4.0.0-beta-22416.                                      
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Reflection.Primitives/4.0.0-beta-22220.                                      
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Threading.ThreadPool/4.0.10-beta-22416 19015ms                                
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Security.Cryptography.Encoding/4.0.0-beta-22416 19022ms                       
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Security.Cryptography.Encryption/4.0.0-beta-22416 19022ms                     
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Razor' 19046ms                                                           
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Mvc.HeaderValueAbstractions/1.0.0-beta2 19531ms                                     
  OK https://www.nuget.org/api/v2/package/Microsoft.Framework.Runtime.Interfaces/1.0.0-beta2 19516ms                                           
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Routing/1.0.0-beta2 19548ms                                                         
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Text.RegularExpressions'.                                     
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Text.RegularExpressions'.                                                         
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/Microsoft.CSharp/4.0.0-beta-22416 19501ms                                            
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Dynamic.Runtime'.                                             
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Dynamic.Runtime'.                                                                 
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Linq.Expressions'.                                            
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Linq.Expressions'.                                                                
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Reflection.Primitives/4.0.0-beta-22220 7007ms                                 
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Reflection.Extensions/4.0.0-beta-22416 7016ms                                 
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Reflection.Primitives/4.0.0-beta-22416 7018ms                                 
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Text.RegularExpressions' 502ms                                 
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Dynamic.Runtime' 6479ms                                        
  OK https://www.nuget.org/api/v2/package/Microsoft.Net.WebSockets/1.0.0-beta2 13514ms                                                         
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Diagnostics.Contracts'.                                       
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Diagnostics.Contracts'.                                                           
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Security.Cryptography.Hashing.Algorithms'.                    
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Security.Cryptography.Hashing.Algorithms'.                                        
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Text.Encoding.Extensions'.                                    
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Text.Encoding.Extensions'.                                                        
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Threading.Overlapped'.                                        
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Threading.Overlapped'.                                                            
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Threading.Timer'.                                             
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Threading.Timer'.                                                                 
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Runtime.InteropServices/4.0.20-beta-22220.                                   
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Dynamic.Runtime' 6989ms                                                            
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Text.RegularExpressions' 7488ms                                                    
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Linq.Expressions' 13496ms                                                          
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Linq.Expressions' 14018ms                                      
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Threading.Timer' 7521ms                                        
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Threading.Overlapped' 13541ms                                  
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Threading.Timer' 14044ms                                                           
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Security.Cryptography.Hashing.Algorithms' 14547ms              
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Diagnostics.Contracts' 20557ms                                 
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Text.Encoding.Extensions' 21057ms                              
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Text.Encoding.Extensions' 21559ms                                                  
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Security.Cryptography.Hashing.Algorithms' 22065ms                                  
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Diagnostics.Contracts' 28075ms                                                     
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Threading.Overlapped' 28588ms                                                      
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Runtime.InteropServices/4.0.20-beta-22220 29092ms                             
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Mvc.ModelBinding/6.0.0-beta2.                                                      
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.CodeAnalysis.CSharp/1.0.0-beta2                                  
  The Task was canceled                                                                                                                        
  GET https://www.nuget.org/api/v2/package/Microsoft.CodeAnalysis.CSharp/1.0.0-beta2.                                                          
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Text.Encoding.Extensions/4.0.10-beta-22416.                                  
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Razor/4.0.0-beta2.                                                                 
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Threading.Overlapped/4.0.0-beta-22416.                                       
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Threading.Timer/4.0.0-beta-22416.                                            
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Mvc.ModelBinding/6.0.0-beta2 12552ms                                                
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.ComponentModel.Annotations'.                                  
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.ComponentModel.Annotations'.                                                      
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.ComponentModel.TypeConverter'.                                
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.ComponentModel.TypeConverter'.                                                    
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Runtime.Serialization.Primitives'.                            
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Runtime.Serialization.Primitives'.                                                
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Runtime.Serialization.Xml'.                                   
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Runtime.Serialization.Xml'.                                                       
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Xml.XmlSerializer'.                                           
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Xml.XmlSerializer'.                                                               
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Text.RegularExpressions/4.0.10-beta-22416.                                   
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Dynamic.Runtime/4.0.0-beta-22416.                                            
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.DependencyInjection/1.0.0-beta2.                                                
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Linq.Expressions/4.0.0-beta-22416.                                           
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Diagnostics.Contracts/4.0.0-beta-22416.                                      
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-22416.                   
  OK https://www.nuget.org/api/v2/package/Microsoft.Framework.DependencyInjection/1.0.0-beta2 649ms                                            
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Razor/4.0.0-beta2 723ms                                                             
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Text.Encoding.Extensions/4.0.10-beta-22416 761ms                              
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Security.DataProtection/1.0.0-beta2.                                               
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.RequestContainer/1.0.0-beta2.                                                      
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.ComponentModel.Annotations' 780ms                                                  
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.ComponentModel.TypeConverter' 798ms                                                
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Runtime.Serialization.Primitives' 802ms                                            
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Runtime.Serialization.Xml' 948ms                                                   
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Security.DataProtection/1.0.0-beta2 350ms                                           
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Win32.Registry'.                                           
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Win32.Registry'.                                                               
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Security.Cryptography.Encryption.Aes'.                        
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Security.Cryptography.Encryption.Aes'.                                            
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Security.Cryptography.RandomNumberGenerator'.                 
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Security.Cryptography.RandomNumberGenerator'.                                     
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Xml.XDocument'.                                               
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Xml.XDocument'.                                                                   
  OK https://www.nuget.org/api/v2/package/Microsoft.CodeAnalysis.CSharp/1.0.0-beta2 7682ms                                                     
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.CodeAnalysis.Common'.                                      
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.CodeAnalysis.Common'.                                                          
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Xml.XmlSerializer' 1135ms                                                          
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Xml.XDocument' 346ms                                                               
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Security.Cryptography.Encryption.Aes' 369ms                                        
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Security.Cryptography.RandomNumberGenerator' 382ms                                 
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.CodeAnalysis.Common' 348ms                                                      
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.RequestContainer/1.0.0-beta2 739ms                                                  
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Http.Extensions'.                                   
  GET https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Http.Extensions'.                                                       
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.Win32.Registry' 421ms                                                           
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Runtime.Serialization.Xml' 1579ms                              
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Runtime.Serialization.Xml/4.0.10-beta-22416.                                 
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.CodeAnalysis.Common' 543ms                                  
  GET https://www.nuget.org/api/v2/package/Microsoft.CodeAnalysis.Common/1.0.0-beta2.                                                          
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Xml.XmlSerializer' 1770ms                                      
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Xml.XmlSerializer/4.0.10-beta-22416.                                         
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Runtime.Serialization.Xml/4.0.10-beta-22416 258ms                             
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Xml.ReaderWriter'.                                            
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Xml.ReaderWriter'.                                                                
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Xml.XmlSerializer/4.0.10-beta-22416 133ms                                     
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Xml.ReaderWriter' 116ms                                        
  OK https://nuget.org/api/v2/FindPackagesById()?Id='Microsoft.AspNet.Http.Extensions' 540ms                                                   
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Xml.ReaderWriter' 276ms                                                            
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Xml.ReaderWriter/4.0.10-beta-22220.                                          
  GET https://www.myget.org/F/aspnetrelease/api/v2/package/System.Xml.ReaderWriter/4.0.10-beta-22416.                                          
  OK https://www.nuget.org/api/v2/package/Microsoft.CodeAnalysis.Common/1.0.0-beta2 453ms                                                      
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Collections.Immutable'.                                       
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Collections.Immutable'.                                                           
  GET https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Reflection.Metadata'.                                         
  GET https://nuget.org/api/v2/FindPackagesById()?Id='System.Reflection.Metadata'.                                                             
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Xml.ReaderWriter/4.0.10-beta-22220 152ms                                      
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Xml.ReaderWriter/4.0.10-beta-22416 161ms                                      
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='Microsoft.Win32.Registry' 1289ms                                      
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Runtime.Serialization.Primitives' 2373ms                       
  OK https://nuget.org/api/v2/FindPackagesById()?Id='System.Collections.Immutable' 268ms                                                       
  OK https://www.myget.org/F/aspnetrelease/api/v2/package/System.Text.RegularExpressions/4.0.10-beta-22416 2402ms                              
  OK https://www.myget.org/F/aspnetrelease/api/v2/FindPackagesById()?Id='System.Security.Cryptography.Encryption.Aes' 1331ms                   
Stacktrace:                                                                                                                                    


Native stacktrace:                                                                                                                             

        mono() [0x4accac]                                                                                                                      
        mono() [0x50451f]                                                                                                                      
        mono() [0x42a7c7]                                                                                                                      
        /lib/x86_64-linux-gnu/libpthread.so.0(+0xf0a0) [0x7fd9596100a0]                                                                        
        mono() [0x585af3]                                                                                                                      
        mono() [0x582484]                                                                                                                      
        mono() [0x61e0b6]                                                                                                                      
        /lib/x86_64-linux-gnu/libpthread.so.0(+0x6b50) [0x7fd959607b50]                                                                        
        /lib/x86_64-linux-gnu/libc.so.6(clone+0x6d) [0x7fd95935170d]                                                                           

Debug info from gdb:                                                                                                                           


=================================================================                                                                              
Got a SIGSEGV while executing native code. This usually indicates                                                                              
a fatal error in the mono runtime or one of the native libraries                                                                               
used by your application.                                                                                                                      
=================================================================                                                                              

/opt/kre/packages/default/bin/klr: line 15:    13 Aborted                 mono $MONO_OPTIONS "$DIR/klr.mono.managed.dll" "$@"                  
INFO[0537] The command [kpm restore -s https://www.myget.org/F/aspnetrelease/api/v2 -f https://nuget.org/api/v2] returned a non-zero code: 134 

Sample web app broken?

I attempted to build the Docker container for the HelloWeb sample app, following these instructions.

http://blogs.msdn.com/b/webdev/archive/2015/01/14/running-asp-net-5-applications-in-linux-containers-with-docker.aspx

Seems ok for a while, but then I get a lot of nuget timeouts. Curiously, I do seem to be able to manually connect the nuget endpoints in question.

Is there a better set of instructions to use? I want to create an asp.net vnext web API and build it into a docker container.

$ cd /c/HelloWeb/

rzachariah@Apollo MINGW64 /c/HelloWeb
$ docker build -t myapp .
Sending build context to Docker daemon 6.656 kB
Step 0 : FROM microsoft/aspnet
latest: Pulling from microsoft/aspnet
4c8cbfd2973e: Pulling fs layer
60c52dbe9d91: Pulling fs layer
9c0e80caf8f1: Pulling fs layer
1b0084ef34cd: Pulling fs layer
7134db1dc550: Pulling fs layer
f06df13e95d3: Pulling fs layer
0bce025f252c: Pulling fs layer
74ae7294add4: Pulling fs layer
ab5893acf077: Pulling fs layer
3ba438f29d4a: Pulling fs layer
3e5151004d7b: Pulling fs layer
686b2834b962: Pulling fs layer
1eb4f091510d: Pulling fs layer
3ad193895d0a: Pulling fs layer
3ad193895d0a: Pulling fs layer
3ad193895d0a: Layer already being pulled by another client. Waiting.
60c52dbe9d91: Verifying Checksum
60c52dbe9d91: Download complete
7134db1dc550: Verifying Checksum
7134db1dc550: Download complete
3ad193895d0a: Verifying Checksum
3ad193895d0a: Download complete
9c0e80caf8f1: Verifying Checksum
9c0e80caf8f1: Download complete
0bce025f252c: Verifying Checksum
0bce025f252c: Download complete
74ae7294add4: Verifying Checksum
74ae7294add4: Download complete
3ba438f29d4a: Verifying Checksum
3ba438f29d4a: Download complete
1eb4f091510d: Verifying Checksum
1eb4f091510d: Download complete
3e5151004d7b: Verifying Checksum
3e5151004d7b: Download complete
ab5893acf077: Verifying Checksum
ab5893acf077: Download complete
1b0084ef34cd: Verifying Checksum
1b0084ef34cd: Download complete
4c8cbfd2973e: Verifying Checksum
4c8cbfd2973e: Download complete
686b2834b962: Verifying Checksum
686b2834b962: Download complete
4c8cbfd2973e: Pull complete
60c52dbe9d91: Pull complete
9c0e80caf8f1: Pull complete
1b0084ef34cd: Pull complete
7134db1dc550: Pull complete
f06df13e95d3: Verifying Checksum
f06df13e95d3: Download complete
f06df13e95d3: Pull complete
0bce025f252c: Pull complete
74ae7294add4: Pull complete
ab5893acf077: Pull complete
3ba438f29d4a: Pull complete
3e5151004d7b: Pull complete
686b2834b962: Pull complete
1eb4f091510d: Pull complete
3ad193895d0a: Download complete
3ad193895d0a: Pull complete
3ad193895d0a: Already exists
Digest: sha256:52db2c96809f5d376c529f13286ede04d70910b7574f28e21691c6b5509b25d7
Status: Downloaded newer image for microsoft/aspnet:latest
 ---> 3ad193895d0a
Step 1 : COPY project.json /app/
 ---> 1ca40ec6c1f5
Removing intermediate container 2350f6ca821d
Step 2 : WORKDIR /app
 ---> Running in 8795f49ce8de
 ---> ea1fb70d2c14
Removing intermediate container 8795f49ce8de
Step 3 : RUN dnu restore
 ---> Running in 57d8204c0f3b
Microsoft .NET Development Utility Mono-x64-1.0.0-beta6-12256

Restoring packages for /app/project.json
  GET https://www.nuget.org/api/v2/
  OK https://www.nuget.org/api/v2/ 1778ms
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Serve                                                                                             r.Kestrel'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Diagn                                                                                             ostics'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Hosti                                                                                             ng'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Serve                                                                                             r.IIS'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Serve                                                                                             r.WebListener'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Stati                                                                                             cFiles'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Lo                                                                                             gging.Console'
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Server                                                                                             .Kestrel' 123ms
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Server.Kestrel/1.0.0                                                                                             -beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Hostin                                                                                             g' 6256ms
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Diagno                                                                                             stics' 6261ms
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Hosting/1.0.0-beta6
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Diagnostics/1.0.0-be                                                                                             ta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Server                                                                                             .IIS' 12753ms
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Server                                                                                             .WebListener' 12764ms
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Server.IIS/1.0.0-bet                                                                                             a6
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Server.WebListener/1                                                                                             .0.0-beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Static                                                                                             Files' 12819ms
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.StaticFiles/1.0.0-be                                                                                             ta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Log                                                                                             ging.Console' 19266ms
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Logging.Console/1                                                                                             .0.0-beta6
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Server.Kestrel/1.0.0-                                                                                             beta6 25151ms
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Ru                                                                                             ntime.Abstractions'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Collections'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Diagnostics.Deb                                                                                             ug'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Diagnostics.Tra                                                                                             ceSource'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Diagnostics.Tra                                                                                             cing'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Globalization'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.IO'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Linq'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Net.Primitives'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Runtime.Extensi                                                                                             ons'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Runtime.Interop                                                                                             Services'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Text.Encoding'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Threading'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Threading.Tasks                                                                                             '
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Threading.Threa                                                                                             d'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Threading.Threa                                                                                             dPool'
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Hosting/1.0.0-beta6 1                                                                                             9072ms
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.FileP                                                                                             roviders.Physical'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Hosti                                                                                             ng.Abstractions'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Hosti                                                                                             ng.Server.Abstractions'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Http'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Http.                                                                                             Extensions'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Co                                                                                             nfiguration'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Co                                                                                             nfiguration.CommandLine'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Co                                                                                             nfiguration.EnvironmentVariables'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Co                                                                                             nfiguration.Ini'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.De                                                                                             pendencyInjection'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Lo                                                                                             gging'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Newtonsoft.Json'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Console'
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Diagnostics/1.0.0-bet                                                                                             a6 19106ms
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Diagn                                                                                             ostics.Abstractions'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.WebUt                                                                                             ilities'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Op                                                                                             tionsModel'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.We                                                                                             bEncoders.Core'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Lo                                                                                             gging.Abstractions'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Reflection.Exte                                                                                             nsions'
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Server.IIS/1.0.0-beta                                                                                             6 12619ms
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Loade                                                                                             r.IIS.Interop'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Loade                                                                                             r.IIS'
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Run                                                                                             time.Abstractions' 6457ms
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Server.WebListener/1.                                                                                             0.0-beta6 25495ms
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Net.Http.Hea                                                                                             ders'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Net.Http.Ser                                                                                             ver'
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Runtime.Abstracti                                                                                             ons/1.0.0-beta6
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Security.Claims                                                                                             '
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.StaticFiles/1.0.0-bet                                                                                             a6 19035ms
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.FileP                                                                                             roviders.Abstractions'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.We                                                                                             bEncoders'
  OK https://www.nuget.org/api/v2/package/Microsoft.Framework.Logging.Console/1.                                                                                             0.0-beta6 19043ms
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Collections' 130                                                                                             02ms
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Runtime'
  GET https://www.nuget.org/api/v2/package/System.Collections/4.0.10-beta-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Diagnostics.Debu                                                                                             g' 13048ms
  GET https://www.nuget.org/api/v2/package/System.Diagnostics.Debug/4.0.10-beta-                                                                                             23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Diagnostics.Trac                                                                                             eSource' 13130ms
  GET https://www.nuget.org/api/v2/package/System.Diagnostics.TraceSource/4.0.0-                                                                                             beta-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Diagnostics.Trac                                                                                             ing' 13292ms
  GET https://www.nuget.org/api/v2/package/System.Diagnostics.Tracing/4.0.20-bet                                                                                             a-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Globalization' 1                                                                                             9465ms
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.IO' 19470ms
  GET https://www.nuget.org/api/v2/package/System.Globalization/4.0.10-beta-2310                                                                                             9
  GET https://www.nuget.org/api/v2/package/System.IO/4.0.10-beta-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Linq' 19565ms
  GET https://www.nuget.org/api/v2/package/System.Linq/4.0.0-beta-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Net.Primitives'                                                                                              19698ms
  GET https://www.nuget.org/api/v2/package/System.Net.Primitives/4.0.10-beta-231                                                                                             09
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Runtime.Extensio                                                                                             ns' 19800ms
  GET https://www.nuget.org/api/v2/package/System.Runtime.Extensions/4.0.10-beta                                                                                             -23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Runtime.InteropS                                                                                             ervices' 19925ms
  GET https://www.nuget.org/api/v2/package/System.Runtime.InteropServices/4.0.20                                                                                             -beta-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Text.Encoding' 2                                                                                             0453ms
  GET https://www.nuget.org/api/v2/package/System.Text.Encoding/4.0.10-beta-2310                                                                                             9
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Threading' 26963                                                                                             ms
  GET https://www.nuget.org/api/v2/package/System.Threading/4.0.10-beta-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Threading.Tasks'                                                                                              26978ms
  GET https://www.nuget.org/api/v2/package/System.Threading.Tasks/4.0.10-beta-23                                                                                             109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Threading.Thread                                                                                             ' 27015ms
  GET https://www.nuget.org/api/v2/package/System.Threading.Thread/4.0.0-beta-23                                                                                             109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Threading.Thread                                                                                             Pool' 27098ms
  GET https://www.nuget.org/api/v2/package/System.Threading.ThreadPool/4.0.10-be                                                                                             ta-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.FilePr                                                                                             oviders.Physical' 27151ms
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.FileProviders.Physic                                                                                             al/1.0.0-beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Hostin                                                                                             g.Abstractions' 27215ms
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Hosting.Abstractions                                                                                             /1.0.0-beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Hostin                                                                                             g.Server.Abstractions' 33445ms
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Hosting.Server.Abstr                                                                                             actions/1.0.0-beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Http.E                                                                                             xtensions' 39957ms
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Http'                                                                                              39959ms
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Http.Extensions/1.0.                                                                                             0-beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Con                                                                                             figuration' 46470ms
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Http/1.0.0-beta6
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration/1.0                                                                                             .0-beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Con                                                                                             figuration.CommandLine' 46530ms
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Com                                                                                             mandLine/1.0.0-beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Con                                                                                             figuration.EnvironmentVariables' 46598ms
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Env                                                                                             ironmentVariables/1.0.0-beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Con                                                                                             figuration.Ini' 46660ms
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Ini                                                                                             /1.0.0-beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Dep                                                                                             endencyInjection' 46730ms
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.DependencyInjecti                                                                                             on/1.0.0-beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Log                                                                                             ging' 46798ms
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Logging/1.0.0-bet                                                                                             a6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Newtonsoft.Json' 46998m                                                                                             s
  GET https://www.nuget.org/api/v2/package/Newtonsoft.Json/6.0.6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Console' 47455ms
  GET https://www.nuget.org/api/v2/package/System.Console/4.0.0-beta-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Diagno                                                                                             stics.Abstractions' 47488ms
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Diagnostics.Abstract                                                                                             ions/1.0.0-beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.WebUti                                                                                             lities' 48433ms
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.WebUtilities/1.0.0-b                                                                                             eta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Opt                                                                                             ionsModel' 48497ms
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.OptionsModel/1.0.                                                                                             0-beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Web                                                                                             Encoders.Core' 48558ms
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.WebEncoders.Core/                                                                                             1.0.0-beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Log                                                                                             ging.Abstractions' 49423ms
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Reflection.Exten                                                                                             sions' 49439ms
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Logging.Abstracti                                                                                             ons/1.0.0-beta6
  GET https://www.nuget.org/api/v2/package/System.Reflection.Extensions/4.0.0-be                                                                                             ta-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Loader                                                                                             .IIS.Interop' 49483ms
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Loader.IIS.Interop/1                                                                                             .0.0-beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Loader                                                                                             .IIS' 49558ms
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Loader.IIS/1.0.0-bet                                                                                             a6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Net.Http.Head                                                                                             ers' 37533ms
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Net.Http.Serv                                                                                             er' 37540ms
  GET https://www.nuget.org/api/v2/package/Microsoft.Net.Http.Headers/1.0.0-beta                                                                                             6
  GET https://www.nuget.org/api/v2/package/Microsoft.Net.Http.Server/1.0.0-beta6
  OK https://www.nuget.org/api/v2/package/Microsoft.Framework.Runtime.Abstractio                                                                                             ns/1.0.0-beta6 37604ms
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Reflection'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.ComponentModel'
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Security.Claims'                                                                                              37643ms
  GET https://www.nuget.org/api/v2/package/System.Security.Claims/4.0.0-beta-231                                                                                             09
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.FilePr                                                                                             oviders.Abstractions' 44000ms
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.FileProviders.Abstra                                                                                             ctions/1.0.0-beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Web                                                                                             Encoders' 44008ms
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.WebEncoders/1.0.0                                                                                             -beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Runtime' 44067ms
  GET https://www.nuget.org/api/v2/package/System.Runtime/4.0.20-beta-23109
  OK https://www.nuget.org/api/v2/package/System.Collections/4.0.10-beta-23109 5                                                                                             0007ms
  OK https://www.nuget.org/api/v2/package/System.Diagnostics.Debug/4.0.10-beta-2                                                                                             3109 50463ms
  GET https://www.nuget.org/api/v2/package/System.Runtime/4.0.0-beta-23109
  OK https://www.nuget.org/api/v2/package/System.Diagnostics.TraceSource/4.0.0-b                                                                                             eta-23109 56871ms
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Resources.Resou                                                                                             rceManager'
  OK https://www.nuget.org/api/v2/package/System.Diagnostics.Tracing/4.0.20-beta                                                                                             -23109 56753ms
  OK https://www.nuget.org/api/v2/package/System.Globalization/4.0.10-beta-23109                                                                                              57058ms
  OK https://www.nuget.org/api/v2/package/System.IO/4.0.10-beta-23109 57535ms
  GET https://www.nuget.org/api/v2/package/System.Text.Encoding/4.0.0-beta-23109
  GET https://www.nuget.org/api/v2/package/System.Threading.Tasks/4.0.0-beta-231                                                                                             09
  OK https://www.nuget.org/api/v2/package/System.Linq/4.0.0-beta-23109 63955ms
  OK https://www.nuget.org/api/v2/package/System.Runtime.Extensions/4.0.10-beta-                                                                                             23109 64713ms
  OK https://www.nuget.org/api/v2/package/System.Net.Primitives/4.0.10-beta-2310                                                                                             9 64814ms
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Private.Network                                                                                             ing'
  OK https://www.nuget.org/api/v2/package/System.Runtime.InteropServices/4.0.20-                                                                                             beta-23109 65096ms
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Reflection.Prim                                                                                             itives'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Runtime.Handles                                                                                             '
  OK https://www.nuget.org/api/v2/package/System.Text.Encoding/4.0.10-beta-23109                                                                                              64584ms
  OK https://www.nuget.org/api/v2/package/System.Threading/4.0.10-beta-23109 640                                                                                             78ms
  OK https://www.nuget.org/api/v2/package/System.Threading.Tasks/4.0.10-beta-231                                                                                             09 70543ms
  OK https://www.nuget.org/api/v2/package/System.Threading.Thread/4.0.0-beta-231                                                                                             09 70522ms
  OK https://www.nuget.org/api/v2/package/System.Threading.ThreadPool/4.0.10-bet                                                                                             a-23109 70450ms
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.FileProviders.Physica                                                                                             l/1.0.0-beta6 76377ms
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Collections.Con                                                                                             current'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.IO.FileSystem.W                                                                                             atcher'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.IO.FileSystem'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.IO.FileSystem.P                                                                                             rimitives'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Text.RegularExp                                                                                             ressions'
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Hosting.Abstractions/                                                                                             1.0.0-beta6 70119ms
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Http.                                                                                             Abstractions'
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Http.Extensions/1.0.0                                                                                             -beta6 63588ms
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Hosting.Server.Abstra                                                                                             ctions/1.0.0-beta6 77090ms
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Featu                                                                                             reModel'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Co                                                                                             nfiguration.Abstractions'
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Http/1.0.0-beta6 6410                                                                                             1ms
  OK https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration/1.0.                                                                                             0-beta6 70066ms
  OK https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Comm                                                                                             andLine/1.0.0-beta6 70017ms
  OK https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Envi                                                                                             ronmentVariables/1.0.0-beta6 69970ms
  OK https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Ini/                                                                                             1.0.0-beta6 69924ms
  OK https://www.nuget.org/api/v2/package/Microsoft.Framework.DependencyInjectio                                                                                             n/1.0.0-beta6 75824ms
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.De                                                                                             pendencyInjection.Abstractions'
  OK https://www.nuget.org/api/v2/package/Microsoft.Framework.Logging/1.0.0-beta                                                                                             6 75774ms
  OK https://www.nuget.org/api/v2/package/Newtonsoft.Json/6.0.6 75624ms
  OK https://www.nuget.org/api/v2/package/System.Console/4.0.0-beta-23109 75622m                                                                                             s
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Text.Encoding.E                                                                                             xtensions'
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Diagnostics.Abstracti                                                                                             ons/1.0.0-beta6 80604ms
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.WebUtilities/1.0.0-be                                                                                             ta6 81094ms
  OK https://www.nuget.org/api/v2/package/Microsoft.Framework.OptionsModel/1.0.0                                                                                             -beta6 81056ms
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Co                                                                                             nfiguration.Binder'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Linq.Expression                                                                                             s'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Reflection.Type                                                                                             Extensions'
  OK https://www.nuget.org/api/v2/package/Microsoft.Framework.WebEncoders.Core/1                                                                                             .0.0-beta6 81021ms
  OK https://www.nuget.org/api/v2/package/Microsoft.Framework.Logging.Abstractio                                                                                             ns/1.0.0-beta6 80598ms
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Reflection' 9253                                                                                             6ms
  OK https://www.nuget.org/api/v2/package/System.Reflection.Extensions/4.0.0-bet                                                                                             a-23109 93617ms
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Loader.IIS.Interop/1.                                                                                             0.0-beta6 93576ms
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.ComponentModel'                                                                                              92577ms
  GET https://www.nuget.org/api/v2/package/System.Reflection/4.0.10-beta-23109
  GET https://www.nuget.org/api/v2/package/System.Reflection/4.0.0-beta-23109
  GET https://www.nuget.org/api/v2/package/System.ComponentModel/4.0.0-beta-2310                                                                                             9
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.Ne                                                                                             t.Http.Server/1.0.0-beta6
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/Microsoft.Net.Http.Server/1.0.0-beta6
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Secur                                                                                             ity.Claims/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Security.Claims/4.0.0-beta-231                                                                                             09
  OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Loader.IIS/1.0.0-beta                                                                                             6 105969ms
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.DataP                                                                                             rotection.Abstractions'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Win32.Regist                                                                                             ry'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Diagnostics.Pro                                                                                             cess'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Net.NetworkInfo                                                                                             rmation'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Security.Princi                                                                                             pal.Windows'
  GET https://www.nuget.org/api/v2/package/System.Runtime.InteropServices/4.0.0-                                                                                             beta-23109
  OK https://www.nuget.org/api/v2/package/Microsoft.Net.Http.Headers/1.0.0-beta6                                                                                              105136ms
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Diagnostics.Con                                                                                             tracts'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Globalization.E                                                                                             xtensions'
  OK https://www.nuget.org/api/v2/package/Microsoft.Framework.WebEncoders/1.0.0-                                                                                             beta6 98647ms
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.As                                                                                             pNet.FileProviders.Abstractions/1.0.0-beta6
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.FileProviders.Abstra                                                                                             ctions/1.0.0-beta6
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Runti                                                                                             me/4.0.20-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Runtime/4.0.20-beta-23109
  OK https://www.nuget.org/api/v2/package/Microsoft.Net.Http.Server/1.0.0-beta6                                                                                              6517ms
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Net.WebSocke                                                                                             ts'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Win32.Primit                                                                                             ives'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Security.Crypto                                                                                             graphy.X509Certificates'
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Threading.Overl                                                                                             apped'
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Resources.Resour                                                                                             ceManager' 92099ms
  GET https://www.nuget.org/api/v2/package/System.Resources.ResourceManager/4.0.                                                                                             0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Runti                                                                                             me/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Runtime/4.0.0-beta-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Private.Networki                                                                                             ng' 83578ms
  GET https://www.nuget.org/api/v2/package/System.Private.Networking/4.0.0-beta-                                                                                             23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Reflection.Primi                                                                                             tives' 89581ms
  GET https://www.nuget.org/api/v2/package/System.Reflection.Primitives/4.0.0-be                                                                                             ta-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Threading.Overla                                                                                             pped' 13126ms
  GET https://www.nuget.org/api/v2/package/System.Threading.Overlapped/4.0.0-bet                                                                                             a-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Security.Cryptog                                                                                             raphy.X509Certificates' 13199ms
  GET https://www.nuget.org/api/v2/package/System.Security.Cryptography.X509Cert                                                                                             ificates/4.0.0-beta-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Win32.Primiti                                                                                             ves' 13284ms
  GET https://www.nuget.org/api/v2/package/Microsoft.Win32.Primitives/4.0.0-beta                                                                                             -23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Text.                                                                                             Encoding/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Text.Encoding/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Threa                                                                                             ding.Tasks/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Threading.Tasks/4.0.0-beta-231                                                                                             09
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Net.WebSocket                                                                                             s' 19003ms
  GET https://www.nuget.org/api/v2/package/Microsoft.Net.WebSockets/1.0.0-beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Globalization.Ex                                                                                             tensions' 25479ms
  GET https://www.nuget.org/api/v2/package/System.Globalization.Extensions/4.0.0                                                                                             -beta-23109
Warning: FindPackagesById: System.Runtime.Handles
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Runtime.Handles                                                                                             '
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Diagnostics.Cont                                                                                             racts' 32492ms
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Security.Princip                                                                                             al.Windows' 32512ms
  GET https://www.nuget.org/api/v2/package/System.Diagnostics.Contracts/4.0.0-be                                                                                             ta-23109
  GET https://www.nuget.org/api/v2/package/System.Security.Principal.Windows/4.0                                                                                             .0-beta-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Collections.Conc                                                                                             urrent' 85573ms
  GET https://www.nuget.org/api/v2/package/System.Collections.Concurrent/4.0.10-                                                                                             beta-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.IO.FileSystem.Wa                                                                                             tcher' 85636ms
  GET https://www.nuget.org/api/v2/package/System.IO.FileSystem.Watcher/4.0.0-be                                                                                             ta-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.IO.FileSystem' 8                                                                                             5712ms
  GET https://www.nuget.org/api/v2/package/System.IO.FileSystem/4.0.0-beta-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.IO.FileSystem.Pr                                                                                             imitives' 85778ms
  GET https://www.nuget.org/api/v2/package/System.IO.FileSystem.Primitives/4.0.0                                                                                             -beta-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Text.RegularExpr                                                                                             essions' 85854ms
  GET https://www.nuget.org/api/v2/package/System.Text.RegularExpressions/4.0.10                                                                                             -beta-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Http.A                                                                                             bstractions' 92060ms
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Http.Abstractions/1.                                                                                             0.0-beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Featur                                                                                             eModel' 85093ms
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.FeatureModel/1.0.0-b                                                                                             eta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Con                                                                                             figuration.Abstractions' 85136ms
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Abs                                                                                             tractions/1.0.0-beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Dep                                                                                             endencyInjection.Abstractions' 73174ms
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.DependencyInjecti                                                                                             on.Abstractions/1.0.0-beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Text.Encoding.Ex                                                                                             tensions' 72734ms
  GET https://www.nuget.org/api/v2/package/System.Text.Encoding.Extensions/4.0.1                                                                                             0-beta-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Con                                                                                             figuration.Binder' 72513ms
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Bin                                                                                             der/1.0.0-beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Linq.Expressions                                                                                             ' 72528ms
  GET https://www.nuget.org/api/v2/package/System.Linq.Expressions/4.0.10-beta-2                                                                                             3109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Reflection.TypeE                                                                                             xtensions' 72580ms
  GET https://www.nuget.org/api/v2/package/System.Reflection.TypeExtensions/4.0.                                                                                             0-beta-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.DataPr                                                                                             otection.Abstractions' 46857ms
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.DataProtection.Abstr                                                                                             actions/1.0.0-beta6
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Win32.Registr                                                                                             y' 46938ms
  GET https://www.nuget.org/api/v2/package/Microsoft.Win32.Registry/4.0.0-beta-2                                                                                             3109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Diagnostics.Proc                                                                                             ess' 53040ms
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Net.NetworkInfor                                                                                             mation' 53045ms
  GET https://www.nuget.org/api/v2/package/System.Diagnostics.Process/4.0.0-beta                                                                                             -23109
  GET https://www.nuget.org/api/v2/package/System.Net.NetworkInformation/4.0.10-                                                                                             beta-23109
  OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Runtime.Handles'                                                                                              21101ms
  GET https://www.nuget.org/api/v2/package/System.Runtime.Handles/4.0.0-beta-231                                                                                             09
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Refle                                                                                             ction/4.0.10-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Reflection/4.0.10-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Refle                                                                                             ction/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Reflection/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Compo                                                                                             nentModel/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.ComponentModel/4.0.0-beta-2310                                                                                             9
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Secur                                                                                             ity.Claims/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Security.Claims/4.0.0-beta-231                                                                                             09
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Runti                                                                                             me.InteropServices/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Runtime.InteropServices/4.0.0-                                                                                             beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.As                                                                                             pNet.FileProviders.Abstractions/1.0.0-beta6
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.FileProviders.Abstra                                                                                             ctions/1.0.0-beta6
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Runti                                                                                             me/4.0.20-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Runtime/4.0.20-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Resou                                                                                             rces.ResourceManager/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Resources.ResourceManager/4.0.                                                                                             0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Runti                                                                                             me/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Runtime/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Priva                                                                                             te.Networking/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Private.Networking/4.0.0-beta-                                                                                             23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Refle                                                                                             ction.Primitives/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Reflection.Primitives/4.0.0-be                                                                                             ta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Threa                                                                                             ding.Overlapped/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Threading.Overlapped/4.0.0-bet                                                                                             a-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Secur                                                                                             ity.Cryptography.X509Certificates/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Security.Cryptography.X509Cert                                                                                             ificates/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.Wi                                                                                             n32.Primitives/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/Microsoft.Win32.Primitives/4.0.0-beta                                                                                             -23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Text.                                                                                             Encoding/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Text.Encoding/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Threa                                                                                             ding.Tasks/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Threading.Tasks/4.0.0-beta-231                                                                                             09
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.Ne                                                                                             t.WebSockets/1.0.0-beta6
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/Microsoft.Net.WebSockets/1.0.0-beta6
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Globalization.Extensions/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Globalization.Extensions/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Diagnostics.Contracts/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Diagnostics.Contracts/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Security.Principal.Windows/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Security.Principal.Windows/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Collections.Concurrent/4.0.10-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Collections.Concurrent/4.0.10-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.IO.FileSystem.Watcher/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.IO.FileSystem.Watcher/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.IO.FileSystem/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.IO.FileSystem/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.IO.FileSystem.Primitives/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.IO.FileSystem.Primitives/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Text.RegularExpressions/4.0.10-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Text.RegularExpressions/4.0.10-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.AspNet.Http.Abstractions/1.0.0-beta6
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Http.Abstractions/1.0.0-beta6
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.AspNet.FeatureModel/1.0.0-beta6
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.FeatureModel/1.0.0-beta6
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Text.Encoding.Extensions/4.0.10-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Text.Encoding.Extensions/4.0.10-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Binder/1.0.0-beta6
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Binder/1.0.0-beta6
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Linq.Expressions/4.0.10-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Linq.Expressions/4.0.10-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Reflection.TypeExtensions/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Reflection.TypeExtensions/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta6
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta6
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.Win32.Registry/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/Microsoft.Win32.Registry/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Diagnostics.Process/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Diagnostics.Process/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Net.NetworkInformation/4.0.10-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Net.NetworkInformation/4.0.10-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Runtime.Handles/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Runtime.Handles/4.0.0-beta-23109

Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Reflection/4.0.10-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Reflection/4.0.10-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Reflection/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Reflection/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.ComponentModel/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.ComponentModel/4.0.0-beta-23109
Error: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Security.Claims/4.0.0-beta-23109
  HTTP request timed out. Exiting.
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Runtime.InteropServices/4.0.0-beta-23109
  HTTP request timed out. Retrying.
  GET https://www.nuget.org/api/v2/package/System.Runtime.InteropServices/4.0.0-beta-23109
Error: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta6
  HTTP request timed out. Exiting.
----------
System.Threading.Tasks.TaskCanceledException: A task was canceled.
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[System.Net.Http.HttpResponseMessage].GetResult () [0x00000] in <filename unknown>:0
  at System.Net.Http.HttpClientHandler+<SendAsync>c__async0.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1+ConfiguredTaskAwaiter[System.Net.Http.HttpResponseMessage].GetResult () [0x00000] in <filename unknown>:0
  at System.Net.Http.HttpClient+<SendAsyncWorker>c__async0.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[System.Net.Http.HttpResponseMessage].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.Restore.NuGet.HttpSource+<GetAsync>d__8.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[Microsoft.Framework.PackageManager.Restore.NuGet.HttpSourceResult].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.Restore.NuGet.PackageUtilities+<OpenNupkgStreamAsync>d__1.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[Microsoft.Framework.PackageManager.Restore.NuGet.NupkgEntry].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.Restore.NuGet.NuGetv2Feed+<OpenNupkgStreamAsync>d__29.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[System.IO.Stream].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.Restore.NuGet.PackageUtilities+<OpenNuspecStreamFromNupkgAsync>d__2.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[System.IO.Stream].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.Restore.NuGet.NuGetv2Feed+<OpenNuspecStreamAsync>d__27.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[System.IO.Stream].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.RemoteWalkProvider+<GetDependencies>d__7.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[System.Collections.Generic.IEnumerable`1[Microsoft.Framework.Runtime.LibraryDependency]].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.RestoreOperations+<FindLibraryEntry>d__5.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[Microsoft.Framework.PackageManager.GraphItem].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.RestoreOperations+<CreateGraphNode>d__2.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[Microsoft.Framework.PackageManager.GraphNode].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.RestoreOperations+<CreateGraphNode>d__2.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[Microsoft.Framework.PackageManager.GraphItem].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.RestoreOperations+<CreateGraphNode>d__2.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[Microsoft.Framework.PackageManager.GraphNode].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.RestoreOperations+<CreateGraphNode>d__2.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[Microsoft.Framework.PackageManager.GraphNode].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.RestoreOperations+<CreateGraphNode>d__2.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[Microsoft.Framework.PackageManager.GraphItem].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.RestoreOperations+<CreateGraphNode>d__2.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[Microsoft.Framework.PackageManager.GraphNode].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.RestoreOperations+<CreateGraphNode>d__2.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[Microsoft.Framework.PackageManager.Restore.NuGet.NupkgEntry].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.Restore.NuGet.NuGetv2Feed+<OpenNupkgStreamAsync>d__29.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[System.IO.Stream].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.Restore.NuGet.PackageUtilities+<OpenNuspecStreamFromNupkgAsync>d__2.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[System.IO.Stream].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.Restore.NuGet.NuGetv2Feed+<OpenNuspecStreamAsync>d__27.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[System.IO.Stream].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.RemoteWalkProvider+<GetDependencies>d__7.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[System.Collections.Generic.IEnumerable`1[Microsoft.Framework.Runtime.LibraryDependency]].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.RestoreOperations+<FindLibraryEntry>d__5.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[Microsoft.Framework.PackageManager.GraphItem].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.RestoreOperations+<CreateGraphNode>d__2.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[Microsoft.Framework.PackageManager.GraphNode].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.RestoreOperations+<CreateGraphNode>d__2.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[Microsoft.Framework.PackageManager.GraphNode].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.RestoreOperations+<CreateGraphNode>d__2.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[Microsoft.Framework.PackageManager.GraphNode].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.RestoreCommand+<CreateGraphNode>d__71.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[Microsoft.Framework.PackageManager.RestoreCommand+TargetContext[]].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.RestoreCommand+<RestoreForProject>d__70.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[System.Boolean].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.RestoreCommand+<>c__DisplayClass69_0+<<Execute>b__1>d.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.RestoreCommand+<Execute>d__69.MoveNext () [0x00000] in <filename unknown>:0
----------
Restore failed
A task was canceled.

NuGet Config files used:
    /root/.config/NuGet/NuGet.Config

Feeds used:
    https://www.nuget.org/api/v2/
Error: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Runtime/4.0.20-beta-23109
  HTTP request timed out. Exiting.

Maybe base images on buildpack-deps:jessie?

I've noticed that most of the official language base images (Node, Ruby, Python, etc) use the Docker buildpack-deps:jessie image as a base, which pre-installs all the build-essential type of stuff that this image installs itself (see https://github.com/docker-library/buildpack-deps/blob/master/jessie/Dockerfile).

(It doesn't install libuv, which doesn't seem to be available as an APT package.)

Basing microsoft/aspnet on the same image would save on downloads and disk space.

Docker ASP.NET 5 beta4 kestrel doesn't keep in running state

My requirement is to define a bash script file as an ENTRYPOINT for docker container instead of dnx command. I have created one bash script file and starting kestrel engine from this file. Below is code of startup bash script file...

#!/bin/bash
exec dnx . kestrel

I have verified that, when I am running startup bash file from inside container, the kestrel is started but when I am hit enter or any key the server stopped. The dnx . kestrel command runs and exit without waiting for terminate signal.

Getting "CONNECTION_RESET" when trying to run containers

Just tried a new yeoman ASP.NET project and I'm using the dockerfiles microsoft/aspnet:1.0.0-beta8 or microsoft/aspnet:1.0.0-beta8-coreclr.

In both cases, when I run the containers and I navigate to http://localhost:5000, Chrome tells me ERR_CONNECTION_RESET.

dnx seems to start up fine, and when I attach to the containers, it's still running on port 5000. I've correctly exposed the ports as the message isn't saying that the connection is being refused.

Something seems amiss here as I have other containers that bind to ports just fine. I haven't modified the project at all. Everything is quite vanilla, just trying to see if it boots out of the box right now. I'm on Ubuntu 15.10.

If I install links locally on the container and do docker -it /bin/bash ..., run it and navigate to localhost:5000, it seems to work. Is there possibly an issue with kestrel running on docker?

Fix tests

Apparently the directory structure at aspnet/Home/Samples has changed. Therefore tests are expected to fail until we adapt.

container always exits itself when it is started

I am in a trouble that the container always exits when I try to run it. My image was created based on microsoft/aspnet:1.0.0-beta4. Did I do something wrong?

FROM microsoft/aspnet:1.0.0-beta4

COPY . /app
WORKDIR /app

RUN ["dnu", "restore"]

EXPOSE 5004
CMD ["dnx", ".", "kestrel"]
docker build -t aspnet_face .
docker run -d -p 7080:5004 --name=aspnet_face aspnet_face:latest
root@ip-172-31-46-54:/workspace# docker run -d -p 7080:5004 --name=aspnet_face aspnet_face:latest
570290ef944c52e8b8f47211c28f2e396b1b8794b7b35c2a326ee0b7b8c87cd2
root@ip-172-31-46-54:/workspace# docker ps -a
CONTAINER ID        IMAGE                                         COMMAND              CREATED             STATUS                     PORTS                    NAMES
570290ef944c        aspnet_face:latest                            "dnx . kestrel"      4 seconds ago       Exited (0) 2 seconds ago                            aspnet_face

Docker image is missing NPM, grunt-cli and Git

When attempting to build a docker image, the command kpm restore fails when run on an ASP.net vNext project directory generated by Visual Studio 2015.

Command output:

System.ComponentModel.Win32Exception: ApplicationName='npm', CommandLine='install', CurrentDirectory='/usr/src/app/src/Botlink.Api.Server', Native error= Cannot find the specified file
  at System.Diagnostics.Process.Start_noshell (System.Diagnostics.ProcessStartInfo startInfo, System.Diagnostics.Process process) [0x00000] in <filename unknown>:0 
  at System.Diagnostics.Process.Start_common (System.Diagnostics.ProcessStartInfo startInfo, System.Diagnostics.Process process) [0x00000] in <filename unknown>:0 
  at System.Diagnostics.Process.Start (System.Diagnostics.ProcessStartInfo startInfo) [0x00000] in <filename unknown>:0 
  at Microsoft.Framework.PackageManager.ScriptExecutor.Execute (Microsoft.Framework.Runtime.Project project, System.String scriptName, System.Func`2 getVariable) [0x00000] in <filename unknown>:0 
  at Microsoft.Framework.PackageManager.RestoreCommand+<RestoreForProject>d__1.MoveNext () [0x00000] in <filename unknown>:0 
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0 
  at System.Runtime.CompilerServices.TaskAwaiter`1[System.Boolean].GetResult () [0x00000] in <filename unknown>:0 
  at Microsoft.Framework.PackageManager.RestoreCommand+<ExecuteCommand>d__1.MoveNext () [0x00000] in <filename unknown>:0 

This is due to the base image missing NPM. Once NPM is installed, the error becomes

System.ComponentModel.Win32Exception: ApplicationName='grunt', CommandLine='bower:install', CurrentDirectory='/usr/src/app/src/Botlink.Api.Server', Native error= Cannot find the specified file
  at System.Diagnostics.Process.Start_noshell (System.Diagnostics.ProcessStartInfo startInfo, System.Diagnostics.Process process) [0x00000] in <filename unknown>:0 
  at System.Diagnostics.Process.Start_common (System.Diagnostics.ProcessStartInfo startInfo, System.Diagnostics.Process process) [0x00000] in <filename unknown>:0 
  at System.Diagnostics.Process.Start (System.Diagnostics.ProcessStartInfo startInfo) [0x00000] in <filename unknown>:0 
  at Microsoft.Framework.PackageManager.ScriptExecutor.Execute (Microsoft.Framework.Runtime.Project project, System.String scriptName, System.Func`2 getVariable) [0x00000] in <filename unknown>:0 
  at Microsoft.Framework.PackageManager.RestoreCommand+<RestoreForProject>d__1.MoveNext () [0x00000] in <filename unknown>:0 
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0 
  at System.Runtime.CompilerServices.TaskAwaiter`1[System.Boolean].GetResult () [0x00000] in <filename unknown>:0 
  at Microsoft.Framework.PackageManager.RestoreCommand+<ExecuteCommand>d__1.MoveNext () [0x00000] in <filename unknown>:0 

which indicates that grunt-cli cannot be found. Once grunt-cli is installed, process finishes sucessfully, but there is a complaint by bower that git is missing.

Running "bower:install" (bower) task
Fatal error: git is not installed or not in the PATH

I have a working dockerfile that adds the three tools; I would gladly contribute my changes to aspnet-docker if this is actually an issue and not a deliberate design decision. I would argue that if kpm restore against a Visual Studio project expects NPM, grunt-cli, and git to be installed, they should probably be installed by default in the docker image.

Project Description on GitHub

Project description on GitHub still indicates "Docker image for ASP.NET vNext". I guess it should be: "Docker image for ASP.NET 5"

Proposal: CI for ASP.NET Docker image builds

Every now and then, we worry if the image produced by the merged Dockerfile works correctly or not. For now, the verification is done manually. It is tedious, error-prone and it goes as far as running the sample HelloWeb/HelloMvc apps inside the container, then heading over browser to see if it works.

I hereby propose using CircleCI to test these Dockerfiles. Actually I have prototyped this and can show what it will look like. (Head over to https://github.com/ahmetalpbalkan/aspnet-docker-integration-tests to see).

With this, we can have a nice Build Status icon for the repo as well as the PRs sent without manually testing the Dockerfile locally. :bowtie:

Docker host setup

  1. We need some Docker host to run the tests on.
    • Travis machines cannot run a docker daemon (linux <2.6, required: >3.8).
    • We can have a dedicated VM on Azure as a docker host. (that's what I did) In order to secure the instance, we need to use some auth mechanism.
      • For now I can hide the docker host's URL in a secret environment variable DOCKER_HOST, however a simple pull request that executes env in the CI code will reveal that.
      • There's no way to auth to docker with ENV vars or something like that as of now. The only auth mechanism is to have 3 certs placed on the CI machine.
      • For now I'm using a Docker instance (auth disabled) to run the tests. If some attacker scans Azure IP ranges and ports for Docker endpoints, they can easily find ours. There's no harm except they can use our instance to run their unwanted workloads. ๐Ÿ˜„
      • Upcoming docker version with SSH key authentication may address this because travis tests have support for assigned ssh keys by default.
  2. This docker host must be up all the time. Where to host is still a question. I am volunteering to manage it, using my team's subscription.

Repo setup

  1. This repo should host the CI scripts (one or two files, will go under ci/, or something like that) and .travis.yml file (has to be on the project root).
  2. Somebody with admin permissions on this repo will need to go to travis-ci.org to set up the CI for this repo and trigger a build to see if it works. I can provide hands on help offline.
  3. If everything goes well, we can add a 'build:passing' badge to the repo and all the PRs will get automatically built and verified.

Execution

As you can see in the .travis.yml prototype we will run tests for HelloWeb, HelloMvc in parallel.

On each Travis box, docker client will be downloaded, then ci/run-sample-kestrel.sh will be executed.

This script essentially clones the @aspnet/aspnet-Home repo, injects a Dockerfile to the sample app, builds app image, creates the Docker container with the image, verifies connectivity over curl and cleans up resources (container+image).

You can see a sample successful test pass here: https://travis-ci.org/ahmetalpbalkan/aspnet-docker-integration-tests (job 1 for HelloWeb and job 2 for HelloMvc).

Cleanup is always done (best effort guaranteed by Travis) on the instance, so I don't expect usage on the dedicated Docker Host accumulate over time and run out of disk etc.

Considerations

  • For now, the tests just use FROM microsoft/aspnet. Since CI triggers when commit or PR occurs, that image won't be ready for another 3-10 (or more) minutes. So we should be cloning this (aspnet-docker) repo and build that image in the CI script as well. That'll more than double the test execution time.
  • We should find a better way to authenticate to Docker instance. An insecured (auth-lesss) Docker instance won't last long. ๐Ÿ˜•
  • Sending a HTTP request to HelloWeb/HelloMvc doesn't exactly test everything (it helps, though). We should find a better way to run some extensive test suite on the Docker image.
  • Race conditions will exist in this one dedicated VM setup. If you look at the prototype, HelloWeb always runs on port 80 of the VM. If we randomly assign some port (e.g. using $RANDOM), then we need to open up that port on Azure VM as well and this cannot be done on the fly and takes quite some time, and guess what, can fail ๐Ÿ˜ฉ). If we can assume CI tests will finish before another git push (to the repo or to the same PR) comes, it's safe. But I'm pretty sure we'll run into this issue very quickly. Not sure how to solve this problem. If we could run docker daemon in travis box, that wouldn't be a concern.
  • ASP.NET project is open source and Travis CI is free for open source projects. I don't think there would be any legal issues.

Conclusion

This will obviously help to accelerate the process. If we sort out the logistics (e.g. Docker host and its authentication problem on Travis, race conditions), this may come really handy while signing off on PRs. Ideas?

/cc: @Eilon @muojp @vlesierse @friism @paulmey @davidfowl @danroth27

Retire beta1..4 images

I would like to propose retiring beta1..4 images as they're not part of CI for a while now and we probably shouldn't keep so many versions around. Thoughts?

Remove package list cache to reduce image size

The size of the image could be significantly reduced by adding "&& rm -rf /var/lib/apt/lists/*" to the apt-get commands in the image. I'd make a pull request, but I haven't signed the CLA yet.

alpha4 tag not available on Docker Hub

The alpha4 tag doesn't work: 2014/11/17 00:26:55 Tag 1.0.0-alpha4 not found in repository microsoft/aspnet

Looks like there's an error during the automated build:

build

error in dnu restore

When I launch docker build command with latest version (1.0.0-beta-7) dnu restore fails with message:

Warning: FindPackagesById: Microsoft.AspNet.Mvc
Error: NameResolutionFailure

System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.Exception: Couldn't resolve host name.

However, when I execute dnu restore from command line, (1.0.0-rc1-15838) dnu restore works.

ASP.NET docker image exposed ports are closed

I have added EXPOSE to the ASPNET Dockerfile and build an image from it however the port exposed in the docker file is always closed? do I need to download a specific package to allow ports to open on this image.

Dockerfile

FROM debian:jessie

ENV DNX_VERSION 1.0.0-beta8
ENV DNX_USER_HOME /opt/dnx

RUN apt-get -qq update && apt-get -qqy install unzip curl libicu-dev libunwind8 gettext libssl-dev libcurl3-gnutls zlib1g && rm -rf /var/lib/apt/lists/*

RUN curl -sSL https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.sh | DNX_USER_HOME=$DNX_USER_HOME DNX_BRANCH=v$DNX_VERSION sh
RUN bash -c "source $DNX_USER_HOME/dnvm/dnvm.sh \
    && dnvm install $DNX_VERSION -alias default -r coreclr \
    && dnvm alias default | xargs -i ln -s $DNX_USER_HOME/runtimes/{} $DNX_USER_HOME/runtimes/default"

# Install libuv for Kestrel from source code (binary is not in wheezy and one in jessie is still too old)
# Combining this with the uninstall and purge will save us the space of the build tools in the image
RUN LIBUV_VERSION=1.4.2 \
    && apt-get -qq update \
    && apt-get -qqy install autoconf automake build-essential libtool \
    && curl -sSL https://github.com/libuv/libuv/archive/v${LIBUV_VERSION}.tar.gz | tar zxfv - -C /usr/local/src \
    && cd /usr/local/src/libuv-$LIBUV_VERSION \
    && sh autogen.sh && ./configure && make && make install \
    && rm -rf /usr/local/src/libuv-$LIBUV_VERSION \
    && ldconfig \
    && apt-get -y purge autoconf automake build-essential libtool \
    && apt-get -y autoremove \
    && apt-get -y clean \
    && rm -rf /var/lib/apt/lists/*

EXPOSE 5003

ENV PATH $PATH:$DNX_USER_HOME/runtimes/default/bin

Please note that other images exposing ports like mongodb and nginx are working fine and their exposed ports are open. It is only this image that I am struggling with

docker inspect output

[
{
    "Id": "46865fae677bc52a8d7affbd53d8ed3da941fd2d8276514dcbcdebfc3b5d666a",
    "Created": "2015-11-09T10:59:21.613690009Z",
    "Path": "/bin/bash",
    "Args": [],
    "State": {
        "Status": "running",
        "Running": true,
        "Paused": false,
        "Restarting": false,
        "OOMKilled": false,
        "Dead": false,
        "Pid": 21337,
        "ExitCode": 0,
        "Error": "",
        "StartedAt": "2015-11-09T10:59:21.800924128Z",
        "FinishedAt": "0001-01-01T00:00:00Z"
    },
    "Image": "2e1b81c113a2a2ba84935be470f9b02ee22f23649136d4408f0340f385e67fc1",
    "ResolvConfPath": "/var/lib/docker/containers/46865fae677bc52a8d7affbd53d8ed3da941fd2d8276514dcbcdebfc3b5d666a/resolv.conf",
    "HostnamePath": "/var/lib/docker/containers/46865fae677bc52a8d7affbd53d8ed3da941fd2d8276514dcbcdebfc3b5d666a/hostname",
    "HostsPath": "/var/lib/docker/containers/46865fae677bc52a8d7affbd53d8ed3da941fd2d8276514dcbcdebfc3b5d666a/hosts",
    "LogPath": "/var/lib/docker/containers/46865fae677bc52a8d7affbd53d8ed3da941fd2d8276514dcbcdebfc3b5d666a/46865fae677bc52a8d7affbd53d8ed3da941fd2d8276514dcbcdebfc3b5d666a-json.log",
    "Name": "/aspnet",
    "RestartCount": 0,
    "Driver": "aufs",
    "ExecDriver": "native-0.2",
    "MountLabel": "",
    "ProcessLabel": "",
    "AppArmorProfile": "",
    "ExecIDs": [
        "181b80dd7744fa16f6e720234c9a9d629b4558cfe84c6e43067f827125a78915"
    ],
    "HostConfig": {
        "Binds": null,
        "ContainerIDFile": "",
        "LxcConf": [],
        "Memory": 0,
        "MemoryReservation": 0,
        "MemorySwap": 0,
        "KernelMemory": 0,
        "CpuShares": 0,
        "CpuPeriod": 0,
        "CpusetCpus": "",
        "CpusetMems": "",
        "CpuQuota": 0,
        "BlkioWeight": 0,
        "OomKillDisable": false,
        "MemorySwappiness": -1,
        "Privileged": false,
        "PortBindings": {},
        "Links": null,
        "PublishAllPorts": false,
        "Dns": null,
        "DnsOptions": null,
        "DnsSearch": null,
        "ExtraHosts": null,
        "VolumesFrom": null,
        "Devices": [],
        "NetworkMode": "default",
        "IpcMode": "",
        "PidMode": "",
        "UTSMode": "",
        "CapAdd": null,
        "CapDrop": null,
        "GroupAdd": null,
        "RestartPolicy": {
            "Name": "no",
            "MaximumRetryCount": 0
        },
        "SecurityOpt": null,
        "ReadonlyRootfs": false,
        "Ulimits": null,
        "LogConfig": {
            "Type": "json-file",
            "Config": {}
        },
        "CgroupParent": "",
        "ConsoleSize": [
            0,
            0
        ],
        "VolumeDriver": ""
    },
    "GraphDriver": {
        "Name": "aufs",
        "Data": null
    },
    "Mounts": [],
    "Config": {
        "Hostname": "46865fae677b",
        "Domainname": "",
        "User": "",
        "AttachStdin": true,
        "AttachStdout": true,
        "AttachStderr": true,
        "ExposedPorts": {
            "5003/tcp": {}
        },
        "Tty": true,
        "OpenStdin": true,
        "StdinOnce": true,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/dnx/runtimes/default/bin",
            "DNX_VERSION=1.0.0-beta8",
            "DNX_USER_HOME=/opt/dnx"
        ],
        "Cmd": [
            "/bin/bash"
        ],
        "Image": "aspnet:try1",
        "Volumes": null,
        "WorkingDir": "",
        "Entrypoint": null,
        "OnBuild": null,
        "Labels": {},
        "StopSignal": "SIGTERM"
    },
    "NetworkSettings": {
        "Bridge": "",
        "SandboxID": "b4d6098c499133f57a7bf90c22cc78f603a4857b7baeba652358e8c825564f16",
        "HairpinMode": false,
        "LinkLocalIPv6Address": "",
        "LinkLocalIPv6PrefixLen": 0,
        "Ports": {
            "5003/tcp": null
        },
        "SandboxKey": "/var/run/docker/netns/b4d6098c4991",
        "SecondaryIPAddresses": null,
        "SecondaryIPv6Addresses": null,
        "EndpointID": "48fd94eabaed4216f1f617f046c1495a77f349c163b4bd8e81f2c7c879968d64",
        "Gateway": "172.17.0.1",
        "GlobalIPv6Address": "",
        "GlobalIPv6PrefixLen": 0,
        "IPAddress": "172.17.0.4",
        "IPPrefixLen": 16,
        "IPv6Gateway": "",
        "MacAddress": "02:42:ac:11:00:04",
        "Networks": {
            "bridge": {
                "EndpointID": "48fd94eabaed4216f1f617f046c1495a77f349c163b4bd8e81f2c7c879968d64",
                "Gateway": "172.17.0.1",
                "IPAddress": "172.17.0.4",
                "IPPrefixLen": 16,
                "IPv6Gateway": "",
                "GlobalIPv6Address": "",
                "GlobalIPv6PrefixLen": 0,
                "MacAddress": "02:42:ac:11:00:04"
            }
        }
    }
}
]

nmap port scan for 5003

nmap -p 5003 172.17.0.4

Starting Nmap 6.40 ( http://nmap.org ) at 2015-11-09 06:51 EST
Nmap scan report for 172.17.0.4
Host is up (0.00011s latency).
PORT     STATE  SERVICE
5003/tcp closed filemaker
MAC Address: 02:42:AC:11:00:04 (Unknown)

Nmap done: 1 IP address (1 host up) scanned in 0.46 seconds

Attempting to run aspnet samples with vs-1.0.0-beta4 results in error

I was attempting to run aspnet HelloMvc sample with vs-1.0.0-beta4 docker image. This results in "Unable to locate Microsoft.AspNet.Server.WebListener >= 1.0.0-beta4*" error.

Here is my docker file

FROM microsoft/aspnet:vs-1.0.0-beta4

COPY . /app
WORKDIR /app
RUN ["dnu", "restore"]

EXPOSE 5005
ENTRYPOINT ["dnx", ".", "kestrel"]

Would be great with a working DockerFile against dev branch

Hello,

I have been trying to get an DockerFile working against the dev branch (beta6 at the moment).
But havnt been able to make it work.

The problem is that when adding the https://www.myget.org/F/aspnetvnext/

dnu restore gets problems.

I have seen the current issues and tried the certmgr

dotnet/aspnetcore#197
dotnet/aspnetcore#89
https://itofinity.wordpress.com/2014/06/04/hello-new-k-world-kpm-restore-fail-part-1/
http://weblogs.thinktecture.com/cweyer/2014/10/installing-running-aspnet-vnext-alpha-3-on-ubuntu-linux-with-mono-38for-real.html

And also an open issue on dokku:

progrium/buildstep#147

This is my current docker file:


FROM mono:latest

ENV DNX_VERSION 1.0.0-beta6-12114
ENV DNX_USER_HOME /opt/dnx
ENV DNX_FEED https://www.myget.org/F/aspnetvnext/api/v2

RUN apt-get -qq update && apt-get -qqy install unzip

RUN curl -sSL https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.sh | DNX_USER_HOME=$DNX_USER_HOME DNX_BRANCH=v$DNX_VERSION sh
RUN bash -c "source $DNX_USER_HOME/dnvm/dnvm.sh \
    && dnvm install $DNX_VERSION -a default \
    && dnvm alias default | xargs -i ln -s $DNX_USER_HOME/runtimes/{} $DNX_USER_HOME/runtimes/default"

# Install libuv for Kestrel from source code (binary is not in wheezy and one in jessie is still too old)
RUN apt-get -qqy install \
    autoconf \
    automake \
    build-essential \
    libtool
RUN LIBUV_VERSION=1.4.2 \
    && curl -sSL https://github.com/libuv/libuv/archive/v${LIBUV_VERSION}.tar.gz | tar zxfv - -C /usr/local/src \
    && cd /usr/local/src/libuv-$LIBUV_VERSION \
    && sh autogen.sh && ./configure && make && make install \
    && rm -rf /usr/local/src/libuv-$LIBUV_VERSION \
    && ldconfig

ENV PATH $PATH:$DNX_USER_HOME/runtimes/default/bin
RUN yes | certmgr -ssl -m https://nugetgallery.blob.core.windows.net  https://nuget.org https://www.myget.org https://www.myget.org/F/aspnetvnext/api/v2 https://go.microsoft.com https://www.myget.org
RUN mozroots --import --machine --sync --quiet

RUN mkdir -p ~/.config/NuGet/
RUN curl -o ~/.config/NuGet/NuGet.Config -sSL https://gist.githubusercontent.com/Tazer/1ad0e439846ee26ef9a5/raw/12bc6b02b74af55154e456ec232ef3c01ec960e6/Nuget.config

COPY . /app
WORKDIR /app
RUN ["dnu", "restore"]

EXPOSE 5005
ENTRYPOINT ["dnx", ".", "kestrel"]

ASP.NET 5 Docker image based on CoreCLR

Now that ASP.NET 5 Beta 7 has support for CoreCLR and that the current Docker images are based on the Mono image, I propose to have two sets of images, one based on Mono and the other on .NET CoreCLR.

There are two possible options which I would like to propose:

Use the image name

docker pull microsoft/aspnet-mono:1.0.0-beta7
docker pull microsoft/aspnet-coreclr:1.0.0-beta7

Use the image tag

docker pull microsoft/aspnet:1.0.0-beta7-mono
docker pull microsoft/aspnet:1.0.0-beta7-coreclr

For both options you could still create a docker pull microsoft/aspnet:1.0.0-beta7 which either points to the mono or the coreclr.

My preference goes to the second option which give you more freedom in aliasing images. For example microsoft/aspnet:coreclr is the same as microsoft/aspnet:latest-coreclr

I can create the CoreCLR version at the earliest next week. If someone didn't send a pull request yet I'll give it a try.

Container exits after starting / Sample docker file

I've been trying to get this to work with a standard empty project from the Visual Studio ASP.Net 5 templates. This template generates the following kind of structure: (I also added the kestrel command and dependency to the project.json file as this isn't there by default - Here's what I've ended up with: https://github.com/yngndrw/ASPNetTest)

ASPNetTest.sln
global.json
src/
src/ASPNetTest/
src/ASPNetTest/ASPNetTest.xproj
src.ASPNetTest/project.json

There wasn't an example Dockerfile on here that I could find so the first Dockerfile example that I saw from a blog was:

FROM microsoft/aspnet:1.0.0-beta4
ADD . /app
WORKDIR /app
RUN ["dnu", "restore"]

EXPOSE 5004
ENTRYPOINT ["dnx", "./src/HelloMvc6", "kestrel"]

I changed the project path and this deployed the whole solution only to find the container was exiting right after it started. It looks like the following command is used to start the container:

id=$(docker run -d -e PORT=$port $DOCKER_ARGS $IMAGE $START_CMD)

In this case, $port is "5000", $DOCKER_ARGS and $STARG_CMD are both empty and $IMAGE is an image built from my repository.

The main point of interest is -d meaning that it will be running as a background process. If I add -t, the container doesn't automatically shut down but I'm unsure as to why it helps. It also seems like a strange configuration, I thought -t would normally only be combined with -i.

I then found a different example in an old issue on here and tried the following:

FROM microsoft/aspnet:1.0.0-beta4

ADD . /app
WORKDIR /app

RUN dnu restore

EXPOSE 5000
ENV DNX_TRACE 1
ENTRYPOINT sleep 1000 | dnx ./src/ASPNetTest kestrel

This with the standard docker options (I.e. without -t) allowed my container to run for a while, but it exited after approximately an hour. Sadly I forgot to check the logs but will do when I next get a chance to.

Can anybody recommend a good Dockerfile setup to use ?

Make kvm command family available by default

On current image, kvm command is not available to container users by default.

Like this (note: same goes on microsoft/aspnet:nightly):

$ docker run -it microsoft/aspnet:latest kvm
2015/01/18 03:34:36 exec: "kvm": executable file not found in $PATH
$ docker run -it microsoft/aspnet:latest /bin/bash -i kvm
bash: kvm: No such file or directory
$ docker run -it microsoft/aspnet:latest /bin/bash -i -c kvm
bash: kvm: No such file or directory

It's because kvminstall.sh doesn't find which .bashrc/.bash_profile/.zshrc/ blah, blah, blah to put K Runtime initialization script into(ref: https://github.com/aspnet/Home/blob/dev/kvminstall.sh#L48-L63 ).

This is not caused by recent changes, but a historical and complicated one. Simply, it's because we don't depend on $HOME and it's meant to be.

I tried some methods and finally got a way for downstream Docker image maintainers to resolve this issue by setting $HOME and putting kvm.sh in ~/.bashrc (like this: https://github.com/muojp/hellovnext-docker/blob/master/1.0.0-beta2/Dockerfile#L6-L7 ).

$ docker run -it muojp/hellovnext-docker:latest kvm
2015/01/18 03:39:01 exec: "kvm": executable file not found in $PATH
$ docker run -it muojp/hellovnext-docker:latest /bin/bash kvm
/bin/bash: kvm: No such file or directory
$ docker run -it muojp/hellovnext-docker:latest /bin/bash -i kvm
bash: kvm: No such file or directory
$ docker run -it muojp/hellovnext-docker:latest /bin/bash -i -c kvm

K Runtime Environment Version Manager - Build 10050

USAGE: kvm <command> [options]
...snip...
$ docker run -it muojp/hellovnext-docker:latest /bin/bash -i -c "kvm list"

Active Version              Runtime Location             Alias
------ -------              ------- --------             -----
       1.0.0-beta2          Mono    /opt/kre/packages    default

It works fine(note: I couldn't find ways to enforce bash load kvm.sh but no luck. Passing -i option to bash is mandatory). Alternatively, you can then call kvm on console:

$ docker run -it muojp/hellovnext-docker:latest /bin/bash -i
root@887a53291813:/opt/helloworld/src/helloworldweb# kvm

K Runtime Environment Version Manager - Build 10050

USAGE: kvm <command> [options]
...snip...

The problem is how to apply changes on the official image. kvm.sh does many things. I don't think hard-coding kvm path is productive. If we do so, we'll be suffered by new tools in the future. Furthermore, it'll prevent users from switching their runtime versions easily.

So, I want to open a discussion to deal with this problem.

IMO, we have three options here:

Option 1: Make use of /etc/profile or /etc/bashrc

(ref: http://bencane.com/2013/09/16/understanding-a-little-more-about-etcprofile-and-etcbashrc/ )

This is achieved by putting kvm.sh caller in /etc/bash.bashrc.

RUN echo 'source /opt/kre/kvm/kvm.sh' >> /etc/bash.bashrc

I already tested this and confirmed it works fine. It's handy and doesn't pollute $HOME. Instead, it pollutes every user's bash on the image. I think it's OK because every user using the image have to be interested in k* commands.

Option 2: Put $HOME and set up .bashrc

It's the way I described above (https://github.com/muojp/hellovnext-docker/blob/master/1.0.0-beta2/Dockerfile#L6-L7 hack). I prefer Opt1 than Opt2.

Option 3: Write a FAQ for downstream maintainers to deal with it by themselves using Opt1/Opt2

If we focus on providing generic images and stay away from actual use-cases on this official image, I think this option is not that bad. It doesn't pollute anything on the official image.

Comments and better options suggestions are welcomed.

@ahmetalpbalkan @davidfowl

Packages required by kpm as a built-in

I've tried to build the ASP.NET vNext Starter Web application (default Visual Studio Project) using docker, however the tutorial provided on the site
http://blogs.msdn.com/b/webdev/archive/2015/01/14/running-asp-net-5-applications-in-linux-containers-with-docker.aspx
didn't cover or even mention lots of issues that may occur. Project as simple as the HelloWeb app with barely 3 files inside built correctly, but the Visual Studio project didn't.

The issue was caused by missing npm (also bower and grunt) in the microsoft/aspnet docker package. KPM restored lots of packages and then just threw an exception "Cannot find npm".

Stacktrace:

System.ComponentModel.Win32Exception: ApplicationName='npm', CommandLine='install', CurrentDirectory='/app', Native error= Cannot find the specified file at System.Diagnostics.Process.Start_noshell (System.Diagnostics.ProcessStartInfo startInfo, System.Diagnostics.Process process) [0x00000] in <filename unknown>:0 at System.Diagnostics.Process.Start_common (System.Diagnostics.ProcessStartInfo startInfo, System.Diagnostics.Process process) [0x00000] in <filename unknown>:0 at System.Diagnostics.Process.Start (System.Diagnostics.ProcessStartInfo startInfo) [0x00000] in <filename unknown>:0 at Microsoft.Framework.PackageManager.ScriptExecutor.Execute (Microsoft.Framework.Runtime.Project project, System.String scriptName, System.Func2 getVariable) [0x00000] in <filename unknown>:0 at Microsoft.Framework.PackageManager.RestoreCommand+<RestoreForProject>d__1.MoveNext () [0x00000] in <filename unknown>:0 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter1[System.Boolean].GetResult () [0x00000] in <filename unknown>:0 at Microsoft.Framework.PackageManager.RestoreCommand+<ExecuteCommand>d__1.MoveNext () [0x00000] in <filename unknown>:0

I've resolved this issue on my environment by creating custom Dockerfile to build the project. You can it find here:
https://github.com/marrrcin/aspnet5-dockerfile

My environment : Ubuntu 14.0.1 LTS.

Beta 8 tag for Mono based image is missing

Building a Docker image with FROM microsoft/aspnet:1.0.0-beta8 is causing Docker to complain about not finding the image. Running it with FROM microsoft/aspnet:latest is able to grab the image with beta8 mono runtime.

Looking here (https://hub.docker.com/r/microsoft/aspnet/tags/) it seems that it's just an issue of having to add the 1.0.0-beta8 tag.

You can test this on the sample apps provided in the Home repo and trying to build Docker images for them.

"dnu" executable file not found in $PATH

I'm trying to build a new container from my docker hub repository with this dockerfile

But when it start to build getting the system error below:

exec: "dnu": executable file not found in $PATH

so when I look at the container $PATH output, it seems normal and dnx, dnvm and dnu are already added to path properly! where I am wrong?
sound may have something to do with docker entrypoint or /bin/sh ?

Proposal: ONBUILD image

For those who are not familiar, Dockerfiles can have an instruction called ONBUILD which invokes the preceding command when the image is used as a base image for building another image (typically app image).

Right now simplest ASP.NET application image would look like this:

FROM microsoft/aspnet
COPY . /app
WORKDIR /app
RUN kpm restore
CMD ["k", "kestrel"]

With the help of ONBUILD directives, we can simplify this Dockerfile as short as this:

FROM microsoft/aspnet:onbuild

and that would be the only Dockerfile to build an ASP.NET app image and ship it to the Docker host. Relevant work is suggested by @friism (#11) and @vlesierse (#7) in the pull requests. Therefore I am starting a discussion about possible risks and implementation details.

Risks of breaking users

The dockerfile written above is almost the same for all web applications.

  1. It copies app to /app (or /usr/src/app open to debase, but ok)
  2. Goes to /app and runs kpm restore (always needed?)
  3. Runs k executable with kestrel parameter.

Since onbuild image will bring quite some easiness, if we happen to change the path (i.e. /app) and people take dependency on that, we will be breaking the apps built with the -onbuild image.

Also, if kpm restore takes any parameter (e.g. feed), unfortunately we won't be able to pass that to the ONBUILD RUN kpm restore. So it will stay as bare kpm restore. Does this handle the 90% use case?

It's ok to break users now since this image is still in preview, however in the long term this will not be feasible, therefore we should be coming up with a solution that can stabilize and get adopted by the community over time.

Maintenance

Along with any version (e.g. 1.0.0-beta1) we need to maintain an -onbuild Dockerfile equivalent as well (e.g. 1.0.0-beta1-onbuild). That's not a big cost, I have no concerns in this area. (example)

Entrypoint

Right now it appears like k kestrel is the de facto entrypoint for the web server containers. However I do not want to leave the k run (command line app) use case out of the onbuild images. The both entrypoint common in all use cases is k itself and the rest can be changed.

So in the onbuild image, if we specify the entrypoint as:

ENTRYPOINT ["k"]
CMD ["kestrel"]
  • In the simplest Dockerfile (just contains FROM .... above the entrypoint will be k kestrel.

  • If users need to override the k parameter in their app image, they can use:
    FROM microsoft/aspnet
    CMD ["run"]
    and the entrypoint will be overriden as k run.

  • If users need to override the entrypoint entirely, they can use ENTRYPOINT directive in their app's Dockerfile.

  • Passing parameters: by overriding the CMD I can pass extra parameters to the k command (e.g.k run --param foo) in Docker cli from an onbuild image like:

    docker run -i -t myapp run --param foo

This will result in a cmd like ["k", "run", "--param", "foo"] which is valid.

Tagging onbuild images

An onbuild image for a normal image will just have -onbuild suffix in the Docker image tag. (e.g. microsoft/aspnet:1.0.0 will have corresponding microsoft/aspnet:1.0.0-onbuild image).

An ONBUILD dockerfile for a version should be stored at version/onbuild/Dockerfile (e.g. onbuild Dockerfile for 1.0.0/Dockerfile should be at 1.0.0/onbuild/Dockerfile). This will keep things organized at the root level view on the repo.

This also appears to be the convention.

The ONBUILD image for latest image will just be tagged as onbuild and will be referenced as microsoft/aspnet:onbuild.

Release steps

Once the PR is merged, we'll push the onbuild image for latest(=1.0.0-beta1) immediately and for the next version releases, ONBUILD image has to be included as a part of the version update PR. The README.md should also be updated to reflect the changes in the tags.

Once changes are merged administrators must update the automated build configuration to point latest/onbuild tags to the correct version.

Going forward

@vlesierse's PR #7 uses ENTRYPOINT and CMD separately, which makes sense in the description above.

I really appreciate input from you guys on going forward. Do you see any problems with the proposal above or do you see additional issues/concerns we should be aware of? At this point iterating on @vlesierse's PR #7 looks like a better choice for me.

/cc: @davidfowl @johngossman

Create container for aspnet latest dev version

Right now dev is beta2-10698 dev version and master is 1.0.0-beta1 master version.
We don't get a dev version, only a master. We should always have the option to run the latest dev version, which would pull the latest automatically (no need to update the docker file all the time).

Sample app not working

I've tried to get the example running from this guide http://blogs.msdn.com/b/webdev/archive/2015/01/14/running-asp-net-5-applications-in-linux-containers-with-docker.aspx

Application code: https://github.com/aspnet/Home/tree/master/samples/HelloWeb
Full code can be found here: https://github.com/luebken/asp-docker

And get the error:

But I get the error: โ—‹ โ†’ docker run -P asp-docker
System.InvalidOperationException: Failed to resolve the following dependencies for target framework 'DNX,Version=v4.5.1':
Kestrel 1.0.0-beta3
Microsoft.AspNet.Diagnostics 1.0.0-beta3
Microsoft.AspNet.Hosting 1.0.0-beta3
Microsoft.AspNet.Server.WebListener 1.0.0-beta3
Microsoft.AspNet.StaticFiles 1.0.0-beta3

Searched Locations:
/{name}/project.json
/root/.dnx/packages/{name}/{version}/{name}.nuspec
/usr/lib/mono/4.5/{name}.dll
/usr/lib/mono/4.5/Facades/{name}.dll

Need a beta5 image

We are trying to run in kubernentes and you can't specify the -t argument to run the Docker image.

I believe the underlying problem in aspnet/Hosting has been fixed but I'm having trouble restoring the latest nuget packages.

FROM microsoft/aspnet

COPY project.json /app/

WORKDIR /app

RUN ["dnu", "restore", "-s", "https://www.myget.org/F/aspnetvnext/api/v2" , "-f", "https://nuget.org/api/v2"]

COPY . /app

EXPOSE 5004

ENTRYPOINT ["dnx", "project.json", "kestrel"]

leads to an error

markdv@ubuntu:~/Desktop/kubernetes-bestiary/aspvnext/web-image$ docker run -p 80:5004 mdevilliers/aspvnext-image
System.InvalidOperationException: No service for type 'Microsoft.Framework.Runtime.IApplicationEnvironment' has been registered.
  at Microsoft.Framework.DependencyInjection.ServiceProviderExtensions.GetRequiredService (IServiceProvider provider, System.Type serviceType) [0x00000] in <filename unknown>:0 
  at Microsoft.Framework.DependencyInjection.ServiceProviderExtensions.GetRequiredService[IApplicationEnvironment] (IServiceProvider provider) [0x00000] in <filename unknown>:0 
  at Microsoft.AspNet.Hosting.Program.Main (System.String[] args) [0x00000] in <filename unknown>:0 
  at (wrapper managed-to-native) System.Reflection.MonoMethod:InternalInvoke (System.Reflection.MonoMethod,object,object[],System.Exception&)
  at System.Reflection.MonoMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00000] in <filename unknown>:0 

To help fix this @ahmetalpbalkan suggest a beta5 image is required.

If you need help I have some time to help work on this.

Mark

Sample web app broken?

I attempted to build the Docker container for the HelloWeb sample app, following these instructions.

http://blogs.msdn.com/b/webdev/archive/2015/01/14/running-asp-net-5-applications-in-linux-containers-with-docker.aspx

Seems seem ok for a while, but then I get a lot of nuget timeouts. Curiously, I do seem to be able to manually retrieve packages from the offending nuget URLs.

Is there a better set of instructions to use? I want to create an asp.net vnext web API and build it into a docker container.

$ cd /c/HelloWeb/

rzachariah@Apollo MINGW64 /c/HelloWeb
$ docker build -t myapp .
Sending build context to Docker daemon 6.656 kB
Step 0 : FROM microsoft/aspnet
latest: Pulling from microsoft/aspnet
4c8cbfd2973e: Pulling fs layer
60c52dbe9d91: Pulling fs layer
9c0e80caf8f1: Pulling fs layer
1b0084ef34cd: Pulling fs layer
7134db1dc550: Pulling fs layer
f06df13e95d3: Pulling fs layer
0bce025f252c: Pulling fs layer
74ae7294add4: Pulling fs layer
ab5893acf077: Pulling fs layer
3ba438f29d4a: Pulling fs layer
3e5151004d7b: Pulling fs layer
686b2834b962: Pulling fs layer
1eb4f091510d: Pulling fs layer
3ad193895d0a: Pulling fs layer
3ad193895d0a: Pulling fs layer
3ad193895d0a: Layer already being pulled by another client. Waiting.
60c52dbe9d91: Verifying Checksum
60c52dbe9d91: Download complete
7134db1dc550: Verifying Checksum
7134db1dc550: Download complete
3ad193895d0a: Verifying Checksum
3ad193895d0a: Download complete
9c0e80caf8f1: Verifying Checksum
9c0e80caf8f1: Download complete
0bce025f252c: Verifying Checksum
0bce025f252c: Download complete
74ae7294add4: Verifying Checksum
74ae7294add4: Download complete
3ba438f29d4a: Verifying Checksum
3ba438f29d4a: Download complete
1eb4f091510d: Verifying Checksum
1eb4f091510d: Download complete
3e5151004d7b: Verifying Checksum
3e5151004d7b: Download complete
ab5893acf077: Verifying Checksum
ab5893acf077: Download complete
1b0084ef34cd: Verifying Checksum
1b0084ef34cd: Download complete
4c8cbfd2973e: Verifying Checksum
4c8cbfd2973e: Download complete
686b2834b962: Verifying Checksum
686b2834b962: Download complete
4c8cbfd2973e: Pull complete
60c52dbe9d91: Pull complete
9c0e80caf8f1: Pull complete
1b0084ef34cd: Pull complete
7134db1dc550: Pull complete
f06df13e95d3: Verifying Checksum
f06df13e95d3: Download complete
f06df13e95d3: Pull complete
0bce025f252c: Pull complete
74ae7294add4: Pull complete
ab5893acf077: Pull complete
3ba438f29d4a: Pull complete
3e5151004d7b: Pull complete
686b2834b962: Pull complete
1eb4f091510d: Pull complete
3ad193895d0a: Download complete
3ad193895d0a: Pull complete
3ad193895d0a: Already exists
Digest: sha256:52db2c96809f5d376c529f13286ede04d70910b7574f28e21691c6b5509b25d7
Status: Downloaded newer image for microsoft/aspnet:latest
---> 3ad193895d0a
Step 1 : COPY project.json /app/
---> 1ca40ec6c1f5
Removing intermediate container 2350f6ca821d
Step 2 : WORKDIR /app
---> Running in 8795f49ce8de
---> ea1fb70d2c14
Removing intermediate container 8795f49ce8de
Step 3 : RUN dnu restore
---> Running in 57d8204c0f3b
Microsoft .NET Development Utility Mono-x64-1.0.0-beta6-12256

Restoring packages for /app/project.json
GET https://www.nuget.org/api/v2/
OK https://www.nuget.org/api/v2/ 1778ms
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Serve r.Kestrel'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Diagn ostics'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Hosti ng'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Serve r.IIS'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Serve r.WebListener'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Stati cFiles'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Lo gging.Console'
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Server .Kestrel' 123ms
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Server.Kestrel/1.0.0 -beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Hostin g' 6256ms
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Diagno stics' 6261ms
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Hosting/1.0.0-beta6
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Diagnostics/1.0.0-be ta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Server .IIS' 12753ms
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Server .WebListener' 12764ms
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Server.IIS/1.0.0-bet a6
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Server.WebListener/1 .0.0-beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Static Files' 12819ms
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.StaticFiles/1.0.0-be ta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Log ging.Console' 19266ms
GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Logging.Console/1 .0.0-beta6
OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Server.Kestrel/1.0.0- beta6 25151ms
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Ru ntime.Abstractions'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Collections'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Diagnostics.Deb ug'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Diagnostics.Tra ceSource'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Diagnostics.Tra cing'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Globalization'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.IO'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Linq'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Net.Primitives'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Runtime.Extensi ons'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Runtime.Interop Services'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Text.Encoding'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Threading'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Threading.Tasks '
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Threading.Threa d'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Threading.Threa dPool'
OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Hosting/1.0.0-beta6 1 9072ms
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.FileP roviders.Physical'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Hosti ng.Abstractions'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Hosti ng.Server.Abstractions'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Http'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Http. Extensions'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Co nfiguration'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Co nfiguration.CommandLine'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Co nfiguration.EnvironmentVariables'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Co nfiguration.Ini'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.De pendencyInjection'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Lo gging'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Newtonsoft.Json'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Console'
OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Diagnostics/1.0.0-bet a6 19106ms
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Diagn ostics.Abstractions'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.WebUt ilities'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Op tionsModel'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.We bEncoders.Core'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Lo gging.Abstractions'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Reflection.Exte nsions'
OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Server.IIS/1.0.0-beta 6 12619ms
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Loade r.IIS.Interop'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Loade r.IIS'
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Run time.Abstractions' 6457ms
OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Server.WebListener/1. 0.0-beta6 25495ms
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Net.Http.Hea ders'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Net.Http.Ser ver'
GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Runtime.Abstracti ons/1.0.0-beta6
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Security.Claims '
OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.StaticFiles/1.0.0-bet a6 19035ms
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.FileP roviders.Abstractions'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.We bEncoders'
OK https://www.nuget.org/api/v2/package/Microsoft.Framework.Logging.Console/1. 0.0-beta6 19043ms
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Collections' 130 02ms
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Runtime'
GET https://www.nuget.org/api/v2/package/System.Collections/4.0.10-beta-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Diagnostics.Debu g' 13048ms
GET https://www.nuget.org/api/v2/package/System.Diagnostics.Debug/4.0.10-beta- 23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Diagnostics.Trac eSource' 13130ms
GET https://www.nuget.org/api/v2/package/System.Diagnostics.TraceSource/4.0.0- beta-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Diagnostics.Trac ing' 13292ms
GET https://www.nuget.org/api/v2/package/System.Diagnostics.Tracing/4.0.20-bet a-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Globalization' 1 9465ms
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.IO' 19470ms
GET https://www.nuget.org/api/v2/package/System.Globalization/4.0.10-beta-2310 9
GET https://www.nuget.org/api/v2/package/System.IO/4.0.10-beta-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Linq' 19565ms
GET https://www.nuget.org/api/v2/package/System.Linq/4.0.0-beta-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Net.Primitives' 19698ms
GET https://www.nuget.org/api/v2/package/System.Net.Primitives/4.0.10-beta-231 09
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Runtime.Extensio ns' 19800ms
GET https://www.nuget.org/api/v2/package/System.Runtime.Extensions/4.0.10-beta -23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Runtime.InteropS ervices' 19925ms
GET https://www.nuget.org/api/v2/package/System.Runtime.InteropServices/4.0.20 -beta-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Text.Encoding' 2 0453ms
GET https://www.nuget.org/api/v2/package/System.Text.Encoding/4.0.10-beta-2310 9
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Threading' 26963 ms
GET https://www.nuget.org/api/v2/package/System.Threading/4.0.10-beta-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Threading.Tasks' 26978ms
GET https://www.nuget.org/api/v2/package/System.Threading.Tasks/4.0.10-beta-23 109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Threading.Thread ' 27015ms
GET https://www.nuget.org/api/v2/package/System.Threading.Thread/4.0.0-beta-23 109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Threading.Thread Pool' 27098ms
GET https://www.nuget.org/api/v2/package/System.Threading.ThreadPool/4.0.10-be ta-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.FilePr oviders.Physical' 27151ms
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.FileProviders.Physic al/1.0.0-beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Hostin g.Abstractions' 27215ms
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Hosting.Abstractions /1.0.0-beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Hostin g.Server.Abstractions' 33445ms
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Hosting.Server.Abstr actions/1.0.0-beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Http.E xtensions' 39957ms
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Http' 39959ms
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Http.Extensions/1.0. 0-beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Con figuration' 46470ms
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Http/1.0.0-beta6
GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration/1.0 .0-beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Con figuration.CommandLine' 46530ms
GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Com mandLine/1.0.0-beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Con figuration.EnvironmentVariables' 46598ms
GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Env ironmentVariables/1.0.0-beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Con figuration.Ini' 46660ms
GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Ini /1.0.0-beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Dep endencyInjection' 46730ms
GET https://www.nuget.org/api/v2/package/Microsoft.Framework.DependencyInjecti on/1.0.0-beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Log ging' 46798ms
GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Logging/1.0.0-bet a6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Newtonsoft.Json' 46998m s
GET https://www.nuget.org/api/v2/package/Newtonsoft.Json/6.0.6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Console' 47455ms
GET https://www.nuget.org/api/v2/package/System.Console/4.0.0-beta-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Diagno stics.Abstractions' 47488ms
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Diagnostics.Abstract ions/1.0.0-beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.WebUti lities' 48433ms
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.WebUtilities/1.0.0-b eta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Opt ionsModel' 48497ms
GET https://www.nuget.org/api/v2/package/Microsoft.Framework.OptionsModel/1.0. 0-beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Web Encoders.Core' 48558ms
GET https://www.nuget.org/api/v2/package/Microsoft.Framework.WebEncoders.Core/ 1.0.0-beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Log ging.Abstractions' 49423ms
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Reflection.Exten sions' 49439ms
GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Logging.Abstracti ons/1.0.0-beta6
GET https://www.nuget.org/api/v2/package/System.Reflection.Extensions/4.0.0-be ta-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Loader .IIS.Interop' 49483ms
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Loader.IIS.Interop/1 .0.0-beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Loader .IIS' 49558ms
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Loader.IIS/1.0.0-bet a6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Net.Http.Head ers' 37533ms
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Net.Http.Serv er' 37540ms
GET https://www.nuget.org/api/v2/package/Microsoft.Net.Http.Headers/1.0.0-beta 6
GET https://www.nuget.org/api/v2/package/Microsoft.Net.Http.Server/1.0.0-beta6
OK https://www.nuget.org/api/v2/package/Microsoft.Framework.Runtime.Abstractio ns/1.0.0-beta6 37604ms
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Reflection'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.ComponentModel'
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Security.Claims' 37643ms
GET https://www.nuget.org/api/v2/package/System.Security.Claims/4.0.0-beta-231 09
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.FilePr oviders.Abstractions' 44000ms
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.FileProviders.Abstra ctions/1.0.0-beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Web Encoders' 44008ms
GET https://www.nuget.org/api/v2/package/Microsoft.Framework.WebEncoders/1.0.0 -beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Runtime' 44067ms
GET https://www.nuget.org/api/v2/package/System.Runtime/4.0.20-beta-23109
OK https://www.nuget.org/api/v2/package/System.Collections/4.0.10-beta-23109 5 0007ms
OK https://www.nuget.org/api/v2/package/System.Diagnostics.Debug/4.0.10-beta-2 3109 50463ms
GET https://www.nuget.org/api/v2/package/System.Runtime/4.0.0-beta-23109
OK https://www.nuget.org/api/v2/package/System.Diagnostics.TraceSource/4.0.0-b eta-23109 56871ms
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Resources.Resou rceManager'
OK https://www.nuget.org/api/v2/package/System.Diagnostics.Tracing/4.0.20-beta -23109 56753ms
OK https://www.nuget.org/api/v2/package/System.Globalization/4.0.10-beta-23109 57058ms
OK https://www.nuget.org/api/v2/package/System.IO/4.0.10-beta-23109 57535ms
GET https://www.nuget.org/api/v2/package/System.Text.Encoding/4.0.0-beta-23109
GET https://www.nuget.org/api/v2/package/System.Threading.Tasks/4.0.0-beta-231 09
OK https://www.nuget.org/api/v2/package/System.Linq/4.0.0-beta-23109 63955ms
OK https://www.nuget.org/api/v2/package/System.Runtime.Extensions/4.0.10-beta- 23109 64713ms
OK https://www.nuget.org/api/v2/package/System.Net.Primitives/4.0.10-beta-2310 9 64814ms
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Private.Network ing'
OK https://www.nuget.org/api/v2/package/System.Runtime.InteropServices/4.0.20- beta-23109 65096ms
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Reflection.Prim itives'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Runtime.Handles '
OK https://www.nuget.org/api/v2/package/System.Text.Encoding/4.0.10-beta-23109 64584ms
OK https://www.nuget.org/api/v2/package/System.Threading/4.0.10-beta-23109 640 78ms
OK https://www.nuget.org/api/v2/package/System.Threading.Tasks/4.0.10-beta-231 09 70543ms
OK https://www.nuget.org/api/v2/package/System.Threading.Thread/4.0.0-beta-231 09 70522ms
OK https://www.nuget.org/api/v2/package/System.Threading.ThreadPool/4.0.10-bet a-23109 70450ms
OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.FileProviders.Physica l/1.0.0-beta6 76377ms
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Collections.Con current'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.IO.FileSystem.W atcher'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.IO.FileSystem'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.IO.FileSystem.P rimitives'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Text.RegularExp ressions'
OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Hosting.Abstractions/ 1.0.0-beta6 70119ms
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Http. Abstractions'
OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Http.Extensions/1.0.0 -beta6 63588ms
OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Hosting.Server.Abstra ctions/1.0.0-beta6 77090ms
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Featu reModel'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Co nfiguration.Abstractions'
OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Http/1.0.0-beta6 6410 1ms
OK https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration/1.0. 0-beta6 70066ms
OK https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Comm andLine/1.0.0-beta6 70017ms
OK https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Envi ronmentVariables/1.0.0-beta6 69970ms
OK https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Ini/ 1.0.0-beta6 69924ms
OK https://www.nuget.org/api/v2/package/Microsoft.Framework.DependencyInjectio n/1.0.0-beta6 75824ms
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.De pendencyInjection.Abstractions'
OK https://www.nuget.org/api/v2/package/Microsoft.Framework.Logging/1.0.0-beta 6 75774ms
OK https://www.nuget.org/api/v2/package/Newtonsoft.Json/6.0.6 75624ms
OK https://www.nuget.org/api/v2/package/System.Console/4.0.0-beta-23109 75622m s
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Text.Encoding.E xtensions'
OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Diagnostics.Abstracti ons/1.0.0-beta6 80604ms
OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.WebUtilities/1.0.0-be ta6 81094ms
OK https://www.nuget.org/api/v2/package/Microsoft.Framework.OptionsModel/1.0.0 -beta6 81056ms
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Co nfiguration.Binder'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Linq.Expression s'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Reflection.Type Extensions'
OK https://www.nuget.org/api/v2/package/Microsoft.Framework.WebEncoders.Core/1 .0.0-beta6 81021ms
OK https://www.nuget.org/api/v2/package/Microsoft.Framework.Logging.Abstractio ns/1.0.0-beta6 80598ms
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Reflection' 9253 6ms
OK https://www.nuget.org/api/v2/package/System.Reflection.Extensions/4.0.0-bet a-23109 93617ms
OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Loader.IIS.Interop/1. 0.0-beta6 93576ms
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.ComponentModel' 92577ms
GET https://www.nuget.org/api/v2/package/System.Reflection/4.0.10-beta-23109
GET https://www.nuget.org/api/v2/package/System.Reflection/4.0.0-beta-23109
GET https://www.nuget.org/api/v2/package/System.ComponentModel/4.0.0-beta-2310 9
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.Ne t.Http.Server/1.0.0-beta6
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/Microsoft.Net.Http.Server/1.0.0-beta6
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Secur ity.Claims/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Security.Claims/4.0.0-beta-231 09
OK https://www.nuget.org/api/v2/package/Microsoft.AspNet.Loader.IIS/1.0.0-beta 6 105969ms
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.DataP rotection.Abstractions'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Win32.Regist ry'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Diagnostics.Pro cess'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Net.NetworkInfo rmation'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Security.Princi pal.Windows'
GET https://www.nuget.org/api/v2/package/System.Runtime.InteropServices/4.0.0- beta-23109
OK https://www.nuget.org/api/v2/package/Microsoft.Net.Http.Headers/1.0.0-beta6 105136ms
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Diagnostics.Con tracts'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Globalization.E xtensions'
OK https://www.nuget.org/api/v2/package/Microsoft.Framework.WebEncoders/1.0.0- beta6 98647ms
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.As pNet.FileProviders.Abstractions/1.0.0-beta6
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.FileProviders.Abstra ctions/1.0.0-beta6
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Runti me/4.0.20-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Runtime/4.0.20-beta-23109
OK https://www.nuget.org/api/v2/package/Microsoft.Net.Http.Server/1.0.0-beta6 6517ms
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Net.WebSocke ts'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Win32.Primit ives'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Security.Crypto graphy.X509Certificates'
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Threading.Overl apped'
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Resources.Resour ceManager' 92099ms
GET https://www.nuget.org/api/v2/package/System.Resources.ResourceManager/4.0. 0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Runti me/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Runtime/4.0.0-beta-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Private.Networki ng' 83578ms
GET https://www.nuget.org/api/v2/package/System.Private.Networking/4.0.0-beta- 23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Reflection.Primi tives' 89581ms
GET https://www.nuget.org/api/v2/package/System.Reflection.Primitives/4.0.0-be ta-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Threading.Overla pped' 13126ms
GET https://www.nuget.org/api/v2/package/System.Threading.Overlapped/4.0.0-bet a-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Security.Cryptog raphy.X509Certificates' 13199ms
GET https://www.nuget.org/api/v2/package/System.Security.Cryptography.X509Cert ificates/4.0.0-beta-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Win32.Primiti ves' 13284ms
GET https://www.nuget.org/api/v2/package/Microsoft.Win32.Primitives/4.0.0-beta -23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Text. Encoding/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Text.Encoding/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Threa ding.Tasks/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Threading.Tasks/4.0.0-beta-231 09
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Net.WebSocket s' 19003ms
GET https://www.nuget.org/api/v2/package/Microsoft.Net.WebSockets/1.0.0-beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Globalization.Ex tensions' 25479ms
GET https://www.nuget.org/api/v2/package/System.Globalization.Extensions/4.0.0 -beta-23109
Warning: FindPackagesById: System.Runtime.Handles
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/FindPackagesById()?id='System.Runtime.Handles '
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Diagnostics.Cont racts' 32492ms
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Security.Princip al.Windows' 32512ms
GET https://www.nuget.org/api/v2/package/System.Diagnostics.Contracts/4.0.0-be ta-23109
GET https://www.nuget.org/api/v2/package/System.Security.Principal.Windows/4.0 .0-beta-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Collections.Conc urrent' 85573ms
GET https://www.nuget.org/api/v2/package/System.Collections.Concurrent/4.0.10- beta-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.IO.FileSystem.Wa tcher' 85636ms
GET https://www.nuget.org/api/v2/package/System.IO.FileSystem.Watcher/4.0.0-be ta-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.IO.FileSystem' 8 5712ms
GET https://www.nuget.org/api/v2/package/System.IO.FileSystem/4.0.0-beta-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.IO.FileSystem.Pr imitives' 85778ms
GET https://www.nuget.org/api/v2/package/System.IO.FileSystem.Primitives/4.0.0 -beta-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Text.RegularExpr essions' 85854ms
GET https://www.nuget.org/api/v2/package/System.Text.RegularExpressions/4.0.10 -beta-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Http.A bstractions' 92060ms
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Http.Abstractions/1. 0.0-beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.Featur eModel' 85093ms
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.FeatureModel/1.0.0-b eta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Con figuration.Abstractions' 85136ms
GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Abs tractions/1.0.0-beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Dep endencyInjection.Abstractions' 73174ms
GET https://www.nuget.org/api/v2/package/Microsoft.Framework.DependencyInjecti on.Abstractions/1.0.0-beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Text.Encoding.Ex tensions' 72734ms
GET https://www.nuget.org/api/v2/package/System.Text.Encoding.Extensions/4.0.1 0-beta-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Framework.Con figuration.Binder' 72513ms
GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Bin der/1.0.0-beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Linq.Expressions ' 72528ms
GET https://www.nuget.org/api/v2/package/System.Linq.Expressions/4.0.10-beta-2 3109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Reflection.TypeE xtensions' 72580ms
GET https://www.nuget.org/api/v2/package/System.Reflection.TypeExtensions/4.0. 0-beta-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.AspNet.DataPr otection.Abstractions' 46857ms
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.DataProtection.Abstr actions/1.0.0-beta6
OK https://www.nuget.org/api/v2/FindPackagesById()?id='Microsoft.Win32.Registr y' 46938ms
GET https://www.nuget.org/api/v2/package/Microsoft.Win32.Registry/4.0.0-beta-2 3109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Diagnostics.Proc ess' 53040ms
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Net.NetworkInfor mation' 53045ms
GET https://www.nuget.org/api/v2/package/System.Diagnostics.Process/4.0.0-beta -23109
GET https://www.nuget.org/api/v2/package/System.Net.NetworkInformation/4.0.10- beta-23109
OK https://www.nuget.org/api/v2/FindPackagesById()?id='System.Runtime.Handles' 21101ms
GET https://www.nuget.org/api/v2/package/System.Runtime.Handles/4.0.0-beta-231 09
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Refle ction/4.0.10-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Reflection/4.0.10-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Refle ction/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Reflection/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Compo nentModel/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.ComponentModel/4.0.0-beta-2310 9
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Secur ity.Claims/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Security.Claims/4.0.0-beta-231 09
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Runti me.InteropServices/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Runtime.InteropServices/4.0.0- beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.As pNet.FileProviders.Abstractions/1.0.0-beta6
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.FileProviders.Abstra ctions/1.0.0-beta6
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Runti me/4.0.20-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Runtime/4.0.20-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Resou rces.ResourceManager/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Resources.ResourceManager/4.0. 0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Runti me/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Runtime/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Priva te.Networking/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Private.Networking/4.0.0-beta- 23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Refle ction.Primitives/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Reflection.Primitives/4.0.0-be ta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Threa ding.Overlapped/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Threading.Overlapped/4.0.0-bet a-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Secur ity.Cryptography.X509Certificates/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Security.Cryptography.X509Cert ificates/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.Wi n32.Primitives/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/Microsoft.Win32.Primitives/4.0.0-beta -23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Text. Encoding/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Text.Encoding/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Threa ding.Tasks/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Threading.Tasks/4.0.0-beta-231 09
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.Ne t.WebSockets/1.0.0-beta6
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/Microsoft.Net.WebSockets/1.0.0-beta6
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Globalization.Extensions/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Globalization.Extensions/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Diagnostics.Contracts/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Diagnostics.Contracts/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Security.Principal.Windows/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Security.Principal.Windows/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Collections.Concurrent/4.0.10-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Collections.Concurrent/4.0.10-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.IO.FileSystem.Watcher/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.IO.FileSystem.Watcher/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.IO.FileSystem/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.IO.FileSystem/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.IO.FileSystem.Primitives/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.IO.FileSystem.Primitives/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Text.RegularExpressions/4.0.10-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Text.RegularExpressions/4.0.10-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.AspNet.Http.Abstractions/1.0.0-beta6
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.Http.Abstractions/1.0.0-beta6
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.AspNet.FeatureModel/1.0.0-beta6
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.FeatureModel/1.0.0-beta6
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Text.Encoding.Extensions/4.0.10-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Text.Encoding.Extensions/4.0.10-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Binder/1.0.0-beta6
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/Microsoft.Framework.Configuration.Binder/1.0.0-beta6
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Linq.Expressions/4.0.10-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Linq.Expressions/4.0.10-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Reflection.TypeExtensions/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Reflection.TypeExtensions/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta6
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta6
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.Win32.Registry/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/Microsoft.Win32.Registry/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Diagnostics.Process/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Diagnostics.Process/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Net.NetworkInformation/4.0.10-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Net.NetworkInformation/4.0.10-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Runtime.Handles/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Runtime.Handles/4.0.0-beta-23109

Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Reflection/4.0.10-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Reflection/4.0.10-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Reflection/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Reflection/4.0.0-beta-23109
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.ComponentModel/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.ComponentModel/4.0.0-beta-23109
Error: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Security.Claims/4.0.0-beta-23109
HTTP request timed out. Exiting.
Warning: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Runtime.InteropServices/4.0.0-beta-23109
HTTP request timed out. Retrying.
GET https://www.nuget.org/api/v2/package/System.Runtime.InteropServices/4.0.0-beta-23109
Error: DownloadPackageAsync: https://www.nuget.org/api/v2/package/Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta6

HTTP request timed out. Exiting.

System.Threading.Tasks.TaskCanceledException: A task was canceled.
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter1[System.Net.Http.HttpResponseMessage].GetResult () [0x00000] in <filename unknown>:0 at System.Net.Http.HttpClientHandler+<SendAsync>c__async0.MoveNext () [0x00000] in <filename unknown>:0 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.ConfiguredTaskAwaitable1+ConfiguredTaskAwaiter[System.Net.Http.HttpResponseMessage].GetResult () [0x00000] in :0
at System.Net.Http.HttpClient+c__async0.MoveNext () [0x00000] in :0
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter1[System.Net.Http.HttpResponseMessage].GetResult () [0x00000] in <filename unknown>:0 at Microsoft.Framework.PackageManager.Restore.NuGet.HttpSource+<GetAsync>d__8.MoveNext () [0x00000] in <filename unknown>:0 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter1[Microsoft.Framework.PackageManager.Restore.NuGet.HttpSourceResult].GetResult () [0x00000] in :0
at Microsoft.Framework.PackageManager.Restore.NuGet.PackageUtilities+d__1.MoveNext () [0x00000] in :0
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter1[Microsoft.Framework.PackageManager.Restore.NuGet.NupkgEntry].GetResult () [0x00000] in <filename unknown>:0 at Microsoft.Framework.PackageManager.Restore.NuGet.NuGetv2Feed+<OpenNupkgStreamAsync>d__29.MoveNext () [0x00000] in <filename unknown>:0 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter1[System.IO.Stream].GetResult () [0x00000] in :0
at Microsoft.Framework.PackageManager.Restore.NuGet.PackageUtilities+d__2.MoveNext () [0x00000] in :0
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter1[System.IO.Stream].GetResult () [0x00000] in <filename unknown>:0 at Microsoft.Framework.PackageManager.Restore.NuGet.NuGetv2Feed+<OpenNuspecStreamAsync>d__27.MoveNext () [0x00000] in <filename unknown>:0 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter1[System.IO.Stream].GetResult () [0x00000] in :0
at Microsoft.Framework.PackageManager.RemoteWalkProvider+d__7.MoveNext () [0x00000] in :0
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter1[System.Collections.Generic.IEnumerable1[Microsoft.Framework.Runtime.LibraryDependency]].GetResult () [0x00000] in :0
at Microsoft.Framework.PackageManager.RestoreOperations+d__5.MoveNext () [0x00000] in :0
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter1[Microsoft.Framework.PackageManager.GraphItem].GetResult () [0x00000] in <filename unknown>:0 at Microsoft.Framework.PackageManager.RestoreOperations+<CreateGraphNode>d__2.MoveNext () [0x00000] in <filename unknown>:0 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter1[Microsoft.Framework.PackageManager.GraphNode].GetResult () [0x00000] in :0
at Microsoft.Framework.PackageManager.RestoreOperations+d__2.MoveNext () [0x00000] in :0
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter1[Microsoft.Framework.PackageManager.GraphItem].GetResult () [0x00000] in <filename unknown>:0 at Microsoft.Framework.PackageManager.RestoreOperations+<CreateGraphNode>d__2.MoveNext () [0x00000] in <filename unknown>:0 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter1[Microsoft.Framework.PackageManager.GraphNode].GetResult () [0x00000] in :0
at Microsoft.Framework.PackageManager.RestoreOperations+d__2.MoveNext () [0x00000] in :0
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter1[Microsoft.Framework.PackageManager.GraphNode].GetResult () [0x00000] in <filename unknown>:0 at Microsoft.Framework.PackageManager.RestoreOperations+<CreateGraphNode>d__2.MoveNext () [0x00000] in <filename unknown>:0 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter1[Microsoft.Framework.PackageManager.GraphItem].GetResult () [0x00000] in :0
at Microsoft.Framework.PackageManager.RestoreOperations+d__2.MoveNext () [0x00000] in :0
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter1[Microsoft.Framework.PackageManager.GraphNode].GetResult () [0x00000] in <filename unknown>:0 at Microsoft.Framework.PackageManager.RestoreOperations+<CreateGraphNode>d__2.MoveNext () [0x00000] in <filename unknown>:0 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter1[Microsoft.Framework.PackageManager.Restore.NuGet.NupkgEntry].GetResult () [0x00000] in :0
at Microsoft.Framework.PackageManager.Restore.NuGet.NuGetv2Feed+d__29.MoveNext () [0x00000] in :0
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter1[System.IO.Stream].GetResult () [0x00000] in <filename unknown>:0 at Microsoft.Framework.PackageManager.Restore.NuGet.PackageUtilities+<OpenNuspecStreamFromNupkgAsync>d__2.MoveNext () [0x00000] in <filename unknown>:0 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter1[System.IO.Stream].GetResult () [0x00000] in :0
at Microsoft.Framework.PackageManager.Restore.NuGet.NuGetv2Feed+d__27.MoveNext () [0x00000] in :0
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter1[System.IO.Stream].GetResult () [0x00000] in <filename unknown>:0 at Microsoft.Framework.PackageManager.RemoteWalkProvider+<GetDependencies>d__7.MoveNext () [0x00000] in <filename unknown>:0 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter1[System.Collections.Generic.IEnumerable1[Microsoft.Framework.Runtime.LibraryDependency]].GetResult () [0x00000] in <filename unknown>:0 at Microsoft.Framework.PackageManager.RestoreOperations+<FindLibraryEntry>d__5.MoveNext () [0x00000] in <filename unknown>:0 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter1[Microsoft.Framework.PackageManager.GraphItem].GetResult () [0x00000] in :0
at Microsoft.Framework.PackageManager.RestoreOperations+d__2.MoveNext () [0x00000] in :0
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter1[Microsoft.Framework.PackageManager.GraphNode].GetResult () [0x00000] in <filename unknown>:0 at Microsoft.Framework.PackageManager.RestoreOperations+<CreateGraphNode>d__2.MoveNext () [0x00000] in <filename unknown>:0 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter1[Microsoft.Framework.PackageManager.GraphNode].GetResult () [0x00000] in :0
at Microsoft.Framework.PackageManager.RestoreOperations+d__2.MoveNext () [0x00000] in :0
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter1[Microsoft.Framework.PackageManager.GraphNode].GetResult () [0x00000] in <filename unknown>:0 at Microsoft.Framework.PackageManager.RestoreCommand+<CreateGraphNode>d__71.MoveNext () [0x00000] in <filename unknown>:0 --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0 at System.Runtime.CompilerServices.TaskAwaiter1[Microsoft.Framework.PackageManager.RestoreCommand+TargetContext[]].GetResult () [0x00000] in :0
at Microsoft.Framework.PackageManager.RestoreCommand+d__70.MoveNext () [0x00000] in :0
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter`1[System.Boolean].GetResult () [0x00000] in :0
at Microsoft.Framework.PackageManager.RestoreCommand+<>c__DisplayClass69_0+<b__1>d.MoveNext () [0x00000] in :0
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in :0
at System.Runtime.CompilerServices.TaskAwaiter.GetResult () [0x00000] in :0

at Microsoft.Framework.PackageManager.RestoreCommand+d__69.MoveNext () [0x00000] in :0

Restore failed
A task was canceled.

NuGet Config files used:
/root/.config/NuGet/NuGet.Config

Feeds used:
https://www.nuget.org/api/v2/
Error: DownloadPackageAsync: https://www.nuget.org/api/v2/package/System.Runtime/4.0.20-beta-23109
HTTP request timed out. Exiting.

Error - "executable file not found in $PATH" when running dockerfile

As I didn't find any instruction, I assumed that container should be run as a daemon. So, having pulled microsoft/aspnet container I ran sudo docker run microsoft/aspnet -d only to get executable file not found in $PATH error.

Are there any specific parameters that need to be passed?

Question - what docker container works for a MVC application after big rename

So, after the rename, I have been trying to get a very simple mvc application working in a docker container. Here is my project.json:

{
"dependencies": {
"Microsoft.AspNet.Server.IIS": "1.0.0-",
"Microsoft.AspNet.Diagnostics": "1.0.0-
",
"Microsoft.AspNet.Mvc": "6.0.0-",
"Microsoft.Framework.Logging.Console": "1.0.0-
",
"Microsoft.Framework.ConfigurationModel.Json": "1.0.0-",
"Kestrel": "1.0.0-
"
},
"commands": {
"web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5001",
"kestrel": "Microsoft.AspNet.Hosting --server Kestrel --server.urls http://localhost:5004"
},
"frameworks": {
"dnx451": {},
"dnxcore50": {}
}
}

I built a docker image using the following:

FROM microsoft/aspnet:nightly

COPY . /app

WORKDIR /app

RUN ["kpm", "restore"]

EXPOSE 5004

ENTRYPOINT ["dnx", ".", "kestrel"]

When built, here's the dnvm list:

root@a9b8056a2ee4:/app# dnvm list

Active Version Runtime Location Alias


  • 1.0.0-beta4-11351 mono /opt/dnx/runtimes default

I am able to restore and execute (dnx .) the application on my local (windows sever) development platform. But in a docker container, I cannot get it to run. It fails, with the same error reported in:

aspnet/DataProtection#70

This issue is marked as a duplicate of:

aspnet/DataProtection#68

And (even though it is a bit unclear), this issue suggests that the issue may be fixed in mono 4.1 (ish).

The docker nightly uses a mono 3.12 build. If this issue is fixed in mono 4+, does that mean that for any software developed based on the big rename, a new docker container will be required?

Or is it the case that this issue is independent of the docker image itself. It all depends on when the fixes are put in place that the docker image will pull in when when it is being built.

Either way - can you let me know when a image will be available that I cant use to run the asp.net 5 samples I am creating?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.