-
Notifications
You must be signed in to change notification settings - Fork 167
Docker build/rebuild of ASPNET project takes a long time. #123
Description
Currently, building a typical ASPNET project on docker requires an extremely long DNU RESTORE to run every time you build a project.
A far more efficient way of doing this would be to pre-load the most common nuget packages on the image in order to ensure the end user's DNU RESTORE only takes the packages they need which are different from the standard loadout.
note for example the extension I've written to the existing dockerfile here:
since all nuget packages are redownloaded every time a user changes the binary redeploy time is exceptionally slow.
compare the rebuild of a dockerfile using FROM microsoft/aspnet
to the output of one using FROM microsoft/aspnet-quickbuild
FROM microsoft/aspnet
Start: 06:03:13:313
Finish: 06:06:40:640
PS C:\Users\Alex\www\aspnet-docker> get-date -format "hh:mm:ss:ms"; docker build . ;get-date -format "hh:mm:ss:ms"
06:03:13:313
Sending build context to Docker daemon 1.211 MB
Step 1 : FROM microsoft/aspnet
---> 700091f71821
Step 2 : WORKDIR /code
---> Using cache
---> 2455ff409b7c
Step 3 : COPY WebApplication /code
---> d4a76c0d022b
Removing intermediate container 268c147719ce
Step 4 : RUN dnu restore
---> Running in a77a69c54068
Microsoft .NET Development Utility Mono-x64-1.0.0-rc1-16202
GET https://api.nuget.org/v3/index.json
OK https://api.nuget.org/v3/index.json 1206ms
Restoring packages for /code/project.json
GET https://api.nuget.org/v3-flatcontainer/entityframework.commands/index.json
GET https://api.nuget.org/v3-flatcontainer/entityframework.sqlite/index.json
GET https://api.nuget.org/v3-flatcontainer/entityframework.microsoftsqlserver/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.authentication.cookies/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.diagnostics.entity/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.identity.entityframework/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.iisplatformhandler/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.taghelpers/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.server.kestrel/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.staticfiles/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.tooling.razor/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.dnx.runtime/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.codegenerators.mvc/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileproviderextensions/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.json/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.usersecrets/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.console/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.debug/index.json
OK https://api.nuget.org/v3-flatcontainer/entityframework.commands/index.json 702ms
GET https://api.nuget.org/v3-flatcontainer/entityframework.commands/7.0.0-rc1-final/entityframework.commands.7.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/entityframework.sqlite/index.json 902ms
GET https://api.nuget.org/v3-flatcontainer/entityframework.sqlite/7.0.0-rc1-final/entityframework.sqlite.7.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/entityframework.microsoftsqlserver/index.json 1096ms
GET https://api.nuget.org/v3-flatcontainer/entityframework.microsoftsqlserver/7.0.0-rc1-final/entityframework.microsoftsqlserver.7.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.authentication.cookies/index.json 1503ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.authentication.cookies/1.0.0-rc1-final/microsoft.aspnet.authentication.cookies.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.diagnostics.entity/index.json 1710ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.diagnostics.entity/7.0.0-rc1-final/microsoft.aspnet.diagnostics.entity.7.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.identity.entityframework/index.json 1961ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.identity.entityframework/3.0.0-rc1-final/microsoft.aspnet.identity.entityframework.3.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.iisplatformhandler/index.json 2173ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.iisplatformhandler/1.0.0-rc1-final/microsoft.aspnet.iisplatformhandler.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc/index.json 2417ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc/6.0.0-rc1-final/microsoft.aspnet.mvc.6.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.taghelpers/index.json 2624ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.taghelpers/6.0.0-rc1-final/microsoft.aspnet.mvc.taghelpers.6.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.server.kestrel/index.json 2824ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.server.kestrel/1.0.0-rc1-final/microsoft.aspnet.server.kestrel.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.staticfiles/index.json 3033ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.staticfiles/1.0.0-rc1-final/microsoft.aspnet.staticfiles.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.tooling.razor/index.json 3434ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.tooling.razor/1.0.0-rc1-final/microsoft.aspnet.tooling.razor.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.dnx.runtime/index.json 3945ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.dnx.runtime/1.0.0-rc1-final/microsoft.dnx.runtime.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.codegenerators.mvc/index.json 4248ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.codegenerators.mvc/1.0.0-rc1-final/microsoft.extensions.codegenerators.mvc.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileproviderextensions/index.json 4552ms
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
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.json/index.json 4757ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.json/1.0.0-rc1-final/microsoft.extensions.configuration.json.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.usersecrets/index.json 4956ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.usersecrets/1.0.0-rc1-final/microsoft.extensions.configuration.usersecrets.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging/index.json 5163ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging/1.0.0-rc1-final/microsoft.extensions.logging.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.console/index.json 5357ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.console/1.0.0-rc1-final/microsoft.extensions.logging.console.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.debug/index.json 5557ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.debug/1.0.0-rc1-final/microsoft.extensions.logging.debug.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/entityframework.commands/7.0.0-rc1-final/entityframework.commands.7.0.0-rc1-final.nupkg 5570ms
GET https://api.nuget.org/v3-flatcontainer/entityframework.relational.design/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.hosting.abstractions/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.platformabstractions/index.json
GET https://api.nuget.org/v3-flatcontainer/system.console/index.json
OK https://api.nuget.org/v3-flatcontainer/entityframework.sqlite/7.0.0-rc1-final/entityframework.sqlite.7.0.0-rc1-final.nupkg 5633ms
GET https://api.nuget.org/v3-flatcontainer/entityframework.relational/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlite/index.json
GET https://api.nuget.org/v3-flatcontainer/system.io.filesystem/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.csharp/index.json
OK https://api.nuget.org/v3-flatcontainer/entityframework.microsoftsqlserver/7.0.0-rc1-final/entityframework.microsoftsqlserver.7.0.0-rc1-final.nupkg 6063ms
GET https://api.nuget.org/v3-flatcontainer/system.data.sqlclient/index.json
GET https://api.nuget.org/v3-flatcontainer/system.text.encoding.codepages/index.json
GET https://api.nuget.org/v3-flatcontainer/system.threading.thread/index.json
GET https://api.nuget.org/v3-flatcontainer/system.threading.threadpool/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.authentication.cookies/1.0.0-rc1-final/microsoft.aspnet.authentication.cookies.1.0.0-rc1-final.nupkg 6366ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.authentication/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.webencoders/index.json
GET https://api.nuget.org/v3-flatcontainer/newtonsoft.json/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.diagnostics.entity/7.0.0-rc1-final/microsoft.aspnet.diagnostics.entity.7.0.0-rc1-final.nupkg 6517ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.diagnostics/index.json
GET https://api.nuget.org/v3-flatcontainer/system.threading/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.identity.entityframework/3.0.0-rc1-final/microsoft.aspnet.identity.entityframework.3.0.0-rc1-final.nupkg 6733ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.identity/index.json
GET https://api.nuget.org/v3-flatcontainer/system.collections/index.json
GET https://api.nuget.org/v3-flatcontainer/system.componentmodel/index.json
GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.typeconverter/index.json
GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/index.json
GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.tools/index.json
GET https://api.nuget.org/v3-flatcontainer/system.globalization/index.json
GET https://api.nuget.org/v3-flatcontainer/system.linq/index.json
GET https://api.nuget.org/v3-flatcontainer/system.linq.expressions/index.json
GET https://api.nuget.org/v3-flatcontainer/system.linq.queryable/index.json
GET https://api.nuget.org/v3-flatcontainer/system.reflection/index.json
GET https://api.nuget.org/v3-flatcontainer/system.resources.resourcemanager/index.json
GET https://api.nuget.org/v3-flatcontainer/system.runtime/index.json
GET https://api.nuget.org/v3-flatcontainer/system.runtime.extensions/index.json
GET https://api.nuget.org/v3-flatcontainer/system.security.claims/index.json
GET https://api.nuget.org/v3-flatcontainer/system.security.principal/index.json
GET https://api.nuget.org/v3-flatcontainer/system.text.encoding/index.json
GET https://api.nuget.org/v3-flatcontainer/system.threading.tasks/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.iisplatformhandler/1.0.0-rc1-final/microsoft.aspnet.iisplatformhandler.1.0.0-rc1-final.nupkg 6710ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.http/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.http.extensions/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc/6.0.0-rc1-final/microsoft.aspnet.mvc.6.0.0-rc1-final.nupkg 6680ms
GET https://api.nuget.org/v3-flatcontainer/system.security.principal.windows/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.taghelpers/6.0.0-rc1-final/microsoft.aspnet.mvc.taghelpers.6.0.0-rc1-final.nupkg 6884ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.apiexplorer/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.server.kestrel/1.0.0-rc1-final/microsoft.aspnet.server.kestrel.1.0.0-rc1-final.nupkg 7868ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.cors/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.staticfiles/1.0.0-rc1-final/microsoft.aspnet.staticfiles.1.0.0-rc1-final.nupkg 8181ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.dataannotations/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.tooling.razor/1.0.0-rc1-final/microsoft.aspnet.tooling.razor.1.0.0-rc1-final.nupkg 8013ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.formatters.json/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.dnx.runtime/1.0.0-rc1-final/microsoft.dnx.runtime.1.0.0-rc1-final.nupkg 8017ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.localization/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.codegenerators.mvc/1.0.0-rc1-final/microsoft.extensions.codegenerators.mvc.1.0.0-rc1-final.nupkg 8448ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.razor/index.json
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 8321ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.viewfeatures/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.json/1.0.0-rc1-final/microsoft.extensions.configuration.json.1.0.0-rc1-final.nupkg 8421ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.caching.memory/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.usersecrets/1.0.0-rc1-final/microsoft.extensions.configuration.usersecrets.1.0.0-rc1-final.nupkg 8421ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging/1.0.0-rc1-final/microsoft.extensions.logging.1.0.0-rc1-final.nupkg 8400ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.filesystemglobbing/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.console/1.0.0-rc1-final/microsoft.extensions.logging.console.1.0.0-rc1-final.nupkg 8517ms
GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.algorithms/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.debug/1.0.0-rc1-final/microsoft.extensions.logging.debug.1.0.0-rc1-final.nupkg 8522ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.hosting/index.json
OK https://api.nuget.org/v3-flatcontainer/entityframework.relational.design/index.json 7856ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.abstractions/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.hosting.abstractions/index.json 8060ms
GET https://api.nuget.org/v3-flatcontainer/system.numerics.vectors/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.platformabstractions/index.json 8244ms
GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracesource/index.json
OK https://api.nuget.org/v3-flatcontainer/system.console/index.json 8449ms
GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracing/index.json
OK https://api.nuget.org/v3-flatcontainer/entityframework.relational/index.json 8697ms
GET https://api.nuget.org/v3-flatcontainer/system.io/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlite/index.json 8995ms
GET https://api.nuget.org/v3-flatcontainer/system.net.primitives/index.json
OK https://api.nuget.org/v3-flatcontainer/system.io.filesystem/index.json 9195ms
GET https://api.nuget.org/v3-flatcontainer/system.runtime.interopservices/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.csharp/index.json 9395ms
GET https://api.nuget.org/v3-flatcontainer/system.threading.timer/index.json
OK https://api.nuget.org/v3-flatcontainer/system.data.sqlclient/index.json 9090ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.fileproviders.abstractions/index.json
OK https://api.nuget.org/v3-flatcontainer/system.text.encoding.codepages/index.json 9292ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.razor.runtime/index.json
OK https://api.nuget.org/v3-flatcontainer/system.threading.thread/index.json 9497ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.dnx.loader/index.json
OK https://api.nuget.org/v3-flatcontainer/system.threading.threadpool/index.json 9696ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.codeanalysis.csharp/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.authentication/index.json 9306ms
GET https://api.nuget.org/v3-flatcontainer/system.collections.concurrent/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.webencoders/index.json 9508ms
GET https://api.nuget.org/v3-flatcontainer/system.dynamic.runtime/index.json
OK https://api.nuget.org/v3-flatcontainer/newtonsoft.json/index.json 9709ms
GET https://api.nuget.org/v3-flatcontainer/system.io.filesystem.watcher/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.diagnostics/index.json 9673ms
GET https://api.nuget.org/v3-flatcontainer/system.reflection.extensions/index.json
OK https://api.nuget.org/v3-flatcontainer/system.threading/index.json 9868ms
GET https://api.nuget.org/v3-flatcontainer/system.resources.readerwriter/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.identity/index.json 9709ms
GET https://api.nuget.org/v3-flatcontainer/system.xml.readerwriter/index.json
OK https://api.nuget.org/v3-flatcontainer/system.collections/index.json 9913ms
GET https://api.nuget.org/v3-flatcontainer/system.xml.xdocument/index.json
OK https://api.nuget.org/v3-flatcontainer/system.componentmodel/index.json 10109ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.codegeneration/index.json
OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.typeconverter/index.json 10311ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.codegeneration.entityframework/index.json
OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/index.json 10516ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.codegeneration.templating/index.json
OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.tools/index.json 10721ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.fileproviders.physical/index.json
OK https://api.nuget.org/v3-flatcontainer/system.globalization/index.json 10919ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.abstractions/index.json
OK https://api.nuget.org/v3-flatcontainer/system.linq/index.json 11113ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileextensions/index.json
OK https://api.nuget.org/v3-flatcontainer/system.linq.expressions/index.json 11318ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration/index.json
OK https://api.nuget.org/v3-flatcontainer/system.linq.queryable/index.json 11521ms
GET https://api.nuget.org/v3-flatcontainer/system.runtime.serialization.primitives/index.json
OK https://api.nuget.org/v3-flatcontainer/system.reflection/index.json 11721ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection.abstractions/index.json
OK https://api.nuget.org/v3-flatcontainer/system.resources.resourcemanager/index.json 11922ms
GET https://api.nuget.org/v3-flatcontainer/entityframework.relational.design/7.0.0-rc1-final/entityframework.relational.design.7.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.runtime/index.json 12118ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.hosting.abstractions/1.0.0-rc1-final/microsoft.aspnet.hosting.abstractions.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.runtime.extensions/index.json 12323ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.platformabstractions/1.0.0-rc1-final/microsoft.extensions.platformabstractions.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.security.claims/index.json 12746ms
GET https://api.nuget.org/v3-flatcontainer/system.console/4.0.0-beta-23516/system.console.4.0.0-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.security.principal/index.json 12938ms
GET https://api.nuget.org/v3-flatcontainer/entityframework.relational/7.0.0-rc1-final/entityframework.relational.7.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.text.encoding/index.json 13129ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlite/1.0.0-rc1-final/microsoft.data.sqlite.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.threading.tasks/index.json 13332ms
GET https://api.nuget.org/v3-flatcontainer/system.io.filesystem/4.0.1-beta-23516/system.io.filesystem.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.http/index.json 13415ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.csharp/4.0.1-beta-23516/microsoft.csharp.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.http.extensions/index.json 13513ms
GET https://api.nuget.org/v3-flatcontainer/system.data.sqlclient/4.0.0-beta-23516/system.data.sqlclient.4.0.0-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.security.principal.windows/index.json 13505ms
GET https://api.nuget.org/v3-flatcontainer/system.text.encoding.codepages/4.0.1-beta-23516/system.text.encoding.codepages.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.apiexplorer/index.json 13508ms
GET https://api.nuget.org/v3-flatcontainer/system.threading.thread/4.0.0-beta-23516/system.threading.thread.4.0.0-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.cors/index.json 12589ms
GET https://api.nuget.org/v3-flatcontainer/system.threading.threadpool/4.0.10-beta-23516/system.threading.threadpool.4.0.10-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.dataannotations/index.json 12284ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.authentication/1.0.0-rc1-final/microsoft.aspnet.authentication.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.formatters.json/index.json 12398ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.webencoders/1.0.0-rc1-final/microsoft.extensions.webencoders.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.localization/index.json 11965ms
GET https://api.nuget.org/v3-flatcontainer/newtonsoft.json/6.0.6/newtonsoft.json.6.0.6.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.razor/index.json 11530ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.diagnostics/1.0.0-rc1-final/microsoft.aspnet.diagnostics.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.viewfeatures/index.json 11562ms
GET https://api.nuget.org/v3-flatcontainer/system.threading/4.0.11-beta-23516/system.threading.4.0.11-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.caching.memory/index.json 11454ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.identity/3.0.0-rc1-final/microsoft.aspnet.identity.3.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection/index.json 11454ms
GET https://api.nuget.org/v3-flatcontainer/system.collections/4.0.11-beta-23516/system.collections.4.0.11-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.filesystemglobbing/index.json 11522ms
GET https://api.nuget.org/v3-flatcontainer/system.componentmodel/4.0.1-beta-23516/system.componentmodel.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.algorithms/index.json 11668ms
GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.typeconverter/4.0.1-beta-23516/system.componentmodel.typeconverter.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.hosting/index.json 11665ms
GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/4.0.11-beta-23516/system.diagnostics.debug.4.0.11-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.abstractions/index.json 11644ms
GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.tools/4.0.1-beta-23516/system.diagnostics.tools.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.numerics.vectors/index.json 11678ms
GET https://api.nuget.org/v3-flatcontainer/system.globalization/4.0.11-beta-23516/system.globalization.4.0.11-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracesource/index.json 11685ms
GET https://api.nuget.org/v3-flatcontainer/system.linq/4.0.1-beta-23516/system.linq.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracing/index.json 11578ms
GET https://api.nuget.org/v3-flatcontainer/system.linq.expressions/4.0.11-beta-23516/system.linq.expressions.4.0.11-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.io/index.json 11458ms
GET https://api.nuget.org/v3-flatcontainer/system.linq.queryable/4.0.1-beta-23516/system.linq.queryable.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.net.primitives/index.json 11581ms
GET https://api.nuget.org/v3-flatcontainer/system.reflection/4.1.0-beta-23225/system.reflection.4.1.0-beta-23225.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.runtime.interopservices/index.json 11579ms
GET https://api.nuget.org/v3-flatcontainer/system.resources.resourcemanager/4.0.1-beta-23516/system.resources.resourcemanager.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.threading.timer/index.json 11574ms
GET https://api.nuget.org/v3-flatcontainer/system.runtime/4.0.21-beta-23516/system.runtime.4.0.21-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.fileproviders.abstractions/index.json 11478ms
GET https://api.nuget.org/v3-flatcontainer/system.runtime.extensions/4.0.11-beta-23516/system.runtime.extensions.4.0.11-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.razor.runtime/index.json 11479ms
GET https://api.nuget.org/v3-flatcontainer/system.security.claims/4.0.1-beta-23516/system.security.claims.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.dnx.loader/index.json 11541ms
GET https://api.nuget.org/v3-flatcontainer/system.security.principal/4.0.1-beta-23516/system.security.principal.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.codeanalysis.csharp/index.json 11578ms
GET https://api.nuget.org/v3-flatcontainer/system.text.encoding/4.0.11-beta-23516/system.text.encoding.4.0.11-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.collections.concurrent/index.json 11479ms
GET https://api.nuget.org/v3-flatcontainer/system.threading.tasks/4.0.11-beta-23516/system.threading.tasks.4.0.11-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.dynamic.runtime/index.json 11478ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.http/1.0.0-rc1-final/microsoft.aspnet.http.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.io.filesystem.watcher/index.json 11480ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.http.extensions/1.0.0-rc1-final/microsoft.aspnet.http.extensions.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.reflection.extensions/index.json 11373ms
GET https://api.nuget.org/v3-flatcontainer/system.security.principal.windows/4.0.0-beta-23516/system.security.principal.windows.4.0.0-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.resources.readerwriter/index.json 11376ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.apiexplorer/6.0.0-rc1-final/microsoft.aspnet.mvc.apiexplorer.6.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.xml.readerwriter/index.json 11270ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.cors/6.0.0-rc1-final/microsoft.aspnet.mvc.cors.6.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.xml.xdocument/index.json 11270ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.dataannotations/6.0.0-rc1-final/microsoft.aspnet.mvc.dataannotations.6.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.codegeneration/index.json 11377ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.formatters.json/6.0.0-rc1-final/microsoft.aspnet.mvc.formatters.json.6.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.codegeneration.entityframework/index.json 11477ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.localization/6.0.0-rc1-final/microsoft.aspnet.mvc.localization.6.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.codegeneration.templating/index.json 11477ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.razor/6.0.0-rc1-final/microsoft.aspnet.mvc.razor.6.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.fileproviders.physical/index.json 11370ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.viewfeatures/6.0.0-rc1-final/microsoft.aspnet.mvc.viewfeatures.6.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.abstractions/index.json 11376ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.caching.memory/1.0.0-rc1-final/microsoft.extensions.caching.memory.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileextensions/index.json 11584ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection/1.0.0-rc1-final/microsoft.extensions.dependencyinjection.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration/index.json 11579ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.filesystemglobbing/1.0.0-rc1-final/microsoft.extensions.filesystemglobbing.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.runtime.serialization.primitives/index.json 11681ms
GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.algorithms/4.0.0-beta-23516/system.security.cryptography.algorithms.4.0.0-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection.abstractions/index.json 11688ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.hosting/1.0.0-rc1-final/microsoft.aspnet.hosting.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/entityframework.relational.design/7.0.0-rc1-final/entityframework.relational.design.7.0.0-rc1-final.nupkg 11909ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.abstractions/1.0.0-rc1-final/microsoft.extensions.logging.abstractions.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.hosting.abstractions/1.0.0-rc1-final/microsoft.aspnet.hosting.abstractions.1.0.0-rc1-final.nupkg 11917ms
GET https://api.nuget.org/v3-flatcontainer/system.numerics.vectors/4.1.1-beta-23516/system.numerics.vectors.4.1.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.platformabstractions/1.0.0-rc1-final/microsoft.extensions.platformabstractions.1.0.0-rc1-final.nupkg 11923ms
GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracesource/4.0.0-beta-23516/system.diagnostics.tracesource.4.0.0-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.console/4.0.0-beta-23516/system.console.4.0.0-beta-23516.nupkg 11775ms
GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracing/4.0.21-beta-23516/system.diagnostics.tracing.4.0.21-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/entityframework.relational/7.0.0-rc1-final/entityframework.relational.7.0.0-rc1-final.nupkg 12692ms
GET https://api.nuget.org/v3-flatcontainer/system.io/4.0.11-beta-23516/system.io.4.0.11-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlite/1.0.0-rc1-final/microsoft.data.sqlite.1.0.0-rc1-final.nupkg 16429ms
GET https://api.nuget.org/v3-flatcontainer/system.net.primitives/4.0.11-beta-23516/system.net.primitives.4.0.11-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.io.filesystem/4.0.1-beta-23516/system.io.filesystem.4.0.1-beta-23516.nupkg 16666ms
GET https://api.nuget.org/v3-flatcontainer/system.runtime.interopservices/4.0.21-beta-23516/system.runtime.interopservices.4.0.21-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.csharp/4.0.1-beta-23516/microsoft.csharp.4.0.1-beta-23516.nupkg 16998ms
GET https://api.nuget.org/v3-flatcontainer/system.threading.timer/4.0.1-beta-23516/system.threading.timer.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.data.sqlclient/4.0.0-beta-23516/system.data.sqlclient.4.0.0-beta-23516.nupkg 17869ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.fileproviders.abstractions/1.0.0-rc1-final/microsoft.aspnet.fileproviders.abstractions.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.text.encoding.codepages/4.0.1-beta-23516/system.text.encoding.codepages.4.0.1-beta-23516.nupkg 17867ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.razor.runtime/4.0.0-rc1-final/microsoft.aspnet.razor.runtime.4.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.threading.thread/4.0.0-beta-23516/system.threading.thread.4.0.0-beta-23516.nupkg 17651ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.dnx.loader/1.0.0-rc1-final/microsoft.dnx.loader.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.threading.threadpool/4.0.10-beta-23516/system.threading.threadpool.4.0.10-beta-23516.nupkg 17694ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.codeanalysis.csharp/1.1.0-rc1-20151109-01/microsoft.codeanalysis.csharp.1.1.0-rc1-20151109-01.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.authentication/1.0.0-rc1-final/microsoft.aspnet.authentication.1.0.0-rc1-final.nupkg 17710ms
GET https://api.nuget.org/v3-flatcontainer/system.collections.concurrent/4.0.11-beta-23516/system.collections.concurrent.4.0.11-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.webencoders/1.0.0-rc1-final/microsoft.extensions.webencoders.1.0.0-rc1-final.nupkg 17525ms
GET https://api.nuget.org/v3-flatcontainer/system.dynamic.runtime/4.0.11-beta-23516/system.dynamic.runtime.4.0.11-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/newtonsoft.json/6.0.6/newtonsoft.json.6.0.6.nupkg 19782ms
GET https://api.nuget.org/v3-flatcontainer/system.io.filesystem.watcher/4.0.0-beta-23516/system.io.filesystem.watcher.4.0.0-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.diagnostics/1.0.0-rc1-final/microsoft.aspnet.diagnostics.1.0.0-rc1-final.nupkg 19896ms
GET https://api.nuget.org/v3-flatcontainer/system.reflection.extensions/4.0.1-beta-23516/system.reflection.extensions.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.threading/4.0.11-beta-23516/system.threading.4.0.11-beta-23516.nupkg 20754ms
GET https://api.nuget.org/v3-flatcontainer/system.resources.readerwriter/4.0.0-beta-23516/system.resources.readerwriter.4.0.0-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.identity/3.0.0-rc1-final/microsoft.aspnet.identity.3.0.0-rc1-final.nupkg 21033ms
GET https://api.nuget.org/v3-flatcontainer/system.xml.readerwriter/4.0.11-beta-23516/system.xml.readerwriter.4.0.11-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.collections/4.0.11-beta-23516/system.collections.4.0.11-beta-23516.nupkg 22594ms
GET https://api.nuget.org/v3-flatcontainer/system.xml.xdocument/4.0.11-beta-23516/system.xml.xdocument.4.0.11-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.componentmodel/4.0.1-beta-23516/system.componentmodel.4.0.1-beta-23516.nupkg 22628ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.codegeneration/1.0.0-rc1-final/microsoft.extensions.codegeneration.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.typeconverter/4.0.1-beta-23516/system.componentmodel.typeconverter.4.0.1-beta-23516.nupkg 22564ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.codegeneration.entityframework/1.0.0-rc1-final/microsoft.extensions.codegeneration.entityframework.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/4.0.11-beta-23516/system.diagnostics.debug.4.0.11-beta-23516.nupkg 22692ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.codegeneration.templating/1.0.0-rc1-final/microsoft.extensions.codegeneration.templating.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.tools/4.0.1-beta-23516/system.diagnostics.tools.4.0.1-beta-23516.nupkg 22783ms
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
OK https://api.nuget.org/v3-flatcontainer/system.globalization/4.0.11-beta-23516/system.globalization.4.0.11-beta-23516.nupkg 23306ms
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
OK https://api.nuget.org/v3-flatcontainer/system.linq/4.0.1-beta-23516/system.linq.4.0.1-beta-23516.nupkg 23550ms
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
OK https://api.nuget.org/v3-flatcontainer/system.linq.expressions/4.0.11-beta-23516/system.linq.expressions.4.0.11-beta-23516.nupkg 24737ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration/1.0.0-rc1-final/microsoft.extensions.configuration.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.linq.queryable/4.0.1-beta-23516/system.linq.queryable.4.0.1-beta-23516.nupkg 25054ms
GET https://api.nuget.org/v3-flatcontainer/system.runtime.serialization.primitives/4.0.11-beta-23409/system.runtime.serialization.primitives.4.0.11-beta-23409.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.reflection/4.1.0-beta-23225/system.reflection.4.1.0-beta-23225.nupkg 24899ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection.abstractions/1.0.0-rc1-final/microsoft.extensions.dependencyinjection.abstractions.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.resources.resourcemanager/4.0.1-beta-23516/system.resources.resourcemanager.4.0.1-beta-23516.nupkg 25039ms
GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.annotations/index.json
OK https://api.nuget.org/v3-flatcontainer/system.runtime/4.0.21-beta-23516/system.runtime.4.0.21-beta-23516.nupkg 31597ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.http.abstractions/index.json
OK https://api.nuget.org/v3-flatcontainer/system.runtime.extensions/4.0.11-beta-23516/system.runtime.extensions.4.0.11-beta-23516.nupkg 32227ms
GET https://api.nuget.org/v3-flatcontainer/system.runtime/4.0.0/system.runtime.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.security.claims/4.0.1-beta-23516/system.security.claims.4.0.1-beta-23516.nupkg 32317ms
GET https://api.nuget.org/v3-flatcontainer/system.io/4.0.0/system.io.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.security.principal/4.0.1-beta-23516/system.security.principal.4.0.1-beta-23516.nupkg 32352ms
GET https://api.nuget.org/v3-flatcontainer/entityframework.core/index.json
OK https://api.nuget.org/v3-flatcontainer/system.text.encoding/4.0.11-beta-23516/system.text.encoding.4.0.11-beta-23516.nupkg 32703ms
GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.diagnosticsource/index.json
OK https://api.nuget.org/v3-flatcontainer/system.threading.tasks/4.0.11-beta-23516/system.threading.tasks.4.0.11-beta-23516.nupkg 33931ms
GET https://api.nuget.org/v3-flatcontainer/system.data.common/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.http/1.0.0-rc1-final/microsoft.aspnet.http.1.0.0-rc1-final.nupkg 33941ms
GET https://api.nuget.org/v3-flatcontainer/system.text.regularexpressions/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.http.extensions/1.0.0-rc1-final/microsoft.aspnet.http.extensions.1.0.0-rc1-final.nupkg 33939ms
GET https://api.nuget.org/v3-flatcontainer/system.reflection/4.1.0-beta-23516/system.reflection.4.1.0-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.security.principal.windows/4.0.0-beta-23516/system.security.principal.windows.4.0.0-beta-23516.nupkg 34190ms
GET https://api.nuget.org/v3-flatcontainer/system.runtime.handles/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.apiexplorer/6.0.0-rc1-final/microsoft.aspnet.mvc.apiexplorer.6.0.0-rc1-final.nupkg 34273ms
GET https://api.nuget.org/v3-flatcontainer/system.text.encoding/4.0.0/system.text.encoding.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.cors/6.0.0-rc1-final/microsoft.aspnet.mvc.cors.6.0.0-rc1-final.nupkg 34265ms
GET https://api.nuget.org/v3-flatcontainer/system.io.filesystem.primitives/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.dataannotations/6.0.0-rc1-final/microsoft.aspnet.mvc.dataannotations.6.0.0-rc1-final.nupkg 34255ms
GET https://api.nuget.org/v3-flatcontainer/system.threading.tasks/4.0.0/system.threading.tasks.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.formatters.json/6.0.0-rc1-final/microsoft.aspnet.mvc.formatters.json.6.0.0-rc1-final.nupkg 34146ms
GET https://api.nuget.org/v3-flatcontainer/system.runtime/4.0.20/system.runtime.4.0.20.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.localization/6.0.0-rc1-final/microsoft.aspnet.mvc.localization.6.0.0-rc1-final.nupkg 34147ms
GET https://api.nuget.org/v3-flatcontainer/system.runtime.interopservices/4.0.20/system.runtime.interopservices.4.0.20.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.razor/6.0.0-rc1-final/microsoft.aspnet.mvc.razor.6.0.0-rc1-final.nupkg 34342ms
GET https://api.nuget.org/v3-flatcontainer/system.resources.resourcemanager/4.0.0/system.resources.resourcemanager.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.viewfeatures/6.0.0-rc1-final/microsoft.aspnet.mvc.viewfeatures.6.0.0-rc1-final.nupkg 34760ms
GET https://api.nuget.org/v3-flatcontainer/system.dynamic.runtime/4.0.0/system.dynamic.runtime.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.caching.memory/1.0.0-rc1-final/microsoft.extensions.caching.memory.1.0.0-rc1-final.nupkg 35004ms
GET https://api.nuget.org/v3-flatcontainer/system.linq.expressions/4.0.0/system.linq.expressions.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection/1.0.0-rc1-final/microsoft.extensions.dependencyinjection.1.0.0-rc1-final.nupkg 34959ms
GET https://api.nuget.org/v3-flatcontainer/system.linq/4.0.0/system.linq.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.filesystemglobbing/1.0.0-rc1-final/microsoft.extensions.filesystemglobbing.1.0.0-rc1-final.nupkg 35046ms
GET https://api.nuget.org/v3-flatcontainer/system.reflection.typeextensions/index.json
OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.algorithms/4.0.0-beta-23516/system.security.cryptography.algorithms.4.0.0-beta-23516.nupkg 35068ms
GET https://api.nuget.org/v3-flatcontainer/system.reflection.primitives/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.hosting/1.0.0-rc1-final/microsoft.aspnet.hosting.1.0.0-rc1-final.nupkg 35275ms
GET https://api.nuget.org/v3-flatcontainer/system.reflection.extensions/4.0.0/system.reflection.extensions.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.abstractions/1.0.0-rc1-final/microsoft.extensions.logging.abstractions.1.0.0-rc1-final.nupkg 35425ms
GET https://api.nuget.org/v3-flatcontainer/system.collections/4.0.10/system.collections.4.0.10.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.numerics.vectors/4.1.1-beta-23516/system.numerics.vectors.4.1.1-beta-23516.nupkg 35670ms
GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/4.0.10/system.diagnostics.debug.4.0.10.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracesource/4.0.0-beta-23516/system.diagnostics.tracesource.4.0.0-beta-23516.nupkg 35936ms
GET https://api.nuget.org/v3-flatcontainer/system.reflection/4.0.10/system.reflection.4.0.10.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracing/4.0.21-beta-23516/system.diagnostics.tracing.4.0.21-beta-23516.nupkg 36735ms
GET https://api.nuget.org/v3-flatcontainer/system.threading/4.0.10/system.threading.4.0.10.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.io/4.0.11-beta-23516/system.io.4.0.11-beta-23516.nupkg 36721ms
GET https://api.nuget.org/v3-flatcontainer/system.globalization/4.0.10/system.globalization.4.0.10.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.net.primitives/4.0.11-beta-23516/system.net.primitives.4.0.11-beta-23516.nupkg 33806ms
GET https://api.nuget.org/v3-flatcontainer/system.runtime.extensions/4.0.10/system.runtime.extensions.4.0.10.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.runtime.interopservices/4.0.21-beta-23516/system.runtime.interopservices.4.0.21-beta-23516.nupkg 36937ms
GET https://api.nuget.org/v3-flatcontainer/system.objectmodel/index.json
OK https://api.nuget.org/v3-flatcontainer/system.threading.timer/4.0.1-beta-23516/system.threading.timer.4.0.1-beta-23516.nupkg 36725ms
GET https://api.nuget.org/v3-flatcontainer/system.globalization/4.0.0/system.globalization.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.fileproviders.abstractions/1.0.0-rc1-final/microsoft.aspnet.fileproviders.abstractions.1.0.0-rc1-final.nupkg 35953ms
GET https://api.nuget.org/v3-flatcontainer/system.xml.readerwriter/4.0.0/system.xml.readerwriter.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.razor.runtime/4.0.0-rc1-final/microsoft.aspnet.razor.runtime.4.0.0-rc1-final.nupkg 36051ms
GET https://api.nuget.org/v3-flatcontainer/system.text.encoding/4.0.10/system.text.encoding.4.0.10.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.dnx.loader/1.0.0-rc1-final/microsoft.dnx.loader.1.0.0-rc1-final.nupkg 36070ms
GET https://api.nuget.org/v3-flatcontainer/system.runtime.interopservices/4.0.0/system.runtime.interopservices.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.codeanalysis.csharp/1.1.0-rc1-20151109-01/microsoft.codeanalysis.csharp.1.1.0-rc1-20151109-01.nupkg 40737ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.dataprotection/index.json
OK https://api.nuget.org/v3-flatcontainer/system.collections.concurrent/4.0.11-beta-23516/system.collections.concurrent.4.0.11-beta-23516.nupkg 41275ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.optionsmodel/index.json
OK https://api.nuget.org/v3-flatcontainer/system.dynamic.runtime/4.0.11-beta-23516/system.dynamic.runtime.4.0.11-beta-23516.nupkg 42232ms
GET https://api.nuget.org/v3-flatcontainer/system.net.http/index.json
OK https://api.nuget.org/v3-flatcontainer/system.io.filesystem.watcher/4.0.0-beta-23516/system.io.filesystem.watcher.4.0.0-beta-23516.nupkg 40193ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.webencoders.core/index.json
OK https://api.nuget.org/v3-flatcontainer/system.reflection.extensions/4.0.1-beta-23516/system.reflection.extensions.4.0.1-beta-23516.nupkg 40090ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.diagnostics.abstractions/index.json
OK https://api.nuget.org/v3-flatcontainer/system.resources.readerwriter/4.0.0-beta-23516/system.resources.readerwriter.4.0.0-beta-23516.nupkg 39283ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.webutilities/index.json
OK https://api.nuget.org/v3-flatcontainer/system.xml.readerwriter/4.0.11-beta-23516/system.xml.readerwriter.4.0.11-beta-23516.nupkg 41085ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.dnx.compilation.abstractions/index.json
OK https://api.nuget.org/v3-flatcontainer/system.xml.xdocument/4.0.11-beta-23516/system.xml.xdocument.4.0.11-beta-23516.nupkg 40320ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.cryptography.keyderivation/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.codegeneration/1.0.0-rc1-final/microsoft.extensions.codegeneration.1.0.0-rc1-final.nupkg 40265ms
GET https://api.nuget.org/v3-flatcontainer/system.globalization.extensions/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.codegeneration.entityframework/1.0.0-rc1-final/microsoft.extensions.codegeneration.entityframework.1.0.0-rc1-final.nupkg 40084ms
GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.primitives/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.codegeneration.templating/1.0.0-rc1-final/microsoft.extensions.codegeneration.templating.1.0.0-rc1-final.nupkg 39958ms
GET https://api.nuget.org/v3-flatcontainer/system.reflection/4.0.0/system.reflection.4.0.0.nupkg
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 39890ms
GET https://api.nuget.org/v3-flatcontainer/system.private.uri/index.json
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 39277ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.net.http.headers/index.json
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 40988ms
GET https://api.nuget.org/v3-flatcontainer/system.collections/4.0.0/system.collections.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration/1.0.0-rc1-final/microsoft.extensions.configuration.1.0.0-rc1-final.nupkg 40034ms
GET https://api.nuget.org/v3-flatcontainer/system.security.claims/4.0.0/system.security.claims.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.runtime.serialization.primitives/4.0.11-beta-23409/system.runtime.serialization.primitives.4.0.11-beta-23409.nupkg 39827ms
GET https://api.nuget.org/v3-flatcontainer/system.security.principal/4.0.0/system.security.principal.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection.abstractions/1.0.0-rc1-final/microsoft.extensions.dependencyinjection.abstractions.1.0.0-rc1-final.nupkg 40001ms
GET https://api.nuget.org/v3-flatcontainer/system.runtime.extensions/4.0.0/system.runtime.extensions.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.annotations/index.json 39836ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.core/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.http.abstractions/index.json 33370ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.cors/index.json
OK https://api.nuget.org/v3-flatcontainer/system.runtime/4.0.0/system.runtime.4.0.0.nupkg 36271ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.localization/index.json
OK https://api.nuget.org/v3-flatcontainer/system.io/4.0.0/system.io.4.0.0.nupkg 36646ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.jsonpatch/index.json
OK https://api.nuget.org/v3-flatcontainer/entityframework.core/index.json 36553ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.localization/index.json
OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.diagnosticsource/index.json 36171ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.razor.host/index.json
OK https://api.nuget.org/v3-flatcontainer/system.data.common/index.json 34938ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.razor.runtime.precompilation/index.json
OK https://api.nuget.org/v3-flatcontainer/system.text.regularexpressions/index.json 34869ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.pageexecutioninstrumentation.interfaces/index.json
OK https://api.nuget.org/v3-flatcontainer/system.reflection/4.1.0-beta-23516/system.reflection.4.1.0-beta-23516.nupkg 35382ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.dnx.compilation.csharp.common/index.json
OK https://api.nuget.org/v3-flatcontainer/system.runtime.handles/index.json 35094ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.dnx.compilation.csharp.abstractions/index.json
OK https://api.nuget.org/v3-flatcontainer/system.text.encoding/4.0.0/system.text.encoding.4.0.0.nupkg 35358ms
GET https://api.nuget.org/v3-flatcontainer/system.runtime.loader/index.json
OK https://api.nuget.org/v3-flatcontainer/system.io.filesystem.primitives/index.json 35332ms
GET https://api.nuget.org/v3-flatcontainer/system.threading.tasks.parallel/index.json
OK https://api.nuget.org/v3-flatcontainer/system.threading.tasks/4.0.0/system.threading.tasks.4.0.0.nupkg 36078ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.antiforgery/index.json
OK https://api.nuget.org/v3-flatcontainer/system.runtime/4.0.20/system.runtime.4.0.20.nupkg 38759ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.html.abstractions/index.json
OK https://api.nuget.org/v3-flatcontainer/system.runtime.interopservices/4.0.20/system.runtime.interopservices.4.0.20.nupkg 39146ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.caching.abstractions/index.json
OK https://api.nuget.org/v3-flatcontainer/system.resources.resourcemanager/4.0.0/system.resources.resourcemanager.4.0.0.nupkg 39016ms
GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.primitives/index.json
OK https://api.nuget.org/v3-flatcontainer/system.dynamic.runtime/4.0.0/system.dynamic.runtime.4.0.0.nupkg 38895ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.hosting.server.abstractions/index.json
OK https://api.nuget.org/v3-flatcontainer/system.linq.expressions/4.0.0/system.linq.expressions.4.0.0.nupkg 39724ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.commandline/index.json
OK https://api.nuget.org/v3-flatcontainer/system.linq/4.0.0/system.linq.4.0.0.nupkg 39743ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.environmentvariables/index.json
OK https://api.nuget.org/v3-flatcontainer/system.reflection.typeextensions/index.json 40078ms
GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.stacktrace/index.json
OK https://api.nuget.org/v3-flatcontainer/system.reflection.primitives/index.json 39955ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.primitives/index.json
OK https://api.nuget.org/v3-flatcontainer/system.reflection.extensions/4.0.0/system.reflection.extensions.4.0.0.nupkg 39833ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.razor/index.json
OK https://api.nuget.org/v3-flatcontainer/system.collections/4.0.10/system.collections.4.0.10.nupkg 40212ms
GET https://api.nuget.org/v3-flatcontainer/system.appcontext/index.json
OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/4.0.10/system.diagnostics.debug.4.0.10.nupkg 40116ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.codeanalysis.common/index.json
OK https://api.nuget.org/v3-flatcontainer/system.reflection/4.0.10/system.reflection.4.0.10.nupkg 40150ms
GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracing/4.0.20/system.diagnostics.tracing.4.0.20.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.threading/4.0.10/system.threading.4.0.10.nupkg 39643ms
GET https://api.nuget.org/v3-flatcontainer/system.threading.tasks/4.0.10/system.threading.tasks.4.0.10.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.globalization/4.0.10/system.globalization.4.0.10.nupkg 39063ms
GET https://api.nuget.org/v3-flatcontainer/system.reflection.emit/index.json
OK https://api.nuget.org/v3-flatcontainer/system.runtime.extensions/4.0.10/system.runtime.extensions.4.0.10.nupkg 38828ms
GET https://api.nuget.org/v3-flatcontainer/system.reflection.emit.ilgeneration/index.json
OK https://api.nuget.org/v3-flatcontainer/system.objectmodel/index.json 35863ms
GET https://api.nuget.org/v3-flatcontainer/system.linq.expressions/4.0.10/system.linq.expressions.4.0.10.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.globalization/4.0.0/system.globalization.4.0.0.nupkg 36396ms
GET https://api.nuget.org/v3-flatcontainer/system.io/4.0.10/system.io.4.0.10.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.xml.readerwriter/4.0.0/system.xml.readerwriter.4.0.0.nupkg 37117ms
GET https://api.nuget.org/v3-flatcontainer/system.io.filesystem/4.0.0/system.io.filesystem.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.text.encoding/4.0.10/system.text.encoding.4.0.10.nupkg 37211ms
GET https://api.nuget.org/v3-flatcontainer/system.text.encoding.extensions/index.json
OK https://api.nuget.org/v3-flatcontainer/system.runtime.interopservices/4.0.0/system.runtime.interopservices.4.0.0.nupkg 38881ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.codegeneration.core/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.dataprotection/index.json 34144ms
GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.annotations/4.0.11-beta-23516/system.componentmodel.annotations.4.0.11-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.optionsmodel/index.json 33560ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.http.abstractions/1.0.0-rc1-final/microsoft.aspnet.http.abstractions.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.net.http/index.json 32624ms
GET https://api.nuget.org/v3-flatcontainer/entityframework.core/7.0.0-rc1-final/entityframework.core.7.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.webencoders.core/index.json 32765ms
GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.diagnosticsource/4.0.0-beta-23516/system.diagnostics.diagnosticsource.4.0.0-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.diagnostics.abstractions/index.json 32665ms
GET https://api.nuget.org/v3-flatcontainer/system.data.common/4.0.1-beta-23516/system.data.common.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.webutilities/index.json 32609ms
GET https://api.nuget.org/v3-flatcontainer/system.data.common/4.0.0/system.data.common.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.dnx.compilation.abstractions/index.json 30525ms
GET https://api.nuget.org/v3-flatcontainer/system.text.regularexpressions/4.0.11-beta-23516/system.text.regularexpressions.4.0.11-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.cryptography.keyderivation/index.json 29734ms
GET https://api.nuget.org/v3-flatcontainer/system.text.regularexpressions/4.0.0/system.text.regularexpressions.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.globalization.extensions/index.json 29595ms
GET https://api.nuget.org/v3-flatcontainer/system.runtime.handles/4.0.1-beta-23516/system.runtime.handles.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.primitives/index.json 29599ms
GET https://api.nuget.org/v3-flatcontainer/system.runtime.handles/4.0.0/system.runtime.handles.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.reflection/4.0.0/system.reflection.4.0.0.nupkg 29987ms
GET https://api.nuget.org/v3-flatcontainer/system.io.filesystem.primitives/4.0.0/system.io.filesystem.primitives.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.private.uri/index.json 29910ms
GET https://api.nuget.org/v3-flatcontainer/system.io.filesystem.primitives/4.0.1-beta-23516/system.io.filesystem.primitives.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.net.http.headers/index.json 29863ms
GET https://api.nuget.org/v3-flatcontainer/system.reflection.typeextensions/4.0.0/system.reflection.typeextensions.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.collections/4.0.0/system.collections.4.0.0.nupkg 29053ms
GET https://api.nuget.org/v3-flatcontainer/system.reflection.typeextensions/4.0.1-beta-23409/system.reflection.typeextensions.4.0.1-beta-23409.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.security.claims/4.0.0/system.security.claims.4.0.0.nupkg 29127ms
GET https://api.nuget.org/v3-flatcontainer/system.reflection.primitives/4.0.0/system.reflection.primitives.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.security.principal/4.0.0/system.security.principal.4.0.0.nupkg 29091ms
GET https://api.nuget.org/v3-flatcontainer/system.objectmodel/4.0.10/system.objectmodel.4.0.10.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.runtime.extensions/4.0.0/system.runtime.extensions.4.0.0.nupkg 29522ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.dataprotection/1.0.0-rc1-final/microsoft.aspnet.dataprotection.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.core/index.json 29522ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.optionsmodel/1.0.0-rc1-final/microsoft.extensions.optionsmodel.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.cors/index.json 29517ms
GET https://api.nuget.org/v3-flatcontainer/system.net.http/4.0.1-beta-23516/system.net.http.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.localization/index.json 25979ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.webencoders.core/1.0.0-rc1-final/microsoft.extensions.webencoders.core.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.jsonpatch/index.json 25631ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.diagnostics.abstractions/1.0.0-rc1-final/microsoft.aspnet.diagnostics.abstractions.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.localization/index.json 25624ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.webutilities/1.0.0-rc1-final/microsoft.aspnet.webutilities.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.razor.host/index.json 25636ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.dnx.compilation.abstractions/1.0.0-rc1-final/microsoft.dnx.compilation.abstractions.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.razor.runtime.precompilation/index.json 25722ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.cryptography.keyderivation/1.0.0-rc1-final/microsoft.aspnet.cryptography.keyderivation.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.pageexecutioninstrumentation.interfaces/index.json 25892ms
GET https://api.nuget.org/v3-flatcontainer/system.globalization.extensions/4.0.1-beta-23516/system.globalization.extensions.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.dnx.compilation.csharp.common/index.json 25375ms
GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.primitives/4.0.0/system.componentmodel.primitives.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.dnx.compilation.csharp.abstractions/index.json 25413ms
GET https://api.nuget.org/v3-flatcontainer/system.private.uri/4.0.1-beta-23516/system.private.uri.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.runtime.loader/index.json 25067ms
GET https://api.nuget.org/v3-flatcontainer/system.private.uri/4.0.0/system.private.uri.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.threading.tasks.parallel/index.json 25125ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.net.http.headers/1.0.0-rc1-final/microsoft.net.http.headers.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.antiforgery/index.json 24366ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.core/6.0.0-rc1-final/microsoft.aspnet.mvc.core.6.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.html.abstractions/index.json 21785ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.cors/6.0.0-rc1-final/microsoft.aspnet.cors.6.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.caching.abstractions/index.json 21305ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.localization/1.0.0-rc1-final/microsoft.extensions.localization.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.primitives/index.json 21237ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.jsonpatch/1.0.0-rc1-final/microsoft.aspnet.jsonpatch.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.hosting.server.abstractions/index.json 21048ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.localization/1.0.0-rc1-final/microsoft.aspnet.localization.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.commandline/index.json 19968ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.razor.host/6.0.0-rc1-final/microsoft.aspnet.mvc.razor.host.6.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.environmentvariables/index.json 19788ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.razor.runtime.precompilation/4.0.0-rc1-final/microsoft.aspnet.razor.runtime.precompilation.4.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.stacktrace/index.json 19370ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.pageexecutioninstrumentation.interfaces/1.0.0-rc1-final/microsoft.aspnet.pageexecutioninstrumentation.interfaces.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.primitives/index.json 19369ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.dnx.compilation.csharp.common/1.0.0-rc1-final/microsoft.dnx.compilation.csharp.common.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.razor/index.json 19282ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.dnx.compilation.csharp.abstractions/1.0.0-rc1-final/microsoft.dnx.compilation.csharp.abstractions.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.appcontext/index.json 18532ms
GET https://api.nuget.org/v3-flatcontainer/system.runtime.loader/4.0.0-beta-23516/system.runtime.loader.4.0.0-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.codeanalysis.common/index.json 18380ms
GET https://api.nuget.org/v3-flatcontainer/system.threading.tasks.parallel/4.0.1-beta-23516/system.threading.tasks.parallel.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracing/4.0.20/system.diagnostics.tracing.4.0.20.nupkg 18498ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.antiforgery/1.0.0-rc1-final/microsoft.aspnet.antiforgery.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.threading.tasks/4.0.10/system.threading.tasks.4.0.10.nupkg 18543ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.html.abstractions/1.0.0-rc1-final/microsoft.aspnet.html.abstractions.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.reflection.emit/index.json 18183ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.caching.abstractions/1.0.0-rc1-final/microsoft.extensions.caching.abstractions.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.reflection.emit.ilgeneration/index.json 17587ms
GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.primitives/4.0.0-beta-23516/system.security.cryptography.primitives.4.0.0-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.linq.expressions/4.0.10/system.linq.expressions.4.0.10.nupkg 18429ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.hosting.server.abstractions/1.0.0-rc1-final/microsoft.aspnet.hosting.server.abstractions.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.io/4.0.10/system.io.4.0.10.nupkg 18133ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.commandline/1.0.0-rc1-final/microsoft.extensions.configuration.commandline.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.io.filesystem/4.0.0/system.io.filesystem.4.0.0.nupkg 18024ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.environmentvariables/1.0.0-rc1-final/microsoft.extensions.configuration.environmentvariables.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.text.encoding.extensions/index.json 17815ms
GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.stacktrace/4.0.1-beta-23516/system.diagnostics.stacktrace.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.codegeneration.core/index.json 16130ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.primitives/1.0.0-rc1-final/microsoft.extensions.primitives.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.annotations/4.0.11-beta-23516/system.componentmodel.annotations.4.0.11-beta-23516.nupkg 16647ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.razor/4.0.0-rc1-final/microsoft.aspnet.razor.4.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.http.abstractions/1.0.0-rc1-final/microsoft.aspnet.http.abstractions.1.0.0-rc1-final.nupkg 16692ms
GET https://api.nuget.org/v3-flatcontainer/system.appcontext/4.0.1-beta-23516/system.appcontext.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/entityframework.core/7.0.0-rc1-final/entityframework.core.7.0.0-rc1-final.nupkg 17691ms
GET https://api.nuget.org/v3-flatcontainer/system.appcontext/4.0.0/system.appcontext.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.diagnosticsource/4.0.0-beta-23516/system.diagnostics.diagnosticsource.4.0.0-beta-23516.nupkg 17428ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.codeanalysis.common/1.1.0-rc1-20151109-01/microsoft.codeanalysis.common.1.1.0-rc1-20151109-01.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.data.common/4.0.1-beta-23516/system.data.common.4.0.1-beta-23516.nupkg 17855ms
GET https://api.nuget.org/v3-flatcontainer/system.reflection.emit/4.0.0/system.reflection.emit.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.data.common/4.0.0/system.data.common.4.0.0.nupkg 18128ms
GET https://api.nuget.org/v3-flatcontainer/system.reflection.emit.ilgeneration/4.0.0/system.reflection.emit.ilgeneration.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.text.regularexpressions/4.0.11-beta-23516/system.text.regularexpressions.4.0.11-beta-23516.nupkg 18621ms
GET https://api.nuget.org/v3-flatcontainer/system.threading.overlapped/index.json
OK https://api.nuget.org/v3-flatcontainer/system.text.regularexpressions/4.0.0/system.text.regularexpressions.4.0.0.nupkg 18786ms
GET https://api.nuget.org/v3-flatcontainer/system.text.encoding.extensions/4.0.10/system.text.encoding.extensions.4.0.10.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.runtime.handles/4.0.1-beta-23516/system.runtime.handles.4.0.1-beta-23516.nupkg 18983ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.codegeneration.core/1.0.0-rc1-final/microsoft.extensions.codegeneration.core.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.runtime.handles/4.0.0/system.runtime.handles.4.0.0.nupkg 19065ms
GET https://api.nuget.org/v3-flatcontainer/system.componentmodel/4.0.0/system.componentmodel.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.io.filesystem.primitives/4.0.0/system.io.filesystem.primitives.4.0.0.nupkg 18787ms
GET https://api.nuget.org/v3-flatcontainer/system.text.regularexpressions/4.0.10/system.text.regularexpressions.4.0.10.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.io.filesystem.primitives/4.0.1-beta-23516/system.io.filesystem.primitives.4.0.1-beta-23516.nupkg 18935ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.http.features/index.json
OK https://api.nuget.org/v3-flatcontainer/system.reflection.typeextensions/4.0.0/system.reflection.typeextensions.4.0.0.nupkg 19195ms
GET https://api.nuget.org/v3-flatcontainer/system.net.websockets/index.json
OK https://api.nuget.org/v3-flatcontainer/system.reflection.typeextensions/4.0.1-beta-23409/system.reflection.typeextensions.4.0.1-beta-23409.nupkg 18254ms
GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/4.0.0/system.diagnostics.debug.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.reflection.primitives/4.0.0/system.reflection.primitives.4.0.0.nupkg 18640ms
GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.x509certificates/index.json
OK https://api.nuget.org/v3-flatcontainer/system.objectmodel/4.0.10/system.objectmodel.4.0.10.nupkg 18802ms
GET https://api.nuget.org/v3-flatcontainer/ix-async/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.dataprotection/1.0.0-rc1-final/microsoft.aspnet.dataprotection.1.0.0-rc1-final.nupkg 18227ms
GET https://api.nuget.org/v3-flatcontainer/remotion.linq/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.optionsmodel/1.0.0-rc1-final/microsoft.extensions.optionsmodel.1.0.0-rc1-final.nupkg 18262ms
GET https://api.nuget.org/v3-flatcontainer/system.collections.immutable/index.json
OK https://api.nuget.org/v3-flatcontainer/system.net.http/4.0.1-beta-23516/system.net.http.4.0.1-beta-23516.nupkg 18577ms
GET https://api.nuget.org/v3-flatcontainer/system.objectmodel/4.0.11-beta-23516/system.objectmodel.4.0.11-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.webencoders.core/1.0.0-rc1-final/microsoft.extensions.webencoders.core.1.0.0-rc1-final.nupkg 18845ms
GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracing/4.0.0/system.diagnostics.tracing.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.diagnostics.abstractions/1.0.0-rc1-final/microsoft.aspnet.diagnostics.abstractions.1.0.0-rc1-final.nupkg 18770ms
GET https://api.nuget.org/v3-flatcontainer/system.threading/4.0.0/system.threading.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.webutilities/1.0.0-rc1-final/microsoft.aspnet.webutilities.1.0.0-rc1-final.nupkg 18823ms
GET https://api.nuget.org/v3-flatcontainer/system.collections.nongeneric/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.dnx.compilation.abstractions/1.0.0-rc1-final/microsoft.dnx.compilation.abstractions.1.0.0-rc1-final.nupkg 18902ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.cryptography.internal/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.cryptography.keyderivation/1.0.0-rc1-final/microsoft.aspnet.cryptography.keyderivation.1.0.0-rc1-final.nupkg 18770ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.dataprotection.abstractions/index.json
OK https://api.nuget.org/v3-flatcontainer/system.globalization.extensions/4.0.1-beta-23516/system.globalization.extensions.4.0.1-beta-23516.nupkg 18656ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry/index.json
OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.primitives/4.0.0/system.componentmodel.primitives.4.0.0.nupkg 18785ms
GET https://api.nuget.org/v3-flatcontainer/system.xml.readerwriter/4.0.10/system.xml.readerwriter.4.0.10.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.private.uri/4.0.1-beta-23516/system.private.uri.4.0.1-beta-23516.nupkg 18737ms
GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.tools/4.0.0/system.diagnostics.tools.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.private.uri/4.0.0/system.private.uri.4.0.0.nupkg 18911ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.binder/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.net.http.headers/1.0.0-rc1-final/microsoft.net.http.headers.1.0.0-rc1-final.nupkg 19016ms
GET https://api.nuget.org/v3-flatcontainer/system.net.primitives/4.0.0/system.net.primitives.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.core/6.0.0-rc1-final/microsoft.aspnet.mvc.core.6.0.0-rc1-final.nupkg 19656ms
GET https://api.nuget.org/v3-flatcontainer/system.text.encoding.extensions/4.0.11-beta-23516/system.text.encoding.extensions.4.0.11-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.cors/6.0.0-rc1-final/microsoft.aspnet.cors.6.0.0-rc1-final.nupkg 19568ms
GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.contracts/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.localization/1.0.0-rc1-final/microsoft.extensions.localization.1.0.0-rc1-final.nupkg 19580ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.authorization/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.jsonpatch/1.0.0-rc1-final/microsoft.aspnet.jsonpatch.1.0.0-rc1-final.nupkg 19633ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.abstractions/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.localization/1.0.0-rc1-final/microsoft.aspnet.localization.1.0.0-rc1-final.nupkg 19696ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.memorypool/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.razor.host/6.0.0-rc1-final/microsoft.aspnet.mvc.razor.host.6.0.0-rc1-final.nupkg 19744ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.localization.abstractions/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.razor.runtime.precompilation/4.0.0-rc1-final/microsoft.aspnet.razor.runtime.precompilation.4.0.0-rc1-final.nupkg 19840ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.globalization.cultureinfocache/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.pageexecutioninstrumentation.interfaces/1.0.0-rc1-final/microsoft.aspnet.pageexecutioninstrumentation.interfaces.1.0.0-rc1-final.nupkg 19893ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.dnx.compilation.csharp.common/1.0.0-rc1-final/microsoft.dnx.compilation.csharp.common.1.0.0-rc1-final.nupkg 19990ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.dnx.compilation.csharp.abstractions/1.0.0-rc1-final/microsoft.dnx.compilation.csharp.abstractions.1.0.0-rc1-final.nupkg 20002ms
OK https://api.nuget.org/v3-flatcontainer/system.runtime.loader/4.0.0-beta-23516/system.runtime.loader.4.0.0-beta-23516.nupkg 19968ms
OK https://api.nuget.org/v3-flatcontainer/system.threading.tasks.parallel/4.0.1-beta-23516/system.threading.tasks.parallel.4.0.1-beta-23516.nupkg 20210ms
GET https://api.nuget.org/v3-flatcontainer/system.collections.concurrent/4.0.10/system.collections.concurrent.4.0.10.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.antiforgery/1.0.0-rc1-final/microsoft.aspnet.antiforgery.1.0.0-rc1-final.nupkg 19783ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.html.abstractions/1.0.0-rc1-final/microsoft.aspnet.html.abstractions.1.0.0-rc1-final.nupkg 19360ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.caching.abstractions/1.0.0-rc1-final/microsoft.extensions.caching.abstractions.1.0.0-rc1-final.nupkg 19417ms
OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.primitives/4.0.0-beta-23516/system.security.cryptography.primitives.4.0.0-beta-23516.nupkg 19509ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.hosting.server.abstractions/1.0.0-rc1-final/microsoft.aspnet.hosting.server.abstractions.1.0.0-rc1-final.nupkg 18274ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.commandline/1.0.0-rc1-final/microsoft.extensions.configuration.commandline.1.0.0-rc1-final.nupkg 17919ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.environmentvariables/1.0.0-rc1-final/microsoft.extensions.configuration.environmentvariables.1.0.0-rc1-final.nupkg 17284ms
OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.stacktrace/4.0.1-beta-23516/system.diagnostics.stacktrace.4.0.1-beta-23516.nupkg 17448ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.primitives/1.0.0-rc1-final/microsoft.extensions.primitives.1.0.0-rc1-final.nupkg 17439ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.razor/4.0.0-rc1-final/microsoft.aspnet.razor.4.0.0-rc1-final.nupkg 17185ms
OK https://api.nuget.org/v3-flatcontainer/system.appcontext/4.0.1-beta-23516/system.appcontext.4.0.1-beta-23516.nupkg 17276ms
OK https://api.nuget.org/v3-flatcontainer/system.appcontext/4.0.0/system.appcontext.4.0.0.nupkg 16690ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.codeanalysis.common/1.1.0-rc1-20151109-01/microsoft.codeanalysis.common.1.1.0-rc1-20151109-01.nupkg 22158ms
GET https://api.nuget.org/v3-flatcontainer/system.reflection.metadata/index.json
GET https://api.nuget.org/v3-flatcontainer/microsoft.codeanalysis.analyzers/index.json
OK https://api.nuget.org/v3-flatcontainer/system.reflection.emit/4.0.0/system.reflection.emit.4.0.0.nupkg 22036ms
OK https://api.nuget.org/v3-flatcontainer/system.reflection.emit.ilgeneration/4.0.0/system.reflection.emit.ilgeneration.4.0.0.nupkg 21868ms
OK https://api.nuget.org/v3-flatcontainer/system.threading.overlapped/index.json 21353ms
GET https://api.nuget.org/v3-flatcontainer/system.threading.overlapped/4.0.0/system.threading.overlapped.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.text.encoding.extensions/4.0.10/system.text.encoding.extensions.4.0.10.nupkg 21268ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.codegeneration.core/1.0.0-rc1-final/microsoft.extensions.codegeneration.core.1.0.0-rc1-final.nupkg 21152ms
GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.process/index.json
OK https://api.nuget.org/v3-flatcontainer/system.componentmodel/4.0.0/system.componentmodel.4.0.0.nupkg 21330ms
OK https://api.nuget.org/v3-flatcontainer/system.text.regularexpressions/4.0.10/system.text.regularexpressions.4.0.10.nupkg 21740ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.http.features/index.json 21631ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.http.features/1.0.0-rc1-final/microsoft.aspnet.http.features.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.net.websockets/index.json 21890ms
GET https://api.nuget.org/v3-flatcontainer/system.net.websockets/4.0.0-beta-23516/system.net.websockets.4.0.0-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/4.0.0/system.diagnostics.debug.4.0.0.nupkg 21867ms
OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.x509certificates/index.json 21180ms
GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.x509certificates/4.0.0-beta-23516/system.security.cryptography.x509certificates.4.0.0-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/ix-async/index.json 21093ms
GET https://api.nuget.org/v3-flatcontainer/ix-async/1.2.5/ix-async.1.2.5.nupkg
OK https://api.nuget.org/v3-flatcontainer/remotion.linq/index.json 21403ms
GET https://api.nuget.org/v3-flatcontainer/remotion.linq/2.0.1/remotion.linq.2.0.1.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.collections.immutable/index.json 21488ms
GET https://api.nuget.org/v3-flatcontainer/system.collections.immutable/1.1.36/system.collections.immutable.1.1.36.nupkg
GET https://api.nuget.org/v3-flatcontainer/system.collections.immutable/1.1.37/system.collections.immutable.1.1.37.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.objectmodel/4.0.11-beta-23516/system.objectmodel.4.0.11-beta-23516.nupkg 21640ms
OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracing/4.0.0/system.diagnostics.tracing.4.0.0.nupkg 21633ms
OK https://api.nuget.org/v3-flatcontainer/system.threading/4.0.0/system.threading.4.0.0.nupkg 22110ms
OK https://api.nuget.org/v3-flatcontainer/system.collections.nongeneric/index.json 22045ms
GET https://api.nuget.org/v3-flatcontainer/system.collections.nongeneric/4.0.0/system.collections.nongeneric.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.cryptography.internal/index.json 21957ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.cryptography.internal/1.0.0-rc1-final/microsoft.aspnet.cryptography.internal.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.dataprotection.abstractions/index.json 22121ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.dataprotection.abstractions/1.0.0-rc1-final/microsoft.aspnet.dataprotection.abstractions.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry/index.json 22233ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry/4.0.0-beta-23516/microsoft.win32.registry.4.0.0-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.xml.readerwriter/4.0.10/system.xml.readerwriter.4.0.10.nupkg 22934ms
OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.tools/4.0.0/system.diagnostics.tools.4.0.0.nupkg 23066ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.binder/index.json 22906ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.binder/1.0.0-rc1-final/microsoft.extensions.configuration.binder.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.net.primitives/4.0.0/system.net.primitives.4.0.0.nupkg 23251ms
OK https://api.nuget.org/v3-flatcontainer/system.text.encoding.extensions/4.0.11-beta-23516/system.text.encoding.extensions.4.0.11-beta-23516.nupkg 23381ms
OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.contracts/index.json 23352ms
GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.contracts/4.0.1-beta-23516/system.diagnostics.contracts.4.0.1-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.authorization/index.json 23470ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.authorization/1.0.0-rc1-final/microsoft.aspnet.authorization.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.abstractions/index.json 23409ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.abstractions/6.0.0-rc1-final/microsoft.aspnet.mvc.abstractions.6.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.memorypool/index.json 23347ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.memorypool/1.0.0-rc1-final/microsoft.extensions.memorypool.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.localization.abstractions/index.json 23812ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.localization.abstractions/1.0.0-rc1-final/microsoft.extensions.localization.abstractions.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.globalization.cultureinfocache/index.json 23818ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.globalization.cultureinfocache/1.0.0-rc1-final/microsoft.extensions.globalization.cultureinfocache.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.collections.concurrent/4.0.10/system.collections.concurrent.4.0.10.nupkg 22896ms
OK https://api.nuget.org/v3-flatcontainer/system.reflection.metadata/index.json 14009ms
GET https://api.nuget.org/v3-flatcontainer/system.reflection.metadata/1.1.0/system.reflection.metadata.1.1.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.codeanalysis.analyzers/index.json 14210ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.codeanalysis.analyzers/1.0.0/microsoft.codeanalysis.analyzers.1.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.threading.overlapped/4.0.0/system.threading.overlapped.4.0.0.nupkg 13553ms
OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.process/index.json 13253ms
GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.process/4.0.0-beta-23409/system.diagnostics.process.4.0.0-beta-23409.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.http.features/1.0.0-rc1-final/microsoft.aspnet.http.features.1.0.0-rc1-final.nupkg 12128ms
OK https://api.nuget.org/v3-flatcontainer/system.net.websockets/4.0.0-beta-23516/system.net.websockets.4.0.0-beta-23516.nupkg 11784ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.win32.primitives/index.json
OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.x509certificates/4.0.0-beta-23516/system.security.cryptography.x509certificates.4.0.0-beta-23516.nupkg 11785ms
GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.encoding/index.json
OK https://api.nuget.org/v3-flatcontainer/ix-async/1.2.5/ix-async.1.2.5.nupkg 11856ms
OK https://api.nuget.org/v3-flatcontainer/remotion.linq/2.0.1/remotion.linq.2.0.1.nupkg 12412ms
OK https://api.nuget.org/v3-flatcontainer/system.collections.immutable/1.1.36/system.collections.immutable.1.1.36.nupkg 12485ms
OK https://api.nuget.org/v3-flatcontainer/system.collections.immutable/1.1.37/system.collections.immutable.1.1.37.nupkg 13029ms
OK https://api.nuget.org/v3-flatcontainer/system.collections.nongeneric/4.0.0/system.collections.nongeneric.4.0.0.nupkg 11416ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.cryptography.internal/1.0.0-rc1-final/microsoft.aspnet.cryptography.internal.1.0.0-rc1-final.nupkg 11413ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.dataprotection.abstractions/1.0.0-rc1-final/microsoft.aspnet.dataprotection.abstractions.1.0.0-rc1-final.nupkg 11295ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry/4.0.0-beta-23516/microsoft.win32.registry.4.0.0-beta-23516.nupkg 11264ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.binder/1.0.0-rc1-final/microsoft.extensions.configuration.binder.1.0.0-rc1-final.nupkg 10055ms
OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.contracts/4.0.1-beta-23516/system.diagnostics.contracts.4.0.1-beta-23516.nupkg 8589ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.authorization/1.0.0-rc1-final/microsoft.aspnet.authorization.1.0.0-rc1-final.nupkg 8666ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.abstractions/6.0.0-rc1-final/microsoft.aspnet.mvc.abstractions.6.0.0-rc1-final.nupkg 9230ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.routing/index.json
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.memorypool/1.0.0-rc1-final/microsoft.extensions.memorypool.1.0.0-rc1-final.nupkg 9312ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.localization.abstractions/1.0.0-rc1-final/microsoft.extensions.localization.abstractions.1.0.0-rc1-final.nupkg 8845ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.globalization.cultureinfocache/1.0.0-rc1-final/microsoft.extensions.globalization.cultureinfocache.1.0.0-rc1-final.nupkg 8798ms
OK https://api.nuget.org/v3-flatcontainer/system.reflection.metadata/1.1.0/system.reflection.metadata.1.1.0.nupkg 9506ms
GET https://api.nuget.org/v3-flatcontainer/system.text.encoding.extensions/4.0.0/system.text.encoding.extensions.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.codeanalysis.analyzers/1.0.0/microsoft.codeanalysis.analyzers.1.0.0.nupkg 9747ms
OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.process/4.0.0-beta-23409/system.diagnostics.process.4.0.0-beta-23409.nupkg 9741ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.win32.primitives/index.json 9412ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.win32.primitives/4.0.0/microsoft.win32.primitives.4.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.encoding/index.json 9138ms
GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.encoding/4.0.0-beta-23516/system.security.cryptography.encoding.4.0.0-beta-23516.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.routing/index.json 3881ms
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.routing/1.0.0-rc1-final/microsoft.aspnet.routing.1.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/system.text.encoding.extensions/4.0.0/system.text.encoding.extensions.4.0.0.nupkg 2143ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.win32.primitives/4.0.0/microsoft.win32.primitives.4.0.0.nupkg 1341ms
OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.encoding/4.0.0-beta-23516/system.security.cryptography.encoding.4.0.0-beta-23516.nupkg 1347ms
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.routing/1.0.0-rc1-final/microsoft.aspnet.routing.1.0.0-rc1-final.nupkg 1293ms
Installing Microsoft.Extensions.Configuration.UserSecrets.1.0.0-rc1-final
Installing Microsoft.Extensions.Logging.Debug.1.0.0-rc1-final
Installing Microsoft.Extensions.Logging.Abstractions.1.0.0-rc1-final
Installing Microsoft.Extensions.Logging.1.0.0-rc1-final
Installing Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc1-final
Installing Microsoft.Extensions.Configuration.FileProviderExtensions.1.0.0-rc1-final
Installing Microsoft.Extensions.Configuration.FileExtensions.1.0.0-rc1-final
Installing Microsoft.AspNet.FileProviders.Physical.1.0.0-rc1-final
Installing Microsoft.AspNet.FileProviders.Abstractions.1.0.0-rc1-final
Installing Microsoft.Extensions.Primitives.1.0.0-rc1-final
Installing Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc1-final
Installing Microsoft.Extensions.Logging.Console.1.0.0-rc1-final
Installing Microsoft.Extensions.PlatformAbstractions.1.0.0-rc1-final
Installing Microsoft.Extensions.Configuration.Json.1.0.0-rc1-final
Installing Newtonsoft.Json.6.0.6
Installing Microsoft.Extensions.Configuration.1.0.0-rc1-final
Installing Microsoft.AspNet.Tooling.Razor.1.0.0-rc1-final
Installing Microsoft.AspNet.Razor.Runtime.4.0.0-rc1-final
Installing Microsoft.AspNet.Html.Abstractions.1.0.0-rc1-final
Installing Microsoft.Extensions.WebEncoders.Core.1.0.0-rc1-final
Installing Microsoft.AspNet.Razor.4.0.0-rc1-final
Installing Microsoft.AspNet.IISPlatformHandler.1.0.0-rc1-final
Installing Microsoft.AspNet.Http.1.0.0-rc1-final
Installing Microsoft.Net.Http.Headers.1.0.0-rc1-final
Installing Microsoft.AspNet.WebUtilities.1.0.0-rc1-final
Installing Microsoft.AspNet.Http.Abstractions.1.0.0-rc1-final
Installing Microsoft.AspNet.Http.Features.1.0.0-rc1-final
Installing Microsoft.AspNet.Http.Extensions.1.0.0-rc1-final
Installing Microsoft.AspNet.Server.Kestrel.1.0.0-rc1-final
Installing System.Numerics.Vectors.4.1.1-beta-23516
Installing Microsoft.AspNet.Hosting.1.0.0-rc1-final
Installing Microsoft.Extensions.DependencyInjection.1.0.0-rc1-final
Installing Microsoft.Dnx.Compilation.Abstractions.1.0.0-rc1-final
Installing Microsoft.Extensions.Configuration.CommandLine.1.0.0-rc1-final
Installing Microsoft.Extensions.Configuration.EnvironmentVariables.1.0.0-rc1-final
Installing System.Diagnostics.DiagnosticSource.4.0.0-beta-23516
Installing System.Runtime.4.0.0
Installing System.Diagnostics.Tracing.4.0.0
Installing System.Threading.4.0.0
Installing Microsoft.AspNet.Hosting.Abstractions.1.0.0-rc1-final
Installing Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-rc1-final
Installing Microsoft.AspNet.Authentication.Cookies.1.0.0-rc1-final
Installing Microsoft.AspNet.Authentication.1.0.0-rc1-final
Installing Microsoft.AspNet.DataProtection.1.0.0-rc1-final
Installing Microsoft.AspNet.Cryptography.Internal.1.0.0-rc1-final
Installing Microsoft.AspNet.DataProtection.Abstractions.1.0.0-rc1-final
Installing Microsoft.Extensions.OptionsModel.1.0.0-rc1-final
Installing Microsoft.Extensions.Configuration.Binder.1.0.0-rc1-final
Installing Microsoft.Extensions.WebEncoders.1.0.0-rc1-final
Installing Microsoft.AspNet.StaticFiles.1.0.0-rc1-final
Installing EntityFramework.SQLite.7.0.0-rc1-final
Installing Microsoft.Data.Sqlite.1.0.0-rc1-final
Installing EntityFramework.Relational.7.0.0-rc1-final
Installing EntityFramework.Core.7.0.0-rc1-final
Installing Microsoft.Extensions.Caching.Memory.1.0.0-rc1-final
Installing Microsoft.Extensions.Caching.Abstractions.1.0.0-rc1-final
Installing Ix-Async.1.2.5
Installing Remotion.Linq.2.0.1
Installing System.Collections.Immutable.1.1.36
Installing EntityFramework.MicrosoftSqlServer.7.0.0-rc1-final
Installing Microsoft.AspNet.Diagnostics.Entity.7.0.0-rc1-final
Installing Microsoft.AspNet.Diagnostics.1.0.0-rc1-final
Installing Microsoft.AspNet.Diagnostics.Abstractions.1.0.0-rc1-final
Installing Microsoft.AspNet.Identity.EntityFramework.3.0.0-rc1-final
Installing Microsoft.AspNet.Identity.3.0.0-rc1-final
Installing Microsoft.AspNet.Cryptography.KeyDerivation.1.0.0-rc1-final
Installing EntityFramework.Commands.7.0.0-rc1-final
Installing EntityFramework.Relational.Design.7.0.0-rc1-final
Installing Microsoft.Dnx.Runtime.1.0.0-rc1-final
Installing Microsoft.Dnx.Loader.1.0.0-rc1-final
Installing Microsoft.CodeAnalysis.CSharp.1.1.0-rc1-20151109-01
Installing Microsoft.CodeAnalysis.Common.1.1.0-rc1-20151109-01
Installing System.Collections.Immutable.1.1.37
Installing System.Resources.ResourceManager.4.0.0
Installing System.Diagnostics.Debug.4.0.0
Installing System.Collections.4.0.0
Installing System.Linq.4.0.0
Installing System.Runtime.Extensions.4.0.0
Installing System.Globalization.4.0.0
Installing Microsoft.CodeAnalysis.Analyzers.1.0.0
Installing System.Reflection.Metadata.1.1.0
Installing System.Reflection.Primitives.4.0.0
Installing System.IO.4.0.0
Installing System.Text.Encoding.4.0.0
Installing System.Runtime.InteropServices.4.0.0
Installing System.Reflection.4.0.0
Installing System.Reflection.Extensions.4.0.0
Installing System.Text.Encoding.Extensions.4.0.0
Installing Microsoft.Extensions.CodeGenerators.Mvc.1.0.0-rc1-final
Installing Microsoft.Extensions.CodeGeneration.Templating.1.0.0-rc1-final
Installing Microsoft.Dnx.Compilation.CSharp.Abstractions.1.0.0-rc1-final
Installing Microsoft.Extensions.CodeGeneration.1.0.0-rc1-final
Installing Microsoft.Extensions.CodeGeneration.Core.1.0.0-rc1-final
Installing Microsoft.Extensions.CodeGeneration.EntityFramework.1.0.0-rc1-final
Installing Microsoft.AspNet.Mvc.6.0.0-rc1-final
Installing Microsoft.AspNet.Mvc.Localization.6.0.0-rc1-final
Installing Microsoft.Extensions.Localization.1.0.0-rc1-final
Installing Microsoft.Extensions.Localization.Abstractions.1.0.0-rc1-final
Installing Microsoft.AspNet.Localization.1.0.0-rc1-final
Installing Microsoft.Extensions.Globalization.CultureInfoCache.1.0.0-rc1-final
Installing Microsoft.AspNet.Mvc.Razor.6.0.0-rc1-final
Installing Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.1.0.0-rc1-final
Installing Microsoft.AspNet.Mvc.Razor.Host.6.0.0-rc1-final
Installing Microsoft.AspNet.Razor.Runtime.Precompilation.4.0.0-rc1-final
Installing Microsoft.Dnx.Compilation.CSharp.Common.1.0.0-rc1-final
Installing Microsoft.AspNet.Mvc.ApiExplorer.6.0.0-rc1-final
Installing Microsoft.AspNet.Mvc.Core.6.0.0-rc1-final
Installing Microsoft.AspNet.Authorization.1.0.0-rc1-final
Installing Microsoft.Extensions.MemoryPool.1.0.0-rc1-final
Installing Microsoft.AspNet.Mvc.Abstractions.6.0.0-rc1-final
Installing Microsoft.AspNet.Routing.1.0.0-rc1-final
Installing Microsoft.AspNet.Mvc.Cors.6.0.0-rc1-final
Installing Microsoft.AspNet.Cors.6.0.0-rc1-final
Installing Microsoft.AspNet.Mvc.DataAnnotations.6.0.0-rc1-final
Installing Microsoft.AspNet.Mvc.Formatters.Json.6.0.0-rc1-final
Installing Microsoft.AspNet.JsonPatch.1.0.0-rc1-final
Installing Microsoft.AspNet.Mvc.ViewFeatures.6.0.0-rc1-final
Installing Microsoft.AspNet.Antiforgery.1.0.0-rc1-final
Installing Microsoft.AspNet.Mvc.TagHelpers.6.0.0-rc1-final
Installing Microsoft.Extensions.FileSystemGlobbing.1.0.0-rc1-final
Installing System.Runtime.Serialization.Primitives.4.0.11-beta-23409
Installing System.Threading.Tasks.4.0.0
Installing System.Runtime.4.0.21-beta-23516
Installing System.Private.Uri.4.0.1-beta-23516
Installing System.Globalization.4.0.11-beta-23516
Installing System.Collections.4.0.11-beta-23516
Installing System.Runtime.Extensions.4.0.11-beta-23516
Installing System.Collections.Concurrent.4.0.11-beta-23516
Installing System.Diagnostics.Debug.4.0.10
Installing System.Threading.4.0.10
Installing System.Diagnostics.Tracing.4.0.20
Installing System.Threading.Tasks.4.0.10
Installing System.Reflection.4.1.0-beta-23225
Installing System.Runtime.InteropServices.4.0.21-beta-23516
Installing System.Runtime.Handles.4.0.0
Installing System.Linq.4.0.1-beta-23516
Installing System.Runtime.Extensions.4.0.10
Installing System.Runtime.4.0.20
Installing System.Private.Uri.4.0.0
Installing System.Threading.4.0.11-beta-23516
Installing System.ComponentModel.4.0.1-beta-23516
Installing System.Diagnostics.Debug.4.0.11-beta-23516
Installing System.Linq.Expressions.4.0.11-beta-23516
Installing System.Resources.ResourceManager.4.0.1-beta-23516
Installing System.Console.4.0.0-beta-23516
Installing System.IO.4.0.11-beta-23516
Installing System.Threading.Tasks.4.0.11-beta-23516
Installing System.Reflection.Extensions.4.0.1-beta-23516
Installing System.Collections.4.0.10
Installing System.IO.FileSystem.Watcher.4.0.0-beta-23516
Installing System.IO.FileSystem.4.0.1-beta-23516
Installing System.Globalization.4.0.10
Installing System.Text.RegularExpressions.4.0.11-beta-23516
Installing System.IO.FileSystem.Primitives.4.0.1-beta-23516
Installing System.AppContext.4.0.0
Installing System.IO.FileSystem.Primitives.4.0.0
Installing System.Dynamic.Runtime.4.0.11-beta-23516
Installing System.Reflection.4.0.10
Installing System.Linq.Expressions.4.0.10
Installing System.Reflection.TypeExtensions.4.0.0
Installing System.ObjectModel.4.0.10
Installing System.Reflection.Emit.4.0.0
Installing System.Reflection.Emit.ILGeneration.4.0.0
Installing System.Diagnostics.Tools.4.0.1-beta-23516
Installing System.Threading.Thread.4.0.0-beta-23516
Installing System.Security.Cryptography.Algorithms.4.0.0-beta-23516
Installing System.Security.Cryptography.Primitives.4.0.0-beta-23516
Installing Microsoft.CSharp.4.0.1-beta-23516
Installing System.Dynamic.Runtime.4.0.0
Installing System.Linq.Expressions.4.0.0
Installing System.Runtime.InteropServices.4.0.20
Installing System.Text.Encoding.4.0.11-beta-23516
Installing System.Runtime.Handles.4.0.1-beta-23516
Installing System.Reflection.4.1.0-beta-23516
Installing System.Data.Common.4.0.1-beta-23516
Installing System.Text.RegularExpressions.4.0.0
Installing System.Collections.NonGeneric.4.0.0
Installing System.ComponentModel.Annotations.4.0.11-beta-23516
Installing System.Linq.Queryable.4.0.1-beta-23516
Installing System.ObjectModel.4.0.11-beta-23516
Installing System.Reflection.TypeExtensions.4.0.1-beta-23409
Installing System.ComponentModel.TypeConverter.4.0.1-beta-23516
Installing System.ComponentModel.Primitives.4.0.0
Installing System.Text.Encoding.CodePages.4.0.1-beta-23516
Installing System.Text.Encoding.4.0.10
Installing System.Threading.ThreadPool.4.0.10-beta-23516
Installing System.Data.SqlClient.4.0.0-beta-23516
Installing System.Xml.ReaderWriter.4.0.0
Installing System.Data.Common.4.0.0
Installing System.Threading.Timer.4.0.1-beta-23516
Installing System.Resources.ReaderWriter.4.0.0-beta-23516
Installing System.IO.4.0.10
Installing System.Xml.XDocument.4.0.11-beta-23516
Installing System.Runtime.Loader.4.0.0-beta-23516
Installing System.AppContext.4.0.1-beta-23516
Installing System.Xml.ReaderWriter.4.0.11-beta-23516
Installing System.Text.Encoding.Extensions.4.0.10
Installing System.IO.FileSystem.4.0.0
Installing System.Threading.Overlapped.4.0.0
Installing System.ComponentModel.4.0.0
Installing System.Text.RegularExpressions.4.0.10
Installing System.Security.Principal.4.0.1-beta-23516
Installing System.Net.Primitives.4.0.11-beta-23516
Installing System.Globalization.Extensions.4.0.1-beta-23516
Installing System.Security.Claims.4.0.1-beta-23516
Installing System.Net.WebSockets.4.0.0-beta-23516
Installing Microsoft.Win32.Primitives.4.0.0
Installing System.Security.Cryptography.X509Certificates.4.0.0-beta-23516
Installing System.Security.Cryptography.Encoding.4.0.0-beta-23516
Installing System.Text.Encoding.Extensions.4.0.11-beta-23516
Installing System.Security.Principal.Windows.4.0.0-beta-23516
Installing System.Security.Claims.4.0.0
Installing System.Security.Principal.4.0.0
Installing System.Diagnostics.Contracts.4.0.1-beta-23516
Installing System.Net.Http.4.0.1-beta-23516
Installing System.Net.Primitives.4.0.0
Installing System.Diagnostics.Tools.4.0.0
Installing System.Xml.ReaderWriter.4.0.10
Installing Microsoft.Win32.Registry.4.0.0-beta-23516
Installing System.Diagnostics.TraceSource.4.0.0-beta-23516
Installing System.Diagnostics.Tracing.4.0.21-beta-23516
Installing System.Diagnostics.StackTrace.4.0.1-beta-23516
Installing System.Diagnostics.Process.4.0.0-beta-23409
Installing System.Threading.Tasks.Parallel.4.0.1-beta-23516
Installing System.Collections.Concurrent.4.0.10
Writing lock file /code/project.lock.json
Restore complete, 195226ms elapsed
Feeds used:
https://api.nuget.org/v3-flatcontainer/
Installed:
225 package(s) to /root/.dnx/packages
---> a1b53e151896
Removing intermediate container a77a69c54068
Step 5 : EXPOSE 5000
---> Running in 5fbf0e3fcdb7
---> 9011a7a34b7c
Removing intermediate container 5fbf0e3fcdb7
Step 6 : ENTRYPOINT dnx web
---> Running in 93dee5738659
---> 9fbe16c132e3
Removing intermediate container 93dee5738659
Successfully built 9fbe16c132e3
SECURITY WARNING: You are building a Docker image from Windows against a non-Windows Docker host. All files and directories added to build context will have '-rwxr-xr-x' permissions. It is recommended to double check and reset permissions for sensitive files and directories.
06:06:40:640
PS C:\Users\Alex\www\aspnet-docker>
FROM microsoft/aspnet
Start: 06:00:36:036
Finish: 06:00:45:045
PS C:\Users\Alex\www\aspnet-docker> get-date -format "hh:mm:ss:ms"; docker build . ;get-date -format "hh:mm:ss:ms"
06:00:36:036
Sending build context to Docker daemon 1.211 MB
Step 1 : FROM aspnet-quickbuild-nocurl
---> dde106dedec1
Step 2 : WORKDIR /code
---> Using cache
---> 5f5db03a4608
Step 3 : COPY WebApplication /code
---> 094560c2befc
Removing intermediate container ada7d18306c5
Step 4 : RUN dnu restore
---> Running in 427d1ace6421
Microsoft .NET Development Utility Mono-x64-1.0.0-rc1-16231
CACHE https://api.nuget.org/v3/index.json
Restoring packages for /code/project.json
GET https://api.nuget.org/v3-flatcontainer/entityframework.sqlite/index.json
OK https://api.nuget.org/v3-flatcontainer/entityframework.sqlite/index.json 1083ms
GET https://api.nuget.org/v3-flatcontainer/entityframework.sqlite/7.0.0-rc1-final/entityframework.sqlite.7.0.0-rc1-final.nupkg
OK https://api.nuget.org/v3-flatcontainer/entityframework.sqlite/7.0.0-rc1-final/entityframework.sqlite.7.0.0-rc1-final.nupkg 754ms
Installing EntityFramework.SQLite.7.0.0-rc1-final
Writing lock file /code/project.lock.json
Restore complete, 7155ms elapsed
Feeds used:
https://api.nuget.org/v3-flatcontainer/
Installed:
1 package(s) to /root/.dnx/packages
---> 107441c46fa0
Removing intermediate container 427d1ace6421
Step 5 : EXPOSE 5000
---> Running in ab9308f34822
---> 5adb0fdfdf75
Removing intermediate container ab9308f34822
Step 6 : ENTRYPOINT dnx web
---> Running in 86bb030104dc
---> a98bf131cf77
Removing intermediate container 86bb030104dc
Successfully built a98bf131cf77
SECURITY WARNING: You are building a Docker image from Windows against a non-Windows Docker host. All files and directories added to build context will have '-rwxr-xr-x' permissions. It is recommended to double check and reset permissions for sensitive files and directories.
06:00:45:045