Code Monkey home page Code Monkey logo

dotnet-docker's Introduction

Featured Repos

About

.NET is a general purpose development platform maintained by Microsoft and the .NET community on GitHub. It is cross-platform, supports Windows, macOS, and Linux, and can be used in device, cloud, and embedded/IoT scenarios.

.NET has several capabilities that make development productive, including automatic memory management, (runtime) generic types, reflection, asynchronous constructs, concurrency, and native interop. Millions of developers take advantage of these capabilities to efficiently build high-quality applications.

You can use C# or F# to write .NET apps.

  • C# is powerful, type-safe, and object-oriented while retaining the expressiveness and elegance of C-style languages. Anyone familiar with C and similar languages will find it straightforward to write in C#.
  • F# is a cross-platform, open-source, functional programming language for .NET. It also includes object-oriented and imperative programming.

.NET is open source (MIT and Apache 2 licenses) and was contributed to the .NET Foundation by Microsoft in 2014. It can be freely adopted by individuals and companies, including for personal, academic or commercial purposes. Multiple companies use .NET as part of apps, tools, new platforms and hosting services.

You are invited to contribute new features, fixes, or updates, large or small; we are always thrilled to receive pull requests, and do our best to process them as fast as we can.

https://docs.microsoft.com/dotnet/core/

Watch discussions for Docker-related .NET announcements.

New: Ubuntu Chiseled Images

Ubuntu Chiseled .NET images are a type of "distroless" container image that contain only the minimal set of packages .NET needs, with everything else removed. These images offer dramatically smaller deployment sizes and attack surface by including only the minimal set of packages required to run .NET applications.

Please see the Ubuntu Chiseled + .NET documentation page for more info.

Usage

The .NET Docker samples show various ways to use .NET and Docker together. See Building Docker Images for .NET Applications to learn more.

Container sample: Run a simple application

You can quickly run a container with a pre-built .NET Docker image, based on the .NET console sample.

Type the following command to run a sample console application:

docker run --rm mcr.microsoft.com/dotnet/samples

Container sample: Run a web application

You can quickly run a container with a pre-built .NET Docker image, based on the ASP.NET Core sample.

Type the following command to run a sample web application:

docker run -it --rm -p 8000:8080 --name aspnetcore_sample mcr.microsoft.com/dotnet/samples:aspnetapp

After the application starts, navigate to http://localhost:8000 in your web browser. You can also view the ASP.NET Core site running in the container from another machine with a local IP address such as http://192.168.1.18:8000.

Note: ASP.NET Core apps (in official images) listen to port 8080 by default, starting with .NET 8. The -p argument in these examples maps host port 8000 to container port 8080 (host:container mapping). The container will not be accessible without this mapping. ASP.NET Core can be configured to listen on a different or additional port.

See Hosting ASP.NET Core Images with Docker over HTTPS to use HTTPS with this image.

Image Variants

.NET container images have several variants that offer different combinations of flexibility and deployment size. The Image Variants documentation contains a summary of the image variants and their use-cases.

Related Repositories

.NET:

.NET Framework:

Support

Lifecycle

Image Update Policy

  • We update supported .NET images within 12 hours of any updates to their base images (e.g. debian:bookworm-slim, windows/nanoserver:ltsc2022, etc.).
  • We re-build all .NET images as part of releasing new versions of .NET including new major/minor versions and servicing.
  • Distroless images such as Ubuntu Chiseled have no base image, and as such will only be updated with .NET releases and CVE fixes as described below.

CVE Update Policy

.NET container images are regularly monitored for the presence of CVEs. A given image will be rebuilt to pick up fixes for a CVE when:

  • We detect the image contains a CVE with a CVSS score of "Critical"
  • AND the CVE is in a package that is added in our Dockerfile layers (meaning the CVE is in a package we explicitly install or any transitive dependencies of those packages)
  • AND there is a CVE fix for the package available in the affected base image's package repository.

Feedback

License

dotnet-docker's People

Contributors

adityapatwardhan avatar ahmetb avatar anmenaga avatar daxian-dbw avatar dependabot[bot] avatar dotnet-bot avatar dotnet-docker-bot avatar dotnet-maestro-bot avatar friism avatar hongbo2014 avatar jander-msft avatar joperezr avatar kelltrick avatar kendrahavens avatar kkeirstead avatar lbussell avatar mbrown555 avatar michaelsimons avatar mthalman avatar naamunds avatar rakeshsinghranchi avatar ravimeda avatar richlander avatar rjmholt avatar seeminglyscience avatar spboyer avatar v-hongbl avatar vascofernandes avatar vivmishra avatar wiktork 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

dotnet-docker's Issues

Issue when pulling base docker image

Hi,

I am not sure if this a local issue for myself or something larger. When pulling the latest image from DockerHub for microsoft/dotnet I receive the following issue.

Am I missing something?

Thanks,

Example

$ docker pull microsoft/dotnet
Using default tag: latest
latest: Pulling from microsoft/dotnet

d89e1bee20d9: Pull complete
9e0bc8a71bde: Pull complete
27aa681c95e5: Pull complete
a3ed95caeb02: Pull complete
81a56d4235fc: Pull complete
37b228997dc8: Pull complete
4920b6adeb72: Pull complete
Digest: sha256:c6a0887f45714b800fa5208234eac091101842a4a210b7dac2a66b7929063081
Status: Downloaded newer image for microsoft/dotnet:latest

$ docker run -t -i microsoft/dotnet
root@bb68b5ae6796:/# dotnet
dotnet: lttng-ust-comm.c:1446: lttng_ust_init: Assertion `!ret' failed.
Aborted

My Environment

  • OSX 10.11.3
  • Docker version 1.10.0, build 590d5108
  • docker-machine version 0.6.0, build e27fb87
  • Virtual Box 5.0.14 r105127

Missing 1.0.0-sdk tag

It looks like there is no 1.0.0-sdk tag.

$ docker run -it  microsoft/dotnet:1.0.0-sdk sh
Unable to find image 'microsoft/dotnet:1.0.0-sdk' locally
Pulling repository docker.io/microsoft/dotnet
docker: Tag 1.0.0-sdk not found in repository docker.io/microsoft/dotnet.

How to determine why a container segfaults?

I'm running a ASP.NET Core application in a docker container, and once in a while it segfaults (and because of restart always, restarts).

Since i'm quite interested to know why it segfaults, because it looks random, I want to know if there is a way to capture the core dump (if any)? No stack trace so it must be outside the managed code is my guess.

docker logs record only this:

info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2] Request finished in 0.6902ms 302
Segmentation fault (core dumped)
info: Microsoft.EntityFrameworkCore.Storage.Internal.RelationalCommandBuilderFactory[1]

Which of course is far from useful :)

I've seen this with dotnet:1.0.0-core and preview2 onbuild images (only 2 I used for production testing), running a ASP.Net core 1.0.0 application.

dotnet restore hangs out when building a Dockerfile targeting a DigitalOcean docker machine

I have a docker machine, created on DigitalOcean, running Docker v1.11.2.

On this machine, I am trying to build a docker image.
The Dockerfile is extremely simple:

FROM microsoft/dotnet:onbuild
RUN echo 'Setup Done'

Based on the onbuils hooks, the dotnet restore command is executed.
Even though the project.json file is almost empty, and therefore the command doesn't have anything to restore, the build of the Docker file hangs.

Here is the source of the project.json

{
  "dependencies": {},  

  "frameworks": {
    "netcoreapp1.0": {
      "imports": [        
        "dnxcore50"        
      ]
    }
  }
}

And here is the output of the docker build command:

ending build context to Docker daemon 5.632 kB
Step 1 : FROM microsoft/dotnet:onbuild
# Executing 2 build triggers...
Step 1 : COPY . /dotnetapp
Step 1 : RUN dotnet restore
 ---> Running in 791300cc1f7e
log  : Restoring packages for /dotnetapp/project.json...
info : Committing restore...
log  : Writing lock file to disk. Path: /dotnetapp/project.lock.json
log  : /dotnetapp/project.json
log  : Restore completed in 4012ms.

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

Feeds used:
    https://api.nuget.org/v3/index.json

Once it outputs the above info, it doesn't do anything else... and there seems to be no network nor CPU activity specific to the docker process.

If I run the same build command targeting a local docker machine , running Docker v1.10.3, this works.

Start aspnet rc2 with docker container on localhost:5000 not working

Hey,
i try to start a web Application aspnet rc2 with docker container, i write in my DockerfIle
FROM microsoft/dotnet:onbuild

and i run the following commands :

$ docker build -t my-dotnet-app .
$ docker run -it --rm --name my-running-app my-dotnet-app

The docker container work perfectly and i see :
Project dotnetapp (.NETCoreApp,Version=v1.0) will be compiled because expected outputs are missing
Compiling dotnetapp for .NETCoreApp,Version=v1.0


Compilation succeeded.
    0 Warning(s)
    0 Error(s)

Time elapsed 00:00:07.5362630


info: Microsoft.Extensions.DependencyInjection.DataProtectionServices[0]
      User profile is available. Using '/root/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest.
Hosting environment: Production
Content root path: /dotnetapp
Now listening on: http://localhost:5000
Application started. Press Ctrl+C to shut down.

But i try to acces on http://localhost:5000 and the url not working:

ERR_CONNECTION_REFUSED

Thanks.

Create Alpine-based dotnet images

Alpine is a small footprint distro that is gaining wide adoption in Official images. Prereq is to get Alpine support for the dotnet runtime, libraries, and CLI.

No way to get npm/nodejs installed on the microsoft/dotnet:1.0.0-preview1 image

Previous images I used (the dnx based stuff), didn't include npm nor node but with following tweaks it could be included. (aspnet needs npm these days)

RUN apt-get -qq update && apt-get -qqy --no-install-recommends install \
    git \
    unzip


RUN curl -sL https://deb.nodesource.com/setup_5.x |  bash -
RUN apt-get install -y nodejs

This doesn't work any longer with microsoft/dotnet:1.0.0-preview1
Can you please point out what's the easiest way to get npm/nodejs up and running in an image meant for apsnet core clr usage?

thx.
paul.

docker logs not capturing Kestrel output

I am trying to configure docker to capture the default ConsoleLogger from Kestrel. When i run the process with -d, I do not see any log messages, i see the standard 'startup' message:

[ec2-user@ip-172-17-45-127 ~]$ docker logs da278803df90
Project MyApp.Web.Core (.NETStandard,Version=v1.6) was previously compiled. Skipping compilation.
Project MyApp.Web (.NETCoreApp,Version=v1.0) was previously compiled. Skipping compilation.
Microsoft.Extensions.Configuration.ConfigurationRoot  <-- Console.WriteLine(config)
Hosting environment: Development
Content root path: /
Now listening on: http://0.0.0.0:5000
Application started. Press Ctrl+C to shut down.

But when requests are made, there are no messages like I get when running the process without docker or with -it

UPDATE: Log messages from ConsoleLogger do not show messages even when running from
docker run -it -P /bin/sh

Dockerfile should trigger the building of the local package cache.

With the introduction of the offline feature, the dotnet CLI builds a local package cache on first use. The dotnet Dockerfile should trigger this to happen. This takes some time therefore it will be a savings for all users of the image. Additionally having the package cache in the base image will save disc space for scenarios in which base image is used multiple times on the same machine as the base layer will be shared.

Minimal runtime dependencies should be captured in a --slim variant

NAME
--slim variant for dotnet cli apps

SYNOPSIS
Provide the smallest possible base image for any .NET Core app to run in.

DESCRIPTION
Developers can use dotnet publish and dotnet compile --native to encapsulate runtime dependencies that can then be COPY'd to a minimal-footprint image (i.e. excludes dotnet cli toolchain). Yet there are Linux packages that are needed for any .NET Core app to run; for example, ICU). Are there other minimal dependencies that should be included?

Last layer "GUID" does not have a base layer reference

I am trying to create a custom docker image using the dockerfile as shown

FROM microsoft/dotnet:0.0.1-alpha-onbuild

RUN mkdir -p /dotnetapp
WORKDIR /dotnetapp

ENTRYPOINT ["dotnet", "run"]

ONBUILD COPY . /dotnetapp
ONBUILD RUN dotnet restore

i get the error Last layer "91f7f9444ee1305921aa584bb4806c40bcece5c618f83ac383e105b23bdb6aad" does not have a base layer reference

I am trying to build the image in windows server 2016 TP5 on Azure

Any help is much apprciated

Thanks

NuGet push

This is more of a question/discussion.

In a CI scenario where this Docker image is used to build, test and deploy a NuGet package, how would one go about the third step -- deploy to a NuGet repository?

In the previous Mono-based Docker image (ASP.NET RC1) we had nuget cli included in the image, so one could do nuget push.

With this new image, I see no way to push to a NuGet repository through dotnet cli, nor do I see nuget cli being included.

Looking around, I can't even find if nuget is ported to CoreCLR. If it isn't, then the only option left is to build a derivative Docker image which includes nuget CLI, which means also including Mono -- seems like a departure from the clean CoreCLR-only approach.

I think in an ideal world, either dotnet cli will provide a push action to deploy to NuGet repositories, or nuget cli would be ported to CoreCLR. If not, this Docker image is only half-way there as it relates to a CI scenario, which would be one of the best selling points of using Docker to begin with.

I'd appreciate anyone's thoughts on this.

llvm repo is down which prevents microsoft/dotnet image from building.

The llvm repo was taken down unexpectedly and there is no immediate signs of it coming back soon. The microsoft/dotnet repo uses this to get the liblldb-3.6 package. This package is only used if you try to use the sos plugin for lldb. It is not a critical dependency and has been argued that it should be an optional dependency. As a result the Dockerfile is failing to build. Additionally if you pull the latest image, you will get errors when running apt-get update because this repo is registered in the image yet is unavailable.

`latest` image freezes immediately after running `dotnet new`

Hi. I ran microsoft/dotnet:latest image to give a try on dotnet commands and found the image seem somehow wrong.

Repro:

$ docker run -it microsoft/dotnet:latest
# mkdir hello_world
root@880ccf5e3177:/# cd hello_world/
root@880ccf5e3177:/hello_world# dotnet new
Created new C# project in /hello_world.
^C^C

Issue: Created new C# project in /hello_world. line doesn't return and no further operation can be done (whole container freezes). Also, even if you try docker kill XXXXXXXX to force-kill frozen container, the container cannot be killed (only one workaround is to restart docker-daemon itself).

Env: I tested both on Linux host and Mac OS X(docker-machine+VMware Fusion) hosts and confirmed the same behavior.

Linux env:

$ docker version
Client:
 Version:      1.9.1
 API version:  1.21
 Go version:   go1.4.2
 Git commit:   a34a1d5
 Built:        Fri Nov 20 12:59:02 UTC 2015
 OS/Arch:      linux/amd64

Server:
 Version:      1.9.1
 API version:  1.21
 Go version:   go1.4.2
 Git commit:   a34a1d5
 Built:        Fri Nov 20 12:59:02 UTC 2015
 OS/Arch:      linux/amd64

OS X env:

$ docker version
Client:
 Version:      1.9.1
 API version:  1.21
 Go version:   go1.5.1
 Git commit:   a34a1d5
 Built:        Sat Nov 21 00:49:19 UTC 2015
 OS/Arch:      darwin/amd64

Server:
 Version:      1.9.1
 API version:  1.21
 Go version:   go1.4.3
 Git commit:   a34a1d5
 Built:        Fri Nov 20 17:56:04 UTC 2015
 OS/Arch:      linux/amd64

Could anybody reproduce this?

FYI: current latest means https://hub.docker.com/r/microsoft/dotnet/builds/btl9c2jpeyehe89ivzdvfcr/ this image.

Seg Fault running dotnet restore Linux

I have run into an issue where dotnet restore is experiencing a seg fault. I am running it on a shared runner that gitlab provides. I found an open issue on dotnet/cli where someone describes a fix. Although I don't have direct access to change the version of libcurl3 described in the previously linked issue. I believe the runner is a similar Linux-based environment as described in the issue as well. It just started failing when the last docker image was pushed 10 days ago. Any thoughts?

Full error readout below:

gitlab-ci-multi-runner 1.2.0 (3a4fcd4)
Using Docker executor with image microsoft/dotnet:latest ...
Pulling docker image microsoft/dotnet:latest ...
Running on runner-8a2f473d-project-921303-concurrent-0 via runner-8a2f473d-machine-1466388649-b5231c62-digital-ocean-4gb...
Cloning repository...
Cloning into '/builds'...
Checking out 960946f1 as hotfix/fix-breaking-ci...
$ cd $CI_PROJECT_DIR/server
$ dotnet restore
log  : Restoring packages for /builds/project.json...
log  : Restoring packages for /builds/project.json...
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.authentication.cookies/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication.cookies/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication.facebook/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.authentication.facebook/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.authentication.google/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication.google/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.authentication.twitter/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication.twitter/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authorization/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.cors/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.authorization/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.cors/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.dataprotection.extensions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.dataprotection.extensions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.diagnostics/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.diagnostics/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.diagnostics.entityframeworkcore/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.diagnostics.entityframeworkcore/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.hosting/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.hosting/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.http/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.http/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.identity/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.identity.entityframeworkcore/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.identity.entityframeworkcore/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.mvc/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.mvc.taghelpers/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.identity/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.server.iisintegration/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.taghelpers/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.server.iisintegration/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.server.kestrel/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.staticfiles/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.server.kestrel/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.staticfiles/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.dotnet.cli.utils/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.cli.utils/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.projectmodel/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.dotnet.projectmodel/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.entityframeworkcore.sqlite/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.entityframeworkcore.sqlite/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.entityframeworkcore.tools/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.entityframeworkcore.tools/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.configuration.commandline/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.commandline/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.configuration.fileproviderextensions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileproviderextensions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.configuration.json/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.json/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.configuration.usersecrets/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.usersecrets/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.logging/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.logging.console/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.environmentvariables/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.configuration.environmentvariables/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.console/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.logging.debug/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.platformabstractions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.platformabstractions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.debug/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.runtime.serialization.json/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.runtime.serialization.json/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.entityframeworkcore.sqlserver/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.entityframeworkcore.sqlserver/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.configuration.fileextensions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileextensions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnet.webapi.client/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/fluentassertions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.netcore.app/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.netcore.platforms/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.win32.registry/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/newtonsoft.json/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/fluentassertions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.webapi.client/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.diagnostics.tracesource/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/newtonsoft.json/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/dotnet-test-xunit/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/dotnet-test-xunit/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracesource/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/moq.netcore/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/moq.netcore/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/xunit/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/xunit/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.http/index.json 277ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.diagnostics/index.json 312ms
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.diagnostics/1.0.0-rc2-final/microsoft.aspnetcore.diagnostics.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.http/1.0.0-rc2-final/microsoft.aspnetcore.http.1.0.0-rc2-final.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/system.runtime.serialization.json/index.json 325ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileproviderextensions/index.json 344ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.diagnostics.entityframeworkcore/index.json 386ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry/index.json 314ms
info :   OK https://api.nuget.org/v3-flatcontainer/newtonsoft.json/index.json 311ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracesource/index.json 305ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.hosting/index.json 385ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.entityframeworkcore.tools/index.json 353ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/index.json 318ms
info :   NotFound https://api.nuget.org/v3-flatcontainer/moq.netcore/index.json 305ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging/index.json 342ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.commandline/index.json 351ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.environmentvariables/index.json 352ms
info :   OK https://api.nuget.org/v3-flatcontainer/xunit/index.json 307ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.json/index.json 348ms
info :   OK https://api.nuget.org/v3-flatcontainer/dotnet-test-xunit/index.json 315ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.platformabstractions/index.json 336ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.console/index.json 339ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.debug/index.json 340ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authorization/index.json 416ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.entityframeworkcore.sqlite/index.json 365ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.cors/index.json 416ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.dataprotection.extensions/index.json 414ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication.twitter/index.json 418ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication.facebook/index.json 432ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.identity/index.json 392ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication.google/index.json 431ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.server.iisintegration/index.json 386ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.webapi.client/index.json 333ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.usersecrets/index.json 356ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.entityframeworkcore.sqlserver/index.json 340ms
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileproviderextensions/1.0.0-rc1-final/microsoft.extensions.configuration.fileproviderextensions.1.0.0-rc1-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.runtime.serialization.json/4.0.1/system.runtime.serialization.json.4.0.1.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileextensions/index.json 339ms
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.diagnostics.entityframeworkcore/1.0.0-rc2-final/microsoft.aspnetcore.diagnostics.entityframeworkcore.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.3/newtonsoft.json.8.0.3.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.entityframeworkcore.tools/1.0.0-preview1-final/microsoft.entityframeworkcore.tools.1.0.0-preview1-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.hosting/1.0.0-rc2-final/microsoft.aspnetcore.hosting.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging/1.0.0-rc2-final/microsoft.extensions.logging.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.commandline/1.0.0-rc2-final/microsoft.extensions.configuration.commandline.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/xunit/2.1.0/xunit.2.1.0.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.json/1.0.0-rc2-final/microsoft.extensions.configuration.json.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.environmentvariables/1.0.0-rc2-final/microsoft.extensions.configuration.environmentvariables.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.console/1.0.0-rc2-final/microsoft.extensions.logging.console.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.platformabstractions/1.0.0-rc1-final/microsoft.extensions.platformabstractions.1.0.0-rc1-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.entityframeworkcore.sqlite/1.0.0-rc2-final/microsoft.entityframeworkcore.sqlite.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.cors/1.0.0-rc2-final/microsoft.aspnetcore.cors.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authorization/1.0.0-rc2-final/microsoft.aspnetcore.authorization.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.debug/1.0.0-rc2-final/microsoft.extensions.logging.debug.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.dataprotection.extensions/1.0.0-rc2-final/microsoft.aspnetcore.dataprotection.extensions.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication.twitter/1.0.0-rc2-final/microsoft.aspnetcore.authentication.twitter.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication.facebook/1.0.0-rc2-final/microsoft.aspnetcore.authentication.facebook.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.identity/1.0.0-rc2-final/microsoft.aspnetcore.identity.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.server.iisintegration/1.0.0-rc2-final/microsoft.aspnetcore.server.iisintegration.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication.google/1.0.0-rc2-final/microsoft.aspnetcore.authentication.google.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.usersecrets/1.0.0-rc2-final/microsoft.extensions.configuration.usersecrets.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.entityframeworkcore.sqlserver/1.0.0-rc2-final/microsoft.entityframeworkcore.sqlserver.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.webapi.client/5.2.3/microsoft.aspnet.webapi.client.5.2.3.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc/index.json 449ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.server.kestrel/index.json 444ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.staticfiles/index.json 436ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication.cookies/index.json 496ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.identity.entityframeworkcore/index.json 454ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.taghelpers/index.json 450ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.cli.utils/index.json 436ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.projectmodel/index.json 435ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app/index.json 394ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.hosting/1.0.0-rc2-final/microsoft.aspnetcore.hosting.1.0.0-rc2-final.nupkg 51ms
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileextensions/1.0.0-rc2-final/microsoft.extensions.configuration.fileextensions.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc/1.0.0-rc2-final/microsoft.aspnetcore.mvc.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.server.kestrel/1.0.0-rc2-final/microsoft.aspnetcore.server.kestrel.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication.cookies/1.0.0-rc2-final/microsoft.aspnetcore.authentication.cookies.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.identity.entityframeworkcore/1.0.0-rc2-final/microsoft.aspnetcore.identity.entityframeworkcore.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.taghelpers/1.0.0-rc2-final/microsoft.aspnetcore.mvc.taghelpers.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.staticfiles/1.0.0-rc2-final/microsoft.aspnetcore.staticfiles.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.cli.utils/1.0.0-preview1-002702/microsoft.dotnet.cli.utils.1.0.0-preview1-002702.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.projectmodel/1.0.0-rc2-002702/microsoft.dotnet.projectmodel.1.0.0-rc2-002702.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.console/1.0.0-rc2-final/microsoft.extensions.logging.console.1.0.0-rc2-final.nupkg 42ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.diagnostics/1.0.0-rc2-final/microsoft.aspnetcore.diagnostics.1.0.0-rc2-final.nupkg 110ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication.facebook/1.0.0-rc2-final/microsoft.aspnetcore.authentication.facebook.1.0.0-rc2-final.nupkg 39ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.identity/1.0.0-rc2-final/microsoft.aspnetcore.identity.1.0.0-rc2-final.nupkg 37ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.console/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.console/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.threading/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.diagnostics.stacktrace/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.threading/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.stacktrace/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.configuration.abstractions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.reflection.extensions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.reflection.extensions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.hosting.abstractions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.abstractions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.hosting.abstractions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.logging.abstractions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.hosting.server.abstractions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.abstractions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.hosting.server.abstractions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.http.extensions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.platformabstractions/1.0.0-rc2-final/microsoft.extensions.platformabstractions.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.http.extensions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.fileproviders.physical/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.fileproviders.physical/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.options/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.options/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.configuration/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.dependencyinjection/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.diagnostics.diagnosticsource/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.diagnosticsource/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.http/1.0.0-rc2-final/microsoft.aspnetcore.http.1.0.0-rc2-final.nupkg 412ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.authentication.cookies/index.json 943ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.diagnostics.entityframeworkcore/1.0.0-rc2-final/microsoft.aspnetcore.diagnostics.entityframeworkcore.1.0.0-rc2-final.nupkg 379ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.entityframeworkcore.tools/1.0.0-preview1-final/microsoft.entityframeworkcore.tools.1.0.0-preview1-final.nupkg 375ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication.twitter/1.0.0-rc2-final/microsoft.aspnetcore.authentication.twitter.1.0.0-rc2-final.nupkg 339ms
info :   OK https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.3/newtonsoft.json.8.0.3.nupkg 377ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileproviderextensions/1.0.0-rc1-final/microsoft.extensions.configuration.fileproviderextensions.1.0.0-rc1-final.nupkg 383ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging/1.0.0-rc2-final/microsoft.extensions.logging.1.0.0-rc2-final.nupkg 373ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.runtime.serialization.json/4.0.1/system.runtime.serialization.json.4.0.1.nupkg 383ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.commandline/1.0.0-rc2-final/microsoft.extensions.configuration.commandline.1.0.0-rc2-final.nupkg 373ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.platformabstractions/1.0.0-rc1-final/microsoft.extensions.platformabstractions.1.0.0-rc1-final.nupkg 351ms
info :   OK https://api.nuget.org/v3-flatcontainer/xunit/2.1.0/xunit.2.1.0.nupkg 358ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.environmentvariables/1.0.0-rc2-final/microsoft.extensions.configuration.environmentvariables.1.0.0-rc2-final.nupkg 355ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authorization/1.0.0-rc2-final/microsoft.aspnetcore.authorization.1.0.0-rc2-final.nupkg 347ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.debug/1.0.0-rc2-final/microsoft.extensions.logging.debug.1.0.0-rc2-final.nupkg 346ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.dataprotection.extensions/1.0.0-rc2-final/microsoft.aspnetcore.dataprotection.extensions.1.0.0-rc2-final.nupkg 344ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.entityframeworkcore.sqlite/1.0.0-rc2-final/microsoft.entityframeworkcore.sqlite.1.0.0-rc2-final.nupkg 351ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.cors/1.0.0-rc2-final/microsoft.aspnetcore.cors.1.0.0-rc2-final.nupkg 349ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.json/1.0.0-rc2-final/microsoft.extensions.configuration.json.1.0.0-rc2-final.nupkg 357ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication.google/1.0.0-rc2-final/microsoft.aspnetcore.authentication.google.1.0.0-rc2-final.nupkg 336ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.entityframeworkcore.sqlserver/1.0.0-rc2-final/microsoft.entityframeworkcore.sqlserver.1.0.0-rc2-final.nupkg 333ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.usersecrets/1.0.0-rc2-final/microsoft.extensions.configuration.usersecrets.1.0.0-rc2-final.nupkg 335ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.webapi.client/5.2.3/microsoft.aspnet.webapi.client.5.2.3.nupkg 331ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.server.kestrel/1.0.0-rc2-final/microsoft.aspnetcore.server.kestrel.1.0.0-rc2-final.nupkg 324ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc/1.0.0-rc2-final/microsoft.aspnetcore.mvc.1.0.0-rc2-final.nupkg 325ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.taghelpers/1.0.0-rc2-final/microsoft.aspnetcore.mvc.taghelpers.1.0.0-rc2-final.nupkg 319ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication.cookies/1.0.0-rc2-final/microsoft.aspnetcore.authentication.cookies.1.0.0-rc2-final.nupkg 323ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.projectmodel/1.0.0-rc2-002702/microsoft.dotnet.projectmodel.1.0.0-rc2-002702.nupkg 315ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.identity.entityframeworkcore/1.0.0-rc2-final/microsoft.aspnetcore.identity.entityframeworkcore.1.0.0-rc2-final.nupkg 321ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.staticfiles/1.0.0-rc2-final/microsoft.aspnetcore.staticfiles.1.0.0-rc2-final.nupkg 318ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.cli.utils/1.0.0-preview1-002702/microsoft.dotnet.cli.utils.1.0.0-preview1-002702.nupkg 317ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.authentication.twitter/index.json 815ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.authentication.google/index.json 827ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.dataprotection.extensions/index.json 811ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.cors/index.json 813ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileextensions/1.0.0-rc2-final/microsoft.extensions.configuration.fileextensions.1.0.0-rc2-final.nupkg 330ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.authorization/index.json 814ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.server.iisintegration/1.0.0-rc2-final/microsoft.aspnetcore.server.iisintegration.1.0.0-rc2-final.nupkg 342ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.authentication.facebook/index.json 829ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.http/index.json 792ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.hosting/index.json 796ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.mvc/index.json 788ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.identity/index.json 786ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.mvc.taghelpers/index.json 786ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.identity.entityframeworkcore/index.json 790ms
info :   NotFound https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/xunit/index.json 713ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.server.iisintegration/index.json 784ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/dotnet-test-xunit/index.json 722ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.dependencyinjection.abstractions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection.abstractions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnet.fileproviders.physical/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.fileproviders.physical/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileextensions/1.0.0-rc1-final/microsoft.extensions.configuration.fileextensions.1.0.0-rc1-final.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/xunit.core/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/xunit.core/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.diagnostics.debug/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.authentication.oauth/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/xunit.assert/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication.oauth/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/xunit.assert/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.appcontext/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.appcontext/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.dynamic.runtime/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.dynamic.runtime/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.io.filesystem/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.io.filesystem/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.runtime.serialization.primitives/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.runtime.serialization.primitives/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.security.claims/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.collections/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.security.claims/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.collections/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.componentmodel/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.componentmodel/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.io/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.io/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.linq/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.dataprotection/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.dataprotection/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.linq/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.reflection/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.reflection/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.runtime/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.runtime/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.runtime.extensions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.runtime.extensions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.threading.tasks/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.threading.tasks/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/dotnet-test-xunit/1.0.0-rc3-000000-01/dotnet-test-xunit.1.0.0-rc3-000000-01.nupkg
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.server.kestrel/index.json 947ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.configuration.commandline/index.json 927ms
info :   NotFound https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.configuration.fileproviderextensions/index.json 925ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.configuration.usersecrets/index.json 925ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.configuration.environmentvariables/index.json 932ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.logging.console/index.json 923ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.logging.debug/index.json 917ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.configuration.json/index.json 924ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.runtime.serialization.json/index.json 914ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.netcore.app/index.json 903ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.entityframeworkcore.sqlserver/index.json 912ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.netcore.platforms/index.json 903ms
info :   NotFound https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/fluentassertions/index.json 906ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/moq.netcore/index.json 891ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.abstractions/index.json 211ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.abstractions/index.json 207ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.logging/index.json 931ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.platformabstractions/index.json 921ms
info :   NotFound https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnet.webapi.client/index.json 913ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.configuration.fileextensions/index.json 914ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.win32.registry/index.json 909ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/newtonsoft.json/index.json 909ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.diagnostics.tracesource/index.json 907ms
info :   OK https://api.nuget.org/v3-flatcontainer/fluentassertions/index.json 914ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.stacktrace/index.json 224ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration/index.json 205ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.threading/index.json 230ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.staticfiles/index.json 972ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.console/index.json 233ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.diagnostics/index.json 999ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.dotnet.projectmodel/index.json 962ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.security.principal.windows/index.json
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.diagnostics.entityframeworkcore/index.json 1004ms
info :   GET https://api.nuget.org/v3-flatcontainer/system.security.principal.windows/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.mvc.apiexplorer/index.json
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.entityframeworkcore.tools/index.json 967ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.reflection.extensions/index.json 240ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.hosting.abstractions/index.json 239ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.entityframeworkcore.sqlite/index.json 969ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.dotnet.cli.utils/index.json 977ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/index.json 133ms
info :   OK https://api.nuget.org/v3-flatcontainer/xunit.core/index.json 140ms
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.apiexplorer/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.mvc.cors/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.cors/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.mvc.dataannotations/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.dataannotations/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.mvc.formatters.json/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.formatters.json/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.platformabstractions/1.0.0-rc2-final/microsoft.extensions.platformabstractions.1.0.0-rc2-final.nupkg 232ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.mvc.localization/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.httpoverrides/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.localization/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.mvc.razor/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.razor/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.mvc.viewfeatures/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.viewfeatures/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication.oauth/index.json 136ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.caching.memory/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.http.extensions/index.json 242ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.hosting.server.abstractions/index.json 249ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.options/index.json 241ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.diagnosticsource/index.json 236ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.io/index.json 98ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection.abstractions/index.json 171ms
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.httpoverrides/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.caching.memory/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.abstractions/1.0.0-rc2-final/microsoft.extensions.configuration.abstractions.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.abstractions/1.0.0-rc1-final/microsoft.extensions.configuration.abstractions.1.0.0-rc1-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.stacktrace/4.0.1-rc2-24027/system.diagnostics.stacktrace.4.0.1-rc2-24027.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.abstractions/1.0.0-rc2-final/microsoft.extensions.logging.abstractions.1.0.0-rc2-final.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.fileproviders.physical/index.json 183ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileextensions/1.0.0-rc1-final/microsoft.extensions.configuration.fileextensions.1.0.0-rc1-final.nupkg 182ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.componentmodel/index.json 126ms
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration/1.0.0-rc2-final/microsoft.extensions.configuration.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/fluentassertions/4.6.3/fluentassertions.4.6.3.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.threading/4.0.11-rc2-24027/system.threading.4.0.11-rc2-24027.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.console/4.0.0-rc2-24027/system.console.4.0.0-rc2-24027.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.http.abstractions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.http.abstractions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.webutilities/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.webutilities/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.objectpool/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.objectpool/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.net.http.headers/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.net.http.headers/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.buffers/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.authentication/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.buffers/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.webencoders/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.entityframeworkcore.relational/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.webencoders/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.entityframeworkcore.relational/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.reflection.extensions/4.0.1-rc2-24027/system.reflection.extensions.4.0.1-rc2-24027.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/4.0.11-rc2-24027/system.diagnostics.debug.4.0.11-rc2-24027.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/system.runtime.serialization.primitives/index.json 184ms
info :   GET https://api.nuget.org/v3-flatcontainer/xunit.core/2.1.0/xunit.core.2.1.0.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.hosting.abstractions/1.0.0-rc2-final/microsoft.aspnetcore.hosting.abstractions.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.http.extensions/1.0.0-rc2-final/microsoft.aspnetcore.http.extensions.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.hosting.server.abstractions/1.0.0-rc2-final/microsoft.aspnetcore.hosting.server.abstractions.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.options/1.0.0-rc2-final/microsoft.extensions.options.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication.oauth/1.0.0-rc2-final/microsoft.aspnetcore.authentication.oauth.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.diagnosticsource/4.0.0-rc2-24027/system.diagnostics.diagnosticsource.4.0.0-rc2-24027.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/system.appcontext/index.json 207ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.dynamic.runtime/index.json 202ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.io.filesystem/index.json 200ms
info :   GET https://api.nuget.org/v3-flatcontainer/system.io/4.0.11-beta-23516/system.io.4.0.11-beta-23516.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/system.security.claims/index.json 194ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.collections/index.json 194ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.dataprotection/index.json 172ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.linq/index.json 172ms
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.fileproviders.physical/1.0.0-rc1-final/microsoft.aspnet.fileproviders.physical.1.0.0-rc1-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection.abstractions/1.0.0-rc2-final/microsoft.extensions.dependencyinjection.abstractions.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.componentmodel/4.0.1-beta-23516/system.componentmodel.4.0.1-beta-23516.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.stacktrace/4.0.1-rc2-24027/system.diagnostics.stacktrace.4.0.1-rc2-24027.nupkg 70ms
info :   OK https://api.nuget.org/v3-flatcontainer/xunit.assert/index.json 235ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.reflection/index.json 177ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.console/4.0.0-rc2-24027/system.console.4.0.0-rc2-24027.nupkg 58ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.fileproviders.abstractions/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/system.runtime/index.json 179ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.runtime.extensions/index.json 179ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.netcore.app/1.0.0/microsoft.netcore.app.1.0.0.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.fileproviders.abstractions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.netcore.platforms/1.0.1/microsoft.netcore.platforms.1.0.1.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/moq.netcore/4.4.0-beta8/moq.netcore.4.4.0-beta8.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.win32.registry/4.0.0/microsoft.win32.registry.4.0.0.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.diagnostics.tracesource/4.0.0/system.diagnostics.tracesource.4.0.0.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.localization/index.json 133ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.httpoverrides/index.json 123ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/dotnet-test-xunit/1.0.0-rc3-000000-01/dotnet-test-xunit.1.0.0-rc3-000000-01.nupkg 197ms
info :   GET https://api.nuget.org/v3-flatcontainer/system.runtime.serialization.primitives/4.1.1-rc2-24027/system.runtime.serialization.primitives.4.1.1-rc2-24027.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.appcontext/4.1.0-rc2-24027/system.appcontext.4.1.0-rc2-24027.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.dynamic.runtime/4.0.11-rc2-24027/system.dynamic.runtime.4.0.11-rc2-24027.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.io.filesystem/4.0.1-rc2-24027/system.io.filesystem.4.0.1-rc2-24027.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.security.claims/4.0.1-rc2-24027/system.security.claims.4.0.1-rc2-24027.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.dataprotection/1.0.0-rc2-final/microsoft.aspnetcore.dataprotection.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.collections/4.0.11-beta-23516/system.collections.4.0.11-beta-23516.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.linq/4.0.1-beta-23516/system.linq.4.0.1-beta-23516.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/xunit.assert/2.1.0/xunit.assert.2.1.0.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.appcontext/4.0.0/system.appcontext.4.0.0.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.diagnostics.process/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.process/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/nuget.versioning/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/nuget.versioning/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/nuget.packaging/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/nuget.packaging/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.diagnostics.abstractions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/nuget.frameworks/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/nuget.frameworks/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.diagnostics.abstractions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/nuget.projectmodel/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/nuget.projectmodel/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.reflection/4.1.0-beta-23225/system.reflection.4.1.0-beta-23225.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.runtime/4.0.21-beta-23516/system.runtime.4.0.21-beta-23516.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.runtime.extensions/4.0.11-beta-23516/system.runtime.extensions.4.0.11-beta-23516.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/system.threading.tasks/index.json 247ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.threading/4.0.11-rc2-24027/system.threading.4.0.11-rc2-24027.nupkg 142ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.diagnosticsource/4.0.0-rc2-24027/system.diagnostics.diagnosticsource.4.0.0-rc2-24027.nupkg 96ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.security.principal.windows/index.json 199ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.reflection.extensions/4.0.1-rc2-24027/system.reflection.extensions.4.0.1-rc2-24027.nupkg 121ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/4.0.11-rc2-24027/system.diagnostics.debug.4.0.11-rc2-24027.nupkg 116ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.netcore.app/1.0.0/microsoft.netcore.app.1.0.0.nupkg 75ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.apiexplorer/index.json 201ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.razor/index.json 191ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.formatters.json/index.json 194ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.netcore.platforms/1.0.1/microsoft.netcore.platforms.1.0.1.nupkg 69ms
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.localization/1.0.0-rc2-final/microsoft.aspnetcore.mvc.localization.1.0.0-rc2-final.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.cors/index.json 206ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.dataannotations/index.json 206ms
info :   GET https://api.nuget.org/v3-flatcontainer/system.linq/4.1.0-rc2-24027/system.linq.4.1.0-rc2-24027.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.resources.resourcemanager/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.httpoverrides/1.0.0-rc2-final/microsoft.aspnetcore.httpoverrides.1.0.0-rc2-final.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.abstractions/1.0.0-rc1-final/microsoft.extensions.configuration.abstractions.1.0.0-rc1-final.nupkg 190ms
info :   GET https://api.nuget.org/v3-flatcontainer/system.resources.resourcemanager/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/system.runtime.serialization.primitives/4.1.1-rc2-24027/system.runtime.serialization.primitives.4.1.1-rc2-24027.nupkg 83ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.appcontext/4.1.0-rc2-24027/system.appcontext.4.1.0-rc2-24027.nupkg 81ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.caching.memory/index.json 211ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.abstractions/1.0.0-rc2-final/microsoft.extensions.configuration.abstractions.1.0.0-rc2-final.nupkg 198ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.abstractions/1.0.0-rc2-final/microsoft.extensions.logging.abstractions.1.0.0-rc2-final.nupkg 189ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.dynamic.runtime/4.0.11-rc2-24027/system.dynamic.runtime.4.0.11-rc2-24027.nupkg 81ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.win32.registry/4.0.0/microsoft.win32.registry.4.0.0.nupkg 92ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.diagnostics.tracesource/4.0.0/system.diagnostics.tracesource.4.0.0.nupkg 91ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.fileproviders.physical/1.0.0-rc1-final/microsoft.aspnet.fileproviders.physical.1.0.0-rc1-final.nupkg 126ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.options/1.0.0-rc2-final/microsoft.extensions.options.1.0.0-rc2-final.nupkg 135ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection.abstractions/1.0.0-rc2-final/microsoft.extensions.dependencyinjection.abstractions.1.0.0-rc2-final.nupkg 124ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.io.filesystem/4.0.1-rc2-24027/system.io.filesystem.4.0.1-rc2-24027.nupkg 80ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.security.claims/4.0.1-rc2-24027/system.security.claims.4.0.1-rc2-24027.nupkg 79ms
info :   GET https://api.nuget.org/v3-flatcontainer/system.reflection/4.1.0-rc2-24027/system.reflection.4.1.0-rc2-24027.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/system.componentmodel/4.0.1-beta-23516/system.componentmodel.4.0.1-beta-23516.nupkg 124ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection/index.json 455ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.viewfeatures/index.json 222ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration/1.0.0-rc2-final/microsoft.extensions.configuration.1.0.0-rc2-final.nupkg 190ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.http.extensions/1.0.0-rc2-final/microsoft.aspnetcore.http.extensions.1.0.0-rc2-final.nupkg 142ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.reflection.typeextensions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.reflection.typeextensions/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/fluentassertions/4.6.3/fluentassertions.4.6.3.nupkg 186ms
info :   GET https://api.nuget.org/v3-flatcontainer/system.runtime.extensions/4.1.0-rc2-24027/system.runtime.extensions.4.1.0-rc2-24027.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.componentmodel.typeconverter/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.typeconverter/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.private.datacontractserialization/index.json
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/moq.netcore/4.4.0-beta8/moq.netcore.4.4.0-beta8.nupkg 113ms
info :   GET https://api.nuget.org/v3-flatcontainer/system.private.datacontractserialization/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.runtime.interopservices/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.threading.tasks/4.0.11-beta-23516/system.threading.tasks.4.0.11-beta-23516.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.razor/1.0.0-rc2-final/microsoft.aspnetcore.mvc.razor.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.runtime.interopservices/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.runtime.interopservices.runtimeinformation/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.runtime.interopservices.runtimeinformation/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.security.principal.windows/4.0.0-rc2-24027/system.security.principal.windows.4.0.0-rc2-24027.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.apiexplorer/1.0.0-rc2-final/microsoft.aspnetcore.mvc.apiexplorer.1.0.0-rc2-final.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.webutilities/index.json 215ms
info :   GET https://api.nuget.org/v3-flatcontainer/system.threading.tasks/4.0.11-rc2-24027/system.threading.tasks.4.0.11-rc2-24027.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.objectpool/index.json 220ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.entityframeworkcore.tools.cli/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.entityframeworkcore.tools.cli/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.net.http.headers/index.json 228ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.webencoders/index.json 218ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.entityframeworkcore.tools.core/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.entityframeworkcore.tools.core/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/xunit.core/2.1.0/xunit.core.2.1.0.nupkg 211ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.collections/4.0.11-beta-23516/system.collections.4.0.11-beta-23516.nupkg 145ms
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.formatters.json/1.0.0-rc2-final/microsoft.aspnetcore.mvc.formatters.json.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.cors/1.0.0-rc2-final/microsoft.aspnetcore.mvc.cors.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.dataannotations/1.0.0-rc2-final/microsoft.aspnetcore.mvc.dataannotations.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.caching.memory/1.0.0-rc2-final/microsoft.extensions.caching.memory.1.0.0-rc2-final.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.data.sqlite/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlite/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.primitives/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.primitives/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.viewfeatures/1.0.0-rc2-final/microsoft.aspnetcore.mvc.viewfeatures.1.0.0-rc2-final.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/libuv/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.hosting.abstractions/1.0.0-rc2-final/microsoft.aspnetcore.hosting.abstractions.1.0.0-rc2-final.nupkg 284ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.hosting.server.abstractions/1.0.0-rc2-final/microsoft.aspnetcore.hosting.server.abstractions.1.0.0-rc2-final.nupkg 280ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication.oauth/1.0.0-rc2-final/microsoft.aspnetcore.authentication.oauth.1.0.0-rc2-final.nupkg 279ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.io/4.0.11-beta-23516/system.io.4.0.11-beta-23516.nupkg 274ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.http.abstractions/index.json 318ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.data.sqlclient/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/system.buffers/index.json 310ms
info :   GET https://api.nuget.org/v3-flatcontainer/system.data.sqlclient/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/system.reflection/4.1.0-rc2-24027/system.reflection.4.1.0-rc2-24027.nupkg 150ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.runtime.extensions/4.1.0-rc2-24027/system.runtime.extensions.4.1.0-rc2-24027.nupkg 142ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication/index.json 316ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.linq/4.1.0-rc2-24027/system.linq.4.1.0-rc2-24027.nupkg 169ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.threading.thread/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection/1.0.0-rc2-final/microsoft.extensions.dependencyinjection.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/libuv/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/nuget.packaging/index.json 214ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.fileproviders.abstractions/index.json 249ms
info :   GET https://api.nuget.org/v3-flatcontainer/system.threading.thread/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/nuget.frameworks/index.json 209ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.codeanalysis.csharp/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.codeanalysis.csharp/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.collections/4.0.11-rc2-24027/system.collections.4.0.11-rc2-24027.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.codeanalysis.visualbasic/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.codeanalysis.visualbasic/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.io/4.1.0-rc2-24027/system.io.4.1.0-rc2-24027.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.csharp/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.csharp/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.netcore.dotnethostpolicy/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.netcore.dotnethostpolicy/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.netcore.runtime.coreclr/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.netcore.runtime.coreclr/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.visualbasic/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.visualbasic/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.webutilities/1.0.0-rc2-final/microsoft.aspnetcore.webutilities.1.0.0-rc2-final.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.dataprotection/1.0.0-rc2-final/microsoft.aspnetcore.dataprotection.1.0.0-rc2-final.nupkg 292ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/netstandard.library/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/netstandard.library/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.objectpool/1.0.0-rc2-final/microsoft.extensions.objectpool.1.0.0-rc2-final.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.collections.immutable/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.collections.immutable/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.net.http.headers/1.0.0-rc2-final/microsoft.net.http.headers.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.webencoders/1.0.0-rc2-final/microsoft.extensions.webencoders.1.0.0-rc2-final.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.componentmodel.annotations/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.annotations/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.globalization.extensions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.globalization.extensions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.io.filesystem.watcher/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.io.filesystem.watcher/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnet.fileproviders.abstractions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.fileproviders.abstractions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.collections.concurrent/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.io.memorymappedfiles/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.collections.concurrent/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.io.memorymappedfiles/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.io.unmanagedmemorystream/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.io.filesystem/4.0.1-beta-23516/system.io.filesystem.4.0.1-beta-23516.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.io.filesystem.primitives/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.io.filesystem.primitives/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.io.unmanagedmemorystream/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.linq.expressions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.text.regularexpressions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.text.regularexpressions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.linq.expressions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.threading/4.0.11-beta-23516/system.threading.4.0.11-beta-23516.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.linq.parallel/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.linq.parallel/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.componentmodel/4.0.1-rc2-24027/system.componentmodel.4.0.1-rc2-24027.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.linq.queryable/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.globalization/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.linq.queryable/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.globalization/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.net.nameresolution/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.net.nameresolution/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.net.requests/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.net.requests/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.net.security/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.net.security/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.net.webheadercollection/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/system.linq/4.0.1-beta-23516/system.linq.4.0.1-beta-23516.nupkg 430ms
info :   OK https://api.nuget.org/v3-flatcontainer/xunit.assert/2.1.0/xunit.assert.2.1.0.nupkg 427ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.process/index.json 420ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.reflection.typeextensions/index.json 354ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.entityframeworkcore.relational/index.json 517ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.logging.abstractions/index.json 832ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.diagnostics.stacktrace/index.json 837ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.configuration.abstractions/index.json 835ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.http.extensions/index.json 826ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.fileproviders.physical/index.json 825ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.options/index.json 824ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.hosting.server.abstractions/index.json 832ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.reflection.extensions/index.json 834ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.reflection/4.1.0-beta-23225/system.reflection.4.1.0-beta-23225.nupkg 410ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.authentication.oauth/index.json 730ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.runtime/4.0.21-beta-23516/system.runtime.4.0.21-beta-23516.nupkg 408ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.localization/1.0.0-rc2-final/microsoft.aspnetcore.mvc.localization.1.0.0-rc2-final.nupkg 389ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.configuration/index.json 824ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.threading.tasks/4.0.11-rc2-24027/system.threading.tasks.4.0.11-rc2-24027.nupkg 318ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.runtime.extensions/4.0.11-beta-23516/system.runtime.extensions.4.0.11-beta-23516.nupkg 404ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.dependencyinjection/index.json 823ms
info :   NotFound https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/xunit.core/index.json 743ms
info :   OK https://api.nuget.org/v3-flatcontainer/nuget.versioning/index.json 430ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.httpoverrides/1.0.0-rc2-final/microsoft.aspnetcore.httpoverrides.1.0.0-rc2-final.nupkg 382ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.hosting.abstractions/index.json 834ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.resources.resourcemanager/index.json 378ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.security.principal.windows/4.0.0-rc2-24027/system.security.principal.windows.4.0.0-rc2-24027.nupkg 341ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.threading/index.json 839ms
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.http.abstractions/1.0.0-rc2-final/microsoft.aspnetcore.http.abstractions.1.0.0-rc2-final.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.filesystemglobbing/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.filesystemglobbing/index.json
info :   CACHE https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.diagnostics.abstractions/index.json 443ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.private.datacontractserialization/index.json 373ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.threading.tasks/4.0.11-beta-23516/system.threading.tasks.4.0.11-beta-23516.nupkg 373ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.runtime.interopservices/index.json 372ms
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.authentication/1.0.0-rc2-final/microsoft.aspnetcore.authentication.1.0.0-rc2-final.nupkg
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.razor/1.0.0-rc2-final/microsoft.aspnetcore.mvc.razor.1.0.0-rc2-final.nupkg 373ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.entityframeworkcore.tools.core/index.json 338ms
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.fileproviders.abstractions/1.0.0-rc2-final/microsoft.extensions.fileproviders.abstractions.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.net.webheadercollection/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.cors/1.0.0-rc2-final/microsoft.aspnetcore.mvc.cors.1.0.0-rc2-final.nupkg 322ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.console/index.json 899ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.caching.memory/1.0.0-rc2-final/microsoft.extensions.caching.memory.1.0.0-rc2-final.nupkg 299ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.diagnostics.diagnosticsource/index.json 862ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.dependencyinjection.abstractions/index.json 802ms
info :   NotFound https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnet.fileproviders.physical/index.json 786ms
info :   NotFound https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/xunit.assert/index.json 773ms
info :   GET https://api.nuget.org/v3-flatcontainer/nuget.frameworks/3.5.0-beta-final/nuget.frameworks.3.5.0-beta-final.nupkg
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.appcontext/index.json 752ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.diagnostics.debug/index.json 780ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.dynamic.runtime/index.json 748ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.io.filesystem/index.json 745ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.numerics.vectors/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/nuget.projectmodel/index.json 460ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.runtime.serialization.primitives/index.json 743ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.typeconverter/index.json 405ms
info :   GET https://api.nuget.org/v3-flatcontainer/system.numerics.vectors/index.json
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.security.claims/index.json 746ms
info :   GET https://api.nuget.org/v3-flatcontainer/nuget.packaging/3.5.0-beta-final/nuget.packaging.3.5.0-beta-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.buffers/4.0.0-rc2-24027/system.buffers.4.0.0-rc2-24027.nupkg
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.componentmodel/index.json 741ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.runtime.interopservices.runtimeinformation/index.json 394ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.entityframeworkcore.tools.cli/index.json 364ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.formatters.json/1.0.0-rc2-final/microsoft.aspnetcore.mvc.formatters.json.1.0.0-rc2-final.nupkg 354ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.dataannotations/1.0.0-rc2-final/microsoft.aspnetcore.mvc.dataannotations.1.0.0-rc2-final.nupkg 325ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.collections/4.0.11-rc2-24027/system.collections.4.0.11-rc2-24027.nupkg 255ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.reflection.dispatchproxy/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.apiexplorer/1.0.0-rc2-final/microsoft.aspnetcore.mvc.apiexplorer.1.0.0-rc2-final.nupkg 387ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection/1.0.0-rc2-final/microsoft.extensions.dependencyinjection.1.0.0-rc2-final.nupkg 264ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.io/4.1.0-rc2-24027/system.io.4.1.0-rc2-24027.nupkg 251ms
info :   GET https://api.nuget.org/v3-flatcontainer/system.reflection.dispatchproxy/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.primitives/index.json 306ms
info :   OK https://api.nuget.org/v3-flatcontainer/libuv/index.json 295ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.data.sqlclient/index.json 291ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.threading.thread/index.json 287ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.reflection.metadata/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.reflection.metadata/index.json
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.collections/index.json 784ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.resources.reader/index.json
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.threading.tasks/index.json 748ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.io/index.json 764ms
info :   GET https://api.nuget.org/v3-flatcontainer/system.resources.reader/index.json
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.dataprotection/index.json 756ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.linq/index.json 766ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.reflection/index.json 750ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.runtime.loader/index.json
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.runtime.extensions/index.json 748ms
info :   GET https://api.nuget.org/v3-flatcontainer/system.runtime.loader/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.security.cryptography.algorithms/index.json
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.runtime/index.json 750ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.security.principal.windows/index.json 713ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.mvc.apiexplorer/index.json 711ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.mvc.cors/index.json 708ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.mvc.dataannotations/index.json 707ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.mvc.formatters.json/index.json 707ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.mvc.localization/index.json 705ms
info :   GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.algorithms/index.json
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.httpoverrides/index.json 709ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.mvc.razor/index.json 710ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.mvc.viewfeatures/index.json 709ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.security.cryptography.encoding/index.json
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.caching.memory/index.json 708ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.http.abstractions/index.json 661ms
info :   GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.encoding/index.json
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.webutilities/index.json 660ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.objectpool/index.json 659ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.net.http.headers/index.json 659ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.buffers/index.json 658ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.security.cryptography.primitives/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.primitives/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.security.cryptography.x509certificates/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.x509certificates/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.threading.tasks.dataflow/index.json
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.authentication/index.json 667ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.webencoders/index.json 655ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.entityframeworkcore.relational/index.json 654ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.fileproviders.abstractions/index.json 614ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.diagnostics.process/index.json 560ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.annotations/index.json 246ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.diagnostics.diagnosticsource/4.0.0/system.diagnostics.diagnosticsource.4.0.0.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.threading.tasks.dataflow/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.threading.tasks.extensions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.threading.tasks.extensions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.threading.tasks.parallel/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.threading.tasks.parallel/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.threading.threadpool/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.threading.threadpool/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.dynamic.runtime/4.0.11/system.dynamic.runtime.4.0.11.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.componentmodel/4.0.1/system.componentmodel.4.0.1.nupkg
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/nuget.versioning/index.json 588ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/nuget.packaging/index.json 587ms
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.entityframeworkcore.relational/1.0.0-rc2-final/microsoft.entityframeworkcore.relational.1.0.0-rc2-final.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.http.features/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.http.features/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.process/4.1.0-rc2-24027/system.diagnostics.process.4.1.0-rc2-24027.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/nuget.versioning/3.5.0-beta-final/nuget.versioning.3.5.0-beta-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.diagnostics.abstractions/1.0.0-rc2-final/microsoft.aspnetcore.diagnostics.abstractions.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/nuget.projectmodel/3.5.0-beta-final/nuget.projectmodel.3.5.0-beta-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.resources.resourcemanager/4.0.1-rc2-24027/system.resources.resourcemanager.4.0.1-rc2-24027.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.reflection.typeextensions/4.1.0-rc2-24027/system.reflection.typeextensions.4.1.0-rc2-24027.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.typeconverter/4.0.1-rc2-24027/system.componentmodel.typeconverter.4.0.1-rc2-24027.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.runtime.interopservices/4.1.0-rc2-24027/system.runtime.interopservices.4.1.0-rc2-24027.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.private.datacontractserialization/4.1.0/system.private.datacontractserialization.4.1.0.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.entityframeworkcore.tools.core/1.0.0-rc2-final/microsoft.entityframeworkcore.tools.core.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.runtime.interopservices.runtimeinformation/4.0.0-rc2-24027/system.runtime.interopservices.runtimeinformation.4.0.0-rc2-24027.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.mvc.core/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.entityframeworkcore.tools.cli/1.0.0-preview1-final/microsoft.entityframeworkcore.tools.cli.1.0.0-preview1-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.core/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.data.sqlclient/4.1.0-rc2-24027/system.data.sqlclient.4.1.0-rc2-24027.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.primitives/1.0.0-rc2-final/microsoft.extensions.primitives.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.primitives/1.0.0-rc1-final/microsoft.extensions.primitives.1.0.0-rc1-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.threading.thread/4.0.0-rc2-24027/system.threading.thread.4.0.0-rc2-24027.nupkg
info :   CACHE https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.console/index.json
info :   OK https://api.nuget.org/v3-flatcontainer/system.appcontext/4.0.0/system.appcontext.4.0.0.nupkg 641ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlite/index.json 457ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.viewfeatures/1.0.0-rc2-final/microsoft.aspnetcore.mvc.viewfeatures.1.0.0-rc2-final.nupkg 440ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.codeanalysis.csharp/index.json 411ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.codeanalysis.visualbasic/index.json 404ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.csharp/index.json 400ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.netcore.dotnethostpolicy/index.json 396ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.netcore.runtime.coreclr/index.json 382ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.visualbasic/index.json 369ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.webutilities/1.0.0-rc2-final/microsoft.aspnetcore.webutilities.1.0.0-rc2-final.nupkg 366ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.objectpool/1.0.0-rc2-final/microsoft.extensions.objectpool.1.0.0-rc2-final.nupkg 361ms
info :   OK https://api.nuget.org/v3-flatcontainer/netstandard.library/index.json 362ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.buffers/4.0.0/system.buffers.4.0.0.nupkg
info :   CACHE https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.authentication/index.json
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.resources.resourcemanager/index.json 602ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.diagnostics.process/4.1.0/system.diagnostics.process.4.1.0.nupkg
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.reflection.typeextensions/index.json 590ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.fileproviders.physical/index.json 1055ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.aspnetcore.diagnostics.abstractions/index.json 653ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/nuget.frameworks/index.json 652ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/nuget.projectmodel/index.json 644ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.componentmodel/4.0.1-rc2-24027/system.componentmodel.4.0.1-rc2-24027.nupkg 250ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.net.security/index.json 241ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.net.http.headers/1.0.0-rc2-final/microsoft.net.http.headers.1.0.0-rc2-final.nupkg 369ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.buffers/4.0.0-rc2-24027/system.buffers.4.0.0-rc2-24027.nupkg 175ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.globalization/index.json 249ms
info :   OK https://api.nuget.org/v3-flatcontainer/nuget.frameworks/3.5.0-beta-final/nuget.frameworks.3.5.0-beta-final.nupkg 190ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.net.nameresolution/index.json 248ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.diagnostics.diagnosticsource/4.0.0/system.diagnostics.diagnosticsource.4.0.0.nupkg 96ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.dynamic.runtime/4.0.11/system.dynamic.runtime.4.0.11.nupkg 80ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.componentmodel/4.0.1/system.componentmodel.4.0.1.nupkg 78ms
info :   OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.filesystemglobbing/index.json 216ms
info :   OK https://api.nuget.org/v3-flatcontainer/system.io.memorymappedfiles/index.json 321ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.reflection.typeextensions/4.1.0/system.reflection.typeextensions.4.1.0.nupkg
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.buffers/4.0.0/system.buffers.4.0.0.nupkg 35ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.diagnostics.process/4.1.0/system.diagnostics.process.4.1.0.nupkg 28ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.private.datacontractserialization/index.json 608ms
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.componentmodel.typeconverter/index.json 610ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.testing.abstractions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.diagnostics.debug/4.0.11/system.diagnostics.debug.4.0.11.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.testing.abstractions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.diagnostics.tracing/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/xunit.runner.reporters/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracing/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/xunit.runner.reporters/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.resources.resourcemanager/4.0.1/system.resources.resourcemanager.4.0.1.nupkg
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.reflection.typeextensions/4.1.0/system.reflection.typeextensions.4.1.0.nupkg 41ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.runtime/4.1.0/system.runtime.4.1.0.nupkg
info :   OK https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.runtime.interopservices/index.json 627ms
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.threading/4.0.11/system.threading.4.0.11.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/system.xml.xdocument/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/system.xml.xdocument/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.dependencymodel/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencymodel/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/nuget.runtimemodel/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/nuget.runtimemodel/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/newtonsoft.json/7.0.1/newtonsoft.json.7.0.1.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.fileproviders.physical/1.0.0-rc2-final/microsoft.extensions.fileproviders.physical.1.0.0-rc2-final.nupkg
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.extensions.caching.abstractions/index.json
info :   GET https://myget-2e16.kxcdn.com/artifacts/aspnetcirelease/nuget/v3/flatcontainer/microsoft.net.http/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.caching.abstractions/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.net.http/index.json
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlite/1.0.0-rc2-final/microsoft.data.sqlite.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.csharp/4.0.1-rc2-24027/microsoft.csharp.4.0.1-rc2-24027.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.globalization/4.0.11-rc2-24027/system.globalization.4.0.11-rc2-24027.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.filesystemglobbing/1.0.0-rc2-final/microsoft.extensions.filesystemglobbing.1.0.0-rc2-final.nupkg
info :   GET https://api.nuget.org/v3-flatcontainer/system.runtime/4.1.0-rc2-24027/system.runtime.4.1.0-rc2-24027.nupkg
/bin/bash: line 35:    10 Segmentation fault      (core dumped) dotnet restore

ERROR: Build failed: exit code 1

Create some pre-seeded docker images.

I would love to see a few docker images based on microsoft/dotnet that had their NuGet package cache preseeded with things like ASPNET Core, Entity Framework Core, etc. Initially, just one pre-seeded docker image with all of the Microsoft stuff would be a good base, though it would be neat if there were a few variations (maybe one with ASPNET Core but not EntityFramework Core).

Not only will this greatly improve dotnet restore times, it will also reduce the size of my images on disk since all of my dotnet apps will share a common base image with most of the packages restored so their size will be predominately my source and any third-party stuff I depended on.

Image appears to pin CPU

I was going through the .NET Core 1.0 walk-through on docker containers, and left this image running after having issued the commands (this is the full output of docker logs):

root@ff075d846319:/# mkdir helloworld
root@ff075d846319:/# cd helloworld/
root@ff075d846319:/helloworld# dotnet new
Created new C# project in /helloworld.

I came back after the weekend to find it had pinned the CPU at 100% full time since that command had been run. The dotnet process was Z, and couldn't be killed (SIGKILL/SIGTERM). I had to reboot the actual host to resolve the issue.

I don't know if there's any relevant logs that would help determine what the issue was, but I have the container still if someone can point me in the right direction...

So is this at 1.0, or 1.0 preview?

Looks like in all the hype either version numbers were not updated or version strings were selected that are confusing. If this is a release, why not use semantic versioning and update the patch or minor release version? using names like preview sounds a lot like a release candidate by any other name.

dotnet restore fails for non-root user on 1.0.0-preview2-sdk

If you attempt to run dotnet restore (or dotnet new) as a non-root user, the NuGet cache population fails because /tmp/NuGetScratch is owned by root. Upstream bug is here: NuGet/Home#2793.

Removing /tmp/NuGetScratch resolves the issue.

$ docker run -it --rm microsoft/dotnet:1.0.0-preview2-sdk
root@85fc27c5bede:/# useradd -d /opt/foobar -u 1000 -m -s /bin/bash foobar
root@85fc27c5bede:/# su - foobar
foobar@85fc27c5bede:~$ mkdir app
foobar@85fc27c5bede:~$ cd app
foobar@85fc27c5bede:~/app$ dotnet new

Welcome to .NET Core!
---------------------
Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet --help to see available commands or go to https://aka.ms/dotnet-cli-docs.
Telemetry
--------------
The .NET Core tools collect usage data in order to improve your experience. The data is anonymous and does not include commandline arguments. The data is collected by Microsoft and shared with the community.
You can opt out of telemetry by setting a DOTNET_CLI_TELEMETRY_OPTOUT environment variable to 1 using your favorite shell.
You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-telemetry.
Configuring...
-------------------
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.
Decompressing 100% 2118 ms
Expanding 100% 8398 ms
Failed to create prime the NuGet cache. restore failed with: 1
Created new C# project in /opt/foobar/app.

Update microsoft/aspnet-*-coreclr?

Now that this image is available, should we update microsoft/aspnet-*-coreclr images with this image?

I should've opened the issue on aspnet-docker but this seemed like a better place to discuss.

cc: @dleeapho @glennc

1.0.0-preview2-sdk Appears To Come With Wrong Version of Microsoft.NETCore.App

web_1 | Project MyProject (.NETCoreApp,Version=v1.0) was previously compiled. Skipping compilation.
web_1 | The specified framework 'Microsoft.NETCore.App', version '1.0.0-rc2-3002702' was not found.
web_1 | - Check application dependencies and target a framework version installed at:
web_1 | /usr/share/dotnet/shared/Microsoft.NETCore.App
web_1 | - The following versions are installed:
web_1 | 1.0.0
web_1 | - Alternatively, install the framework version '1.0.0-rc2-3002702'.

This is a project developed on Visual Studio 2015 on Windows and pulled into a container, when I run dotnet new it wants to use Microsoft.NETCore.App 1.0.0 that came with the container, but Visual Studio wants to use 1.0.0-rc2-3002702. Why the discrepancy?

Unfortunately it appears 1.0.0 takes precedence over 1.0.0-rc2-3002702 and the rc2 version will not be pulled during a dotnet restore.

error NU1001: The dependency Libuv >= 1.9.0-rc2-20901 could not be resolved

Hello. I have a problem on docker run. I'm receiving an error

error NU1001: The dependency Libuv >= 1.9.0-rc2-20901 could not be resolved. 

when doing dotnet run

Dockerfile

FROM microsoft/dotnet:latest

ENV STARTUP_PROJECT src/Monq.Core.Service.Identity

COPY global.json /app/
COPY NuGet.config /app/

COPY $STARTUP_PROJECT/project.json /app/$STARTUP_PROJECT/

WORKDIR /app/$STARTUP_PROJECT
RUN ["dotnet", "restore"]

COPY . /app

EXPOSE 5005
ENTRYPOINT ["dotnet", "run"]

parts of the project.json

"dependencies": {
    "Microsoft.NETCore.App": {
      "version": "1.0.0-rc2-3002702",
      "type": "platform"
    },
    "Microsoft.ApplicationInsights.AspNetCore": "1.0.0-rc2-final",
    "Microsoft.AspNetCore.Mvc": "1.0.0-rc2-final",
    "Microsoft.AspNetCore.Razor.Tools": {
      "version": "1.0.0-preview1-final",
      "type": "build"
    },
    "Microsoft.VisualStudio.Web.CodeGeneration.Tools": {
      "version": "1.0.0-preview1-final",
      "type": "build"
    },
    "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": {
      "version": "1.0.0-preview1-final",
      "type": "build"
    },
    "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
    "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
    "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-final",
    "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-final",
    "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-final",
    "Microsoft.Extensions.Logging": "1.0.0-rc2-final",
    "Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
    "Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-final",
    "Microsoft.EntityFrameworkCore": "1.0.0-rc2-final",
    "Microsoft.EntityFrameworkCore.Relational": "1.0.0-rc2-final",
    "Microsoft.EntityFrameworkCore.Tools": "1.0.0-preview1-final",
    "Microsoft.AspNetCore.DataProtection": "1.0.0-rc2-final",
    "Npgsql.EntityFrameworkCore.PostgreSQL": "1.0.0-rc2-release1",
    "IdentityServer4": "1.0.0-beta2-update1",
    "TwentyTwenty.IdentityServer4.EntityFrameworkCore": "0.9.10",
    "Monq.IdentityServer4.EntityFrameworkCore.Users": "1.0.0-alpha8",
    "Microsoft.AspNetCore.StaticFiles": "1.0.0-rc2-final"
  },
"frameworks": {
    "netcoreapp1.0": {
      "imports": [
        "dnxcore50",
        "portable-net45+win8"
      ]
    }
  },

It's falling down in at "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final" string.

Full dotnet run command output

Project Monq.Core.Service.Identity (.NETCoreApp,Version=v1.0) will be compiled because the version or bitness of the CLI changed since the last build
Compiling Monq.Core.Service.Identity for .NETCoreApp,Version=v1.0
/app/src/Monq.Core.Service.Identity/project.json(22,61): error NU1001: The dependency Libuv >= 1.9.0-rc2-20901 could not be resolved.
/app/src/Monq.Core.Service.Identity/project.json(13,57): error NU1001: The dependency Libuv >= 1.9.0-rc2-20901 could not be resolved.
/app/src/Monq.Core.Service.Identity/project.json(17,55): error NU1001: The dependency Libuv >= 1.9.0-rc2-20901 could not be resolved.

Compilation failed.
    0 Warning(s)
    3 Error(s)

Time elapsed 00:00:00.0544694

Update Dockerfile to utilize Debian package

Once dotnet/cli#2565 is fixed, the Dockerfile should be updated to utilize the CLI Debian package instead of extracting the tarball and manually installing the dependencies.

libuv is not included

dpkg -l | grep uv returns no results. When I try to run these https://github.com/davidfowl/dotnetcli-aspnet5 examples in the container I get this:

Unhandled Exception: System.AggregateException: One or more errors occurred. ---> System.DllNotFoundException: Unable to load DLL 'libuv': The specified module could not be found.
 (Exception from HRESULT: 0x8007007E)
   at Microsoft.AspNet.Server.Kestrel.Networking.Libuv.NativeMethods.uv_loop_size()
   at Microsoft.AspNet.Server.Kestrel.Networking.UvLoopHandle.Init(Libuv uv)
   at Microsoft.AspNet.Server.Kestrel.KestrelThread.ThreadStart(Object parameter)
   --- End of inner exception stack trace ---
   at System.Threading.Tasks.Task.Wait(Int32 millisecondsTimeout, CancellationToken cancellationToken)
   at Microsoft.AspNet.Server.Kestrel.KestrelEngine.Start(Int32 count)
   at Microsoft.AspNet.Server.Kestrel.KestrelServer.Start[TContext](IHttpApplication`1 application)
   at Microsoft.AspNet.Hosting.Internal.HostingEngine.Start()
   at Microsoft.AspNet.Hosting.WebApplication.Run(Type startupType, String[] args)
   at HelloMvc.Startup.Main(String[] args)

Use build triggers

In aspnet image we use build trigger such as:

image

In case one debian/mono repos get rebuilt (such as security update) we get rebuilt, too. Please consider enabling that for this repo as well (see Build Settings tab) @dleeapho

Cannot run "Hello World" example from main website

Hello,

I am trying to get started with .NET Core and though the Docker container would be great for providing me a consistent environment.

However, upon following the basic example described at https://dotnet.github.io/getting-started/#/docker , I get the following:

[erin@laptop ~]$ lsb_release -a
LSB Version:    :core-4.1-amd64:core-4.1-noarch:cxx-4.1-amd64:cxx-4.1-noarch:desktop-4.1-amd64:desktop-4.1-noarch:languages-4.1-amd64:languages-4.1-noarch:printing-4.1-amd64:printing-4.1-noarch
Distributor ID: Fedora
Description:    Fedora release 23 (Twenty Three)
Release:    23
Codename:   TwentyThree
[erin@laptop ~]$ docker --version
Docker version 1.11.1, build 5604cbe
[erin@laptop ~]$ docker pull microsoft/dotnet:latest
latest: Pulling from microsoft/dotnet
8b87079b7a06: Already exists 
a3ed95caeb02: Already exists 
1bb8eaf3d643: Already exists 
3e04171ce2e5: Already exists 
a5f69d4d0634: Already exists 
99b12dee501e: Already exists 
Digest: sha256:811023c416971e2107251dde64fa09af45cd1fd9490092e67a2739dd4dc9d633
Status: Image is up to date for microsoft/dotnet:latest
[erin@laptop ~]$ docker run -it --rm microsoft/dotnet:latest
root@2e10a62dc54b:/# mkdir hello_world && cd hello_world
root@2e10a62dc54b:/hello_world# dotnet new
Created new C# project in /hello_world.
root@2e10a62dc54b:/hello_world# dotnet restore
log  : Restoring packages for /hello_world/project.json...
info :   GET https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app/index.json
info :   NotFound https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app/index.json 1201ms
error: Unable to resolve 'Microsoft.NETCore.App (>= 1.0.0-rc2-3002702)' for '.NETCoreApp,Version=v1.0'.
info : Committing restore...
log  : Writing lock file to disk. Path: /hello_world/project.lock.json
log  : /hello_world/project.json
log  : Restore failed in 2244ms.

Errors in /hello_world/project.json
    Unable to resolve 'Microsoft.NETCore.App (>= 1.0.0-rc2-3002702)' for '.NETCoreApp,Version=v1.0'.

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

Feeds used:
    https://api.nuget.org/v3/index.json
root@2e10a62dc54b:/hello_world#

The main issue being:

Errors in /hello_world/project.json
    Unable to resolve 'Microsoft.NETCore.App (>= 1.0.0-rc2-3002702)' for '.NETCoreApp,Version=v1.0'.

How can I resolve this?

Thanks,
Erin

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.