Giter Site home page Giter Site logo

openchain's Introduction

Openchain Reference Implementation

Openchain is an open source distributed ledger technology. It is suited for organizations wishing to issue and manage digital assets in a robust, secure and scalable way. Visit openchain.org for more information.

The full documentation for Openchain is available at docs.openchain.org.

Installation

Please refer to the installation guide to deploy the Openchain server.

Client

A reference client implementation is available at wallet.openchain.org. The source code is available on GitHub.

License

Copyright 2015 Coinprism, Inc.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

openchain's People

Contributors

flavien avatar

Stargazers

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

Watchers

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

openchain's Issues

Mysql

Is there an openchain mysql server instead of the mongoldb?

Server Error

Why do I get the below error

ashok@ashok-AOD270:~/Documents/Confidential/Fusionnovate/GlobaRem/openchain$ sudo docker-compose up -d
Building openchain
Step 1 : FROM microsoft/dotnet:1.1-sdk-projectjson
---> 89219b9cef75
Step 2 : RUN mkdir -p /tmp/openchain && mkdir -p /openchain
---> Running in 021ca1e6adc1
write pipe: bad file descriptor
ERROR: Service 'openchain' failed to build: The command '/bin/sh -c mkdir -p /tmp/openchain && mkdir -p /openchain' returned a non-zero code: 1

Remove units of an asset from a closed-loop ledger

We are trying to model a mobile money system on top of openchain.

To satisfy regulators there are certain requirements we must meet.

One in particular is to ensure that the sum of currency on the platform is backed by a bank account.

In a case where a user joins the platform we will issue n units of x currency to the user's account.

In a case where the user leaves the platform or wishes to convert a portion of their balance on the platform to fiat currency then how can we remove or retire those portions of the asset from the ledger so the amount of asset on the platform is consistent with the balance of the backing bank account?

@Flavien

/query/recordsbyname

I am trying to query using the above mentioned method and i am not getting any response. Other queries are working fine. Any problem with this particular method.

Question: GetKeyStartingFrom method

Hello @Flavien

I've written an entity framework storage and anchor state engine for openchain.

Everything seems to be working fine but I have one concern.

I modeled it from the Sqlite storage engine.

This method

        public async Task<IReadOnlyList<Record>> GetKeyStartingFrom(ByteString prefix)
        {
            byte[] from = prefix.ToByteArray();
            byte[] to = prefix.ToByteArray();

            if (to[to.Length - 1] < 255)
                to[to.Length - 1] += 1;

            var fromString = Encoding.UTF8.GetString(from);
            var toString = Encoding.UTF8.GetString(to);

            var records = await Records.Where(r => Encoding.UTF8.GetString(r.Key).StartsWith(fromString)).ToListAsync();

            return records.Select(r =>
            {
                return new Record(new ByteString(r.Key), r.Value != null ? new ByteString(r.Value) : ByteString.Empty, new ByteString(r.Version));


            }).ToList().AsReadOnly();
        }

is based on

public async Task<IReadOnlyList<Record>> GetKeyStartingFrom(ByteString prefix)
        {
            byte[] from = prefix.ToByteArray();
            byte[] to = prefix.ToByteArray();

            if (to[to.Length - 1] < 255)
                to[to.Length - 1] += 1;

            return await ExecuteAsync(@"
                    SELECT  Key, Value, Version
                    FROM    Records
                    WHERE   Key >= @from AND Key < @to",
                reader => new Record(
                    new ByteString((byte[])reader.GetValue(0)),
                    reader.GetValue(1) == null ? ByteString.Empty : new ByteString((byte[])reader.GetValue(1)),
                    new ByteString((byte[])reader.GetValue(2))),
                new Dictionary<string, object>()
                {
                    ["@from"] = from,
                    ["@to"] = to
                });
        }

The section I am concerned about is here:

var fromString = Encoding.UTF8.GetString(from);
            var toString = Encoding.UTF8.GetString(to);

            var records = await Records.Where(r => Encoding.UTF8.GetString(r.Key).StartsWith(fromString)).ToListAsync();

Will this line always do as expected by openchain?

Openchain Installation Issue Error

Hi,

When I am trying to "docker-compose up -d" command on my Ubuntu server, i am getting Error
" Can't find a suitable configuration file in this directory or any
parent. Are you in the right directory?

    Supported filenames: docker-compose.yml, docker-compose.yaml "

I was downloaded openchain from git and trying to install, on downloaded openchain also i am not getten "docker-compose.yml" and .yaml file and same on nginx also i am not get nginx.conf file.

Please provide any one to me exact openchain install process to, i am following installation steps from "https://docs.openchain.org/en/latest/general/docker-deployment.html#install-docker" given URL. but i am getting above Error.

Can't run Openchain Network. MSBUILD : error MSB1003: Specify a project or solution file. The current working directory does not contain a project or solution file.

Hello.
I was encountered a problem when launching Openchain Network via docker or without docker.

The dockerfile inside the repository contains the old .NET image address, so I specified the correct one. Tried different versions of .NET, but I get the same error every time.

➜  openchain git:(master) ✗ docker-compose up -d     
/usr/lib/python3/dist-packages/requests/__init__.py:89: RequestsDependencyWarning: urllib3 (1.26.12) or chardet (3.0.4) doesn't match a supported version!
  warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "
Building openchain
Sending build context to Docker daemon  7.168kB
Step 1/12 : FROM mcr.microsoft.com/dotnet/sdk:2.1
2.1: Pulling from dotnet/sdk
eb18d230e067: Pull complete 
83600c1b4583: Pull complete 
4ae15c65bfa0: Pull complete 
c19c058edda5: Pull complete 
fa5b7de410ab: Pull complete 
6e1ebcd38125: Pull complete 
d22db8cd915e: Pull complete 
Digest: sha256:4db9513d5b1bcf4b88c5700f9b831908d435d9771fd28a338b123e5ab8eec036
Status: Downloaded newer image for mcr.microsoft.com/dotnet/sdk:2.1
 ---> 8a72748c6b28
Step 2/12 : RUN mkdir -p /tmp/openchain     && mkdir -p /openchain
 ---> Running in 0a902efe6751
Removing intermediate container 0a902efe6751
 ---> 04f1b93b1c48
Step 3/12 : COPY project.json /tmp/openchain/project.json
 ---> fa7a79d05b38
Step 4/12 : COPY Program.cs /tmp/openchain/Program.cs
 ---> d42c41a04d1d
Step 5/12 : COPY project.json /openchain/project.json
 ---> 21217b4b79d4
Step 6/12 : COPY Program.cs /openchain/Program.cs
 ---> f5f45cd6c6c4
Step 7/12 : RUN cd /tmp/openchain
 ---> Running in ff82351ee61b
Removing intermediate container ff82351ee61b
 ---> 249cf0dbbdd3
Step 8/12 : RUN dotnet restore
 ---> Running in 6e3d22a14bda
MSBUILD : error MSB1003: Specify a project or solution file. The current working directory does not contain a project or solution file.
The command '/bin/sh -c dotnet restore' returned a non-zero code: 1
ERROR: Service 'openchain' failed to build : Build failed

Here is my VM's configuration

➜  openchain git:(master) ✗ neofetch
            .-/+oossssoo+/-.               [email protected] 
        `:+ssssssssssssssssss+:`           -------------------------------- 
      -+ssssssssssssssssssyyssss+-         OS: Ubuntu 20.04.5 LTS x86_64 
    .ossssssssssssssssssdMMMNysssso.       Host: KVM RHEL 7.6.0 PC (i440FX + PIIX, 1996) 
   /ssssssssssshdmmNNmmyNMMMMhssssss/      Kernel: 5.4.0-28-generic 
  +ssssssssshmydMMMMMMMNddddyssssssss+     Uptime: 2 days, 2 hours, 6 mins 
 /sssssssshNMMMyhhyyyyhmNMMMNhssssssss/    Packages: 496 (dpkg), 5 (snap) 
.ssssssssdMMMNhsssssssssshNMMMdssssssss.   Shell: zsh 5.8 
+sssshhhyNMMNyssssssssssssyNMMMysssssss+   Resolution: 1024x768 
ossyNMMMNyMMhsssssssssssssshmmmhssssssso   Terminal: /dev/pts/1 
ossyNMMMNyMMhsssssssssssssshmmmhssssssso   CPU: QEMU Virtual version 2.5+ (6) @ 2.000GHz 
+sssshhhyNMMNyssssssssssssyNMMMysssssss+   GPU: 00:02.0 Cirrus Logic GD 5446 
.ssssssssdMMMNhsssssssssshNMMMdssssssss.   Memory: 242MiB / 16013MiB 
 /sssssssshNMMMyhhyyyyhdNMMMNhssssssss/
  +sssssssssdmydMMMMMMMMddddyssssssss+                             
   /ssssssssssshdmNNNNmyNMMMMhssssss/                              
    .ossssssssssssssssssdMMMNysssso.
      -+sssssssssssssssssyyyssss+-
        `:+ssssssssssssssssss+:`
            .-/+oossssoo+/-.


Please help me solve this problem if someone has already encountered this. Thanks in advance for your help!

Build docker `docker-compose up -d` take a long time.

When i build docker, It will stop on showing Installing System.Runtime.InteropServices.4.0.21-beta-23516.
Maybe it was ASPNET project issue? see here

Building openchain
Step 1 : FROM microsoft/aspnet:1.0.0-rc1-update1-coreclr
 ---> f0c2399dc7f2
Step 2 : RUN mkdir /openchain
 ---> Using cache
 ---> be667ef65df5
Step 3 : COPY project.json /openchain/project.json
 ---> Using cache
 ---> 61d1bc9e5511
Step 4 : WORKDIR /openchain
 ---> Using cache
 ---> 20b424daa7fe
Step 5 : RUN cd /openchain     && dnu restore
 ---> Running in 3ea78bf93361
Microsoft .NET Development Utility CoreClr-x64-1.0.0-rc1-16231

  GET https://api.nuget.org/v3/index.json
  OK https://api.nuget.org/v3/index.json 1029ms
Restoring packages for /openchain/project.json
  GET https://api.nuget.org/v3-flatcontainer/openchain.server/index.json
  GET https://api.nuget.org/v3-flatcontainer/openchain.sqlite/index.json
  GET https://api.nuget.org/v3-flatcontainer/openchain.validation.permissionbased/index.json
  GET https://api.nuget.org/v3-flatcontainer/openchain.anchoring.blockchain/index.json
  OK https://api.nuget.org/v3-flatcontainer/openchain.server/index.json 547ms
  GET https://api.nuget.org/v3-flatcontainer/openchain.server/0.5.1/openchain.server.0.5.1.nupkg
  OK https://api.nuget.org/v3-flatcontainer/openchain.validation.permissionbased/index.json 1144ms
  GET https://api.nuget.org/v3-flatcontainer/openchain.validation.permissionbased/0.5.1/openchain.validation.permissionbased.0.5.1.nupkg
  OK https://api.nuget.org/v3-flatcontainer/openchain.sqlite/index.json 1153ms
  GET https://api.nuget.org/v3-flatcontainer/openchain.sqlite/0.5.1/openchain.sqlite.0.5.1.nupkg
  OK https://api.nuget.org/v3-flatcontainer/openchain.anchoring.blockchain/index.json 1184ms
  GET https://api.nuget.org/v3-flatcontainer/openchain.anchoring.blockchain/0.5.1/openchain.anchoring.blockchain.0.5.1.nupkg
  OK https://api.nuget.org/v3-flatcontainer/openchain.sqlite/0.5.1/openchain.sqlite.0.5.1.nupkg 681ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlite/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.hosting/index.json
  GET https://api.nuget.org/v3-flatcontainer/openchain.infrastructure/index.json
  OK https://api.nuget.org/v3-flatcontainer/openchain.validation.permissionbased/0.5.1/openchain.validation.permissionbased.0.5.1.nupkg 917ms
  GET https://api.nuget.org/v3-flatcontainer/newtonsoft.json/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.csharp/index.json
  GET https://api.nuget.org/v3-flatcontainer/system.collections/index.json
  GET https://api.nuget.org/v3-flatcontainer/system.linq/index.json
  GET https://api.nuget.org/v3-flatcontainer/system.threading/index.json
  OK https://api.nuget.org/v3-flatcontainer/openchain.anchoring.blockchain/0.5.1/openchain.anchoring.blockchain.0.5.1.nupkg 1353ms
  GET https://api.nuget.org/v3-flatcontainer/system.net.http/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.abstractions/index.json
  GET https://api.nuget.org/v3-flatcontainer/nbitcoin/index.json
  OK https://api.nuget.org/v3-flatcontainer/openchain.server/0.5.1/openchain.server.0.5.1.nupkg 2550ms
  GET https://api.nuget.org/v3-flatcontainer/system.text.encoding/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.cors/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.iisplatformhandler/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.core/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.viewfeatures/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.server.kestrel/index.json
  OK https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlite/index.json 1080ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.websockets.server/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.console/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.json/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlite/1.0.0-rc1-final/microsoft.data.sqlite.1.0.0-rc1-final.nupkg
  GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.usersecrets/index.json
  GET https://api.nuget.org/v3-flatcontainer/system.net.websockets.client/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.collections/index.json 1089ms
  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/newtonsoft.json/index.json 1102ms
  GET https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.1/newtonsoft.json.8.0.1.nupkg
  OK https://api.nuget.org/v3-flatcontainer/microsoft.csharp/index.json 1130ms
  OK https://api.nuget.org/v3-flatcontainer/system.linq/index.json 1127ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.csharp/4.0.1-beta-23516/microsoft.csharp.4.0.1-beta-23516.nupkg
  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/openchain.infrastructure/index.json 1152ms
  OK https://api.nuget.org/v3-flatcontainer/system.threading/index.json 1138ms
  GET https://api.nuget.org/v3-flatcontainer/system.threading/4.0.11-beta-23516/system.threading.4.0.11-beta-23516.nupkg
  GET https://api.nuget.org/v3-flatcontainer/openchain.infrastructure/0.5.1/openchain.infrastructure.0.5.1.nupkg
  OK https://api.nuget.org/v3-flatcontainer/system.text.encoding/index.json 289ms
  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/microsoft.aspnet.hosting/index.json 1383ms
  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/microsoft.aspnet.mvc.viewfeatures/index.json 372ms
  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.usersecrets/index.json 365ms
  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/system.net.http/index.json 1075ms
  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.logging.abstractions/index.json 1120ms
  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/newtonsoft.json/8.0.1/newtonsoft.json.8.0.1.nupkg 651ms
  OK https://api.nuget.org/v3-flatcontainer/microsoft.csharp/4.0.1-beta-23516/microsoft.csharp.4.0.1-beta-23516.nupkg 637ms
  GET https://api.nuget.org/v3-flatcontainer/system.runtime/index.json
  GET https://api.nuget.org/v3-flatcontainer/system.runtime.interopservices/index.json
  GET https://api.nuget.org/v3-flatcontainer/system.resources.resourcemanager/index.json
  GET https://api.nuget.org/v3-flatcontainer/system.dynamic.runtime/index.json
  GET https://api.nuget.org/v3-flatcontainer/system.linq.expressions/index.json
  GET https://api.nuget.org/v3-flatcontainer/system.reflection.typeextensions/index.json
  GET https://api.nuget.org/v3-flatcontainer/system.reflection.primitives/index.json
  GET https://api.nuget.org/v3-flatcontainer/system.reflection.extensions/index.json
  GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/index.json
  GET https://api.nuget.org/v3-flatcontainer/system.reflection/index.json
  GET https://api.nuget.org/v3-flatcontainer/system.globalization/index.json
  GET https://api.nuget.org/v3-flatcontainer/system.runtime.extensions/index.json
  GET https://api.nuget.org/v3-flatcontainer/system.objectmodel/index.json
  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 397ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.antiforgery/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.diagnostics.abstractions/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.html.abstractions/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.dataannotations/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.formatters.json/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 372ms
  GET https://api.nuget.org/v3-flatcontainer/system.threading.tasks/index.json
  GET https://api.nuget.org/v3-flatcontainer/system.io/index.json
  GET https://api.nuget.org/v3-flatcontainer/system.net.primitives/index.json
  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.core/index.json 1035ms
  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/system.linq.expressions/index.json 338ms
  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.aspnet.antiforgery/index.json 304ms
  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.net.websockets.client/index.json 1068ms
  GET https://api.nuget.org/v3-flatcontainer/system.net.websockets.client/4.0.0-beta-23516/system.net.websockets.client.4.0.0-beta-23516.nupkg
  OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.console/index.json 1099ms
  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.aspnet.cors/index.json 1124ms
  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/nbitcoin/index.json 1714ms
  GET https://api.nuget.org/v3-flatcontainer/nbitcoin/2.1.5.9/nbitcoin.2.1.5.9.nupkg
  OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.dataannotations/index.json 365ms
  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.aspnet.server.kestrel/index.json 1142ms
  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.mvc.formatters.json/index.json 376ms
  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.aspnet.iisplatformhandler/index.json 1177ms
  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/system.linq/4.0.1-beta-23516/system.linq.4.0.1-beta-23516.nupkg 1113ms
  OK https://api.nuget.org/v3-flatcontainer/system.net.primitives/index.json 337ms
  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/system.collections/4.0.11-beta-23516/system.collections.4.0.11-beta-23516.nupkg 1265ms
  OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.websockets.server/index.json 1368ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.websockets.server/1.0.0-rc1-final/microsoft.aspnet.websockets.server.1.0.0-rc1-final.nupkg
  OK https://api.nuget.org/v3-flatcontainer/system.text.encoding/4.0.11-beta-23516/system.text.encoding.4.0.11-beta-23516.nupkg 1099ms
  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 1010ms
  GET https://api.nuget.org/v3-flatcontainer/system.runtime.serialization.primitives/index.json
  OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.cors/6.0.0-rc1-final/microsoft.aspnet.cors.6.0.0-rc1-final.nupkg 285ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.http.extensions/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.abstractions/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection.abstractions/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.optionsmodel/index.json
  OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.json/index.json 1410ms
  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.aspnet.hosting/1.0.0-rc1-final/microsoft.aspnet.hosting.1.0.0-rc1-final.nupkg 1124ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.fileproviders.physical/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.hosting.abstractions/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.hosting.server.abstractions/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.http/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.commandline/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.environmentvariables/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.dnx.compilation.abstractions/index.json
  GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.platformabstractions/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 295ms
  GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.diagnosticsource/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.threading/4.0.11-beta-23516/system.threading.4.0.11-beta-23516.nupkg 1439ms
  GET https://api.nuget.org/v3-flatcontainer/system.console/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.net.primitives/4.0.0/system.net.primitives.4.0.0.nupkg 339ms
  GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.stacktrace/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.globalization/index.json 842ms
  GET https://api.nuget.org/v3-flatcontainer/system.security.principal.windows/index.json
  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 1088ms
  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/microsoft.aspnet.http.extensions/index.json 279ms
  GET https://api.nuget.org/v3-flatcontainer/system.collections.concurrent/index.json
  OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.optionsmodel/index.json 286ms
  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/microsoft.aspnet.fileproviders.physical/index.json 289ms
  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.runtime.interopservices/index.json 1050ms
  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/openchain.infrastructure/0.5.1/openchain.infrastructure.0.5.1.nupkg 1701ms
  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.runtime/index.json 1082ms
  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/system.diagnostics.diagnosticsource/index.json 344ms
  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.extensions.configuration.commandline/index.json 380ms
  GET https://api.nuget.org/v3-flatcontainer/openchain.abstractions/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.dynamic.runtime/index.json 1118ms
  GET https://api.nuget.org/v3-flatcontainer/portable.bouncycastle/index.json
  OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection/index.json 389ms
  GET https://api.nuget.org/v3-flatcontainer/system.runtime.numerics/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.reflection.extensions/index.json 1129ms
  GET https://api.nuget.org/v3-flatcontainer/system.text.regularexpressions/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.objectmodel/index.json 1121ms
  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/system.reflection/index.json 1137ms
  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.principal.windows/index.json 297ms
  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/system.reflection.primitives/index.json 1153ms
  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/system.diagnostics.debug/index.json 1169ms
  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.threading.tasks/index.json 1044ms
  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.aspnet.html.abstractions/index.json 1208ms
  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/microsoft.aspnet.diagnostics.abstractions/index.json 1227ms
  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/system.io/index.json 1142ms
  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.aspnet.http/index.json 570ms
  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/microsoft.aspnet.http.extensions/1.0.0-rc1-final/microsoft.aspnet.http.extensions.1.0.0-rc1-final.nupkg 294ms
  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.resources.resourcemanager/index.json 1317ms
  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/system.text.encoding/4.0.0/system.text.encoding.4.0.0.nupkg 1172ms
  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.reflection.typeextensions/index.json 1331ms
  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/microsoft.extensions.optionsmodel/1.0.0-rc1-final/microsoft.extensions.optionsmodel.1.0.0-rc1-final.nupkg 295ms
  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/microsoft.aspnet.mvc.formatters.json/6.0.0-rc1-final/microsoft.aspnet.mvc.formatters.json.6.0.0-rc1-final.nupkg 1055ms
  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.runtime.extensions/index.json 1508ms
  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/microsoft.aspnet.mvc.core/6.0.0-rc1-final/microsoft.aspnet.mvc.core.6.0.0-rc1-final.nupkg 1238ms
  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.dataannotations/6.0.0-rc1-final/microsoft.aspnet.mvc.dataannotations.6.0.0-rc1-final.nupkg 1147ms
  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/portable.bouncycastle/index.json 459ms
  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/system.objectmodel/4.0.10/system.objectmodel.4.0.10.nupkg 314ms
  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.linq.expressions/4.0.0/system.linq.expressions.4.0.0.nupkg 1313ms
  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/microsoft.aspnet.antiforgery/1.0.0-rc1-final/microsoft.aspnet.antiforgery.1.0.0-rc1-final.nupkg 1389ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.http.abstractions/index.json
  OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.abstractions/index.json 1085ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.webencoders.core/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.runtime.serialization.primitives/index.json 1110ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.net.http.headers/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 496ms
  GET https://api.nuget.org/v3-flatcontainer/system.io.filesystem/index.json
  OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection.abstractions/index.json 1109ms
  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.extensions.configuration.json/1.0.0-rc1-final/microsoft.extensions.configuration.json.1.0.0-rc1-final.nupkg 1116ms
  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.reflection.primitives/4.0.0/system.reflection.primitives.4.0.0.nupkg 338ms
  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/microsoft.aspnet.hosting.abstractions/index.json 1133ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.binder/index.json
  OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.environmentvariables/index.json 1132ms
  GET https://api.nuget.org/v3-flatcontainer/system.componentmodel/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 1476ms
  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/openchain.abstractions/index.json 773ms
  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/microsoft.aspnet.diagnostics.abstractions/1.0.0-rc1-final/microsoft.aspnet.diagnostics.abstractions.1.0.0-rc1-final.nupkg 313ms
  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/microsoft.dnx.compilation.abstractions/index.json 1163ms
  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/microsoft.extensions.platformabstractions/index.json 1167ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.jsonpatch/index.json
  OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.hosting.server.abstractions/index.json 1191ms
  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/microsoft.aspnet.html.abstractions/1.0.0-rc1-final/microsoft.aspnet.html.abstractions.1.0.0-rc1-final.nupkg 349ms
  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/system.diagnostics.stacktrace/index.json 1101ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.authorization/index.json
  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 595ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.fileproviders.abstractions/index.json
  OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration/index.json 1227ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.mvc.abstractions/index.json
  OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging/index.json 1229ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.memorypool/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.objectmodel/4.0.11-beta-23516/system.objectmodel.4.0.11-beta-23516.nupkg 659ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.localization/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 323ms
  GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.annotations/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.collections.concurrent/index.json 1055ms
  GET https://api.nuget.org/v3-flatcontainer/portable.bouncycastle/1.8.0/portable.bouncycastle.1.8.0.nupkg
  OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.http.abstractions/index.json 284ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.dataprotection/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 1617ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.webutilities/index.json
  OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.websockets.server/1.0.0-rc1-final/microsoft.aspnet.websockets.server.1.0.0-rc1-final.nupkg 1400ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.webencoders/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.io.filesystem/index.json 289ms
  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.globalization/4.0.10/system.globalization.4.0.10.nupkg 1191ms
  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.typeextensions/4.0.0/system.reflection.typeextensions.4.0.0.nupkg 294ms
  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.extensions.configuration.binder/index.json 302ms
  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.text.regularexpressions/index.json 1043ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileextensions/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.console/index.json 1390ms
  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.authorization/index.json 292ms
  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.net.websockets.client/4.0.0-beta-23516/system.net.websockets.client.4.0.0-beta-23516.nupkg 1871ms
  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.runtime.numerics/index.json 1120ms
  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.extensions.memorypool/index.json 300ms
  GET https://api.nuget.org/v3-flatcontainer/openchain.abstractions/0.5.1/openchain.abstractions.0.5.1.nupkg
  OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.webutilities/index.json 318ms
  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.extensions.webencoders/index.json 321ms
  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.reflection.typeextensions/4.0.1-beta-23409/system.reflection.typeextensions.4.0.1-beta-23409.nupkg 495ms
  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.reflection.extensions/4.0.0/system.reflection.extensions.4.0.0.nupkg 1155ms
  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.dependencyinjection/1.0.0-rc1-final/microsoft.extensions.dependencyinjection.1.0.0-rc1-final.nupkg 1207ms
  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.aspnet.fileproviders.physical/1.0.0-rc1-final/microsoft.aspnet.fileproviders.physical.1.0.0-rc1-final.nupkg 1432ms
  GET https://api.nuget.org/v3-flatcontainer/system.security.claims/index.json
  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 358ms
  GET https://api.nuget.org/v3-flatcontainer/system.security.principal/index.json
  OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileextensions/index.json 350ms
  GET https://api.nuget.org/v3-flatcontainer/system.runtime.handles/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.resources.resourcemanager/4.0.0/system.resources.resourcemanager.4.0.0.nupkg 727ms
  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/microsoft.extensions.configuration.environmentvariables/1.0.0-rc1-final/microsoft.extensions.configuration.environmentvariables.1.0.0-rc1-final.nupkg 321ms
  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/microsoft.aspnet.hosting.abstractions/1.0.0-rc1-final/microsoft.aspnet.hosting.abstractions.1.0.0-rc1-final.nupkg 344ms
  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.runtime.interopservices/4.0.20/system.runtime.interopservices.4.0.20.nupkg 1580ms
  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/system.reflection/4.0.10/system.reflection.4.0.10.nupkg 1346ms
  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/system.diagnostics.diagnosticsource/4.0.0-beta-23516/system.diagnostics.diagnosticsource.4.0.0-beta-23516.nupkg 1561ms
  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/microsoft.dnx.compilation.abstractions/1.0.0-rc1-final/microsoft.dnx.compilation.abstractions.1.0.0-rc1-final.nupkg 358ms
  GET https://api.nuget.org/v3-flatcontainer/system.numerics.vectors/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.reflection/4.1.0-beta-23225/system.reflection.4.1.0-beta-23225.nupkg 1408ms
  GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracesource/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/4.0.10/system.diagnostics.debug.4.0.10.nupkg 1230ms
  GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracing/index.json
  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 382ms
  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.dynamic.runtime/4.0.11-beta-23516/system.dynamic.runtime.4.0.11-beta-23516.nupkg 1528ms
  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/microsoft.extensions.configuration.commandline/1.0.0-rc1-final/microsoft.extensions.configuration.commandline.1.0.0-rc1-final.nupkg 1630ms
  GET https://api.nuget.org/v3-flatcontainer/system.threading.thread/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.io/4.0.0/system.io.4.0.0.nupkg 1193ms
  GET https://api.nuget.org/v3-flatcontainer/system.threading.threadpool/index.json
  OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.platformabstractions/1.0.0-rc1-final/microsoft.extensions.platformabstractions.1.0.0-rc1-final.nupkg 444ms
  GET https://api.nuget.org/v3-flatcontainer/system.threading.timer/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 769ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.websockets.protocol/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.security.claims/index.json 367ms
  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/system.reflection/4.0.0/system.reflection.4.0.0.nupkg 737ms
  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.io/4.0.11-beta-23516/system.io.4.0.11-beta-23516.nupkg 655ms
  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.extensions.webencoders.core/index.json 1146ms
  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/microsoft.net.http.headers/index.json 1148ms
  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/system.componentmodel/index.json 1078ms
  GET https://api.nuget.org/v3-flatcontainer/system.net.websockets/index.json
  OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.jsonpatch/index.json 1056ms
  GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.x509certificates/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/4.0.11-beta-23516/system.diagnostics.debug.4.0.11-beta-23516.nupkg 1121ms
  GET https://api.nuget.org/v3-flatcontainer/system.net.primitives/4.0.10/system.net.primitives.4.0.10.nupkg
  OK https://api.nuget.org/v3-flatcontainer/system.threading/4.0.10/system.threading.4.0.10.nupkg 440ms
  GET https://api.nuget.org/v3-flatcontainer/system.runtime.numerics/4.0.1-beta-23516/system.runtime.numerics.4.0.1-beta-23516.nupkg
  OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging/1.0.0-rc1-final/microsoft.extensions.logging.1.0.0-rc1-final.nupkg 354ms
  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/system.runtime.extensions/4.0.10/system.runtime.extensions.4.0.10.nupkg 1120ms
  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.fileproviders.abstractions/index.json 1113ms
  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/system.globalization/4.0.11-beta-23516/system.globalization.4.0.11-beta-23516.nupkg 2089ms
  GET https://api.nuget.org/v3-flatcontainer/system.io.filesystem.watcher/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracesource/index.json 352ms
  GET https://api.nuget.org/v3-flatcontainer/system.io.filesystem.primitives/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.resources.resourcemanager/4.0.1-beta-23516/system.resources.resourcemanager.4.0.1-beta-23516.nupkg 1292ms
  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.diagnostics.tracing/index.json 366ms
  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/system.diagnostics.stacktrace/4.0.1-beta-23516/system.diagnostics.stacktrace.4.0.1-beta-23516.nupkg 705ms
  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.mvc.abstractions/index.json 1210ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.http.features/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.annotations/index.json 1183ms
  GET https://api.nuget.org/v3-flatcontainer/system.reflection.emit/index.json
  OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.localization/index.json 1211ms
  GET https://api.nuget.org/v3-flatcontainer/system.reflection.emit.ilgeneration/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.threading.thread/index.json 391ms
  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/system.threading.threadpool/index.json 386ms
  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/microsoft.aspnet.dataprotection/index.json 1182ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.primitives/index.json
  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 522ms
  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/microsoft.aspnet.websockets.protocol/index.json 405ms
  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/openchain.abstractions/0.5.1/openchain.abstractions.0.5.1.nupkg 1030ms
  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/system.security.cryptography.x509certificates/index.json 345ms
  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.collections/4.0.10/system.collections.4.0.10.nupkg 1432ms
  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 453ms
  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
  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/system.threading.tasks/4.0.0/system.threading.tasks.4.0.0.nupkg 1818ms
  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.io.filesystem.watcher/index.json 369ms
  OK https://api.nuget.org/v3-flatcontainer/system.io.filesystem.primitives/index.json 358ms
  OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.webencoders/1.0.0-rc1-final/microsoft.extensions.webencoders.1.0.0-rc1-final.nupkg 413ms
  GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracing/4.0.21-beta-23516/system.diagnostics.tracing.4.0.21-beta-23516.nupkg
  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.authorization/1.0.0-rc1-final/microsoft.aspnet.authorization.1.0.0-rc1-final.nupkg 543ms
  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 1386ms
  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
  GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.annotations/4.0.11-beta-23516/system.componentmodel.annotations.4.0.11-beta-23516.nupkg
  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/microsoft.aspnet.http.features/index.json 338ms
  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/system.numerics.vectors/index.json 787ms
  OK https://api.nuget.org/v3-flatcontainer/system.reflection.emit.ilgeneration/index.json 331ms
  OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.webutilities/1.0.0-rc1-final/microsoft.aspnet.webutilities.1.0.0-rc1-final.nupkg 477ms
  GET https://api.nuget.org/v3-flatcontainer/system.threading.threadpool/4.0.10-beta-23516/system.threading.threadpool.4.0.10-beta-23516.nupkg
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.dataprotection/1.0.0-rc1-final/microsoft.aspnet.dataprotection.1.0.0-rc1-final.nupkg
  GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.tools/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.dynamic.runtime/4.0.0/system.dynamic.runtime.4.0.0.nupkg 2358ms
  GET https://api.nuget.org/v3-flatcontainer/system.globalization.extensions/index.json
  OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.primitives/index.json 329ms
  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/system.io.filesystem/4.0.1-beta-23516/system.io.filesystem.4.0.1-beta-23516.nupkg 695ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.websockets.protocol/1.0.0-rc1-final/microsoft.aspnet.websockets.protocol.1.0.0-rc1-final.nupkg
  OK https://api.nuget.org/v3-flatcontainer/system.net.primitives/4.0.10/system.net.primitives.4.0.10.nupkg 595ms
  GET https://api.nuget.org/v3-flatcontainer/google.protobuf/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.runtime.numerics/4.0.1-beta-23516/system.runtime.numerics.4.0.1-beta-23516.nupkg 594ms
  GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.algorithms/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.linq.expressions/4.0.11-beta-23516/system.linq.expressions.4.0.11-beta-23516.nupkg 1754ms
  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/microsoft.extensions.configuration/1.0.0-rc1-final/microsoft.extensions.configuration.1.0.0-rc1-final.nupkg 1136ms
  GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.typeconverter/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.componentmodel/4.0.1-beta-23516/system.componentmodel.4.0.1-beta-23516.nupkg 435ms
  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.fileproviders.abstractions/1.0.0-rc1-final/microsoft.aspnet.fileproviders.abstractions.1.0.0-rc1-final.nupkg 417ms
  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/system.text.regularexpressions/4.0.11-beta-23516/system.text.regularexpressions.4.0.11-beta-23516.nupkg 882ms
  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.linq/4.0.0/system.linq.4.0.0.nupkg 603ms
  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/system.diagnostics.tools/index.json 302ms
  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.runtime.extensions/4.0.0/system.runtime.extensions.4.0.0.nupkg 1306ms
  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.globalization.extensions/index.json 317ms
  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/microsoft.aspnet.jsonpatch/1.0.0-rc1-final/microsoft.aspnet.jsonpatch.1.0.0-rc1-final.nupkg 536ms
  GET https://api.nuget.org/v3-flatcontainer/system.private.networking/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.algorithms/index.json 307ms
  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.diagnostics.tracesource/4.0.0-beta-23516/system.diagnostics.tracesource.4.0.0-beta-23516.nupkg 553ms
  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.extensions.localization/1.0.0-rc1-final/microsoft.extensions.localization.1.0.0-rc1-final.nupkg 444ms
  GET https://api.nuget.org/v3-flatcontainer/system.text.encoding.extensions/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracing/4.0.21-beta-23516/system.diagnostics.tracing.4.0.21-beta-23516.nupkg 523ms
  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/system.runtime/4.0.20/system.runtime.4.0.20.nupkg 2875ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.localization.abstractions/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 511ms
  GET https://api.nuget.org/v3-flatcontainer/system.resources.readerwriter/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.net.websockets/index.json 1118ms
  GET https://api.nuget.org/v3-flatcontainer/system.private.uri/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.typeconverter/index.json 329ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.cryptography.internal/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.runtime.handles/index.json 1545ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.dataprotection.abstractions/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 972ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.security.claims/4.0.1-beta-23516/system.security.claims.4.0.1-beta-23516.nupkg 554ms
  GET https://api.nuget.org/v3-flatcontainer/system.xml.xdocument/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.console/4.0.0-beta-23516/system.console.4.0.0-beta-23516.nupkg 1199ms
  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.tracing/4.0.0/system.diagnostics.tracing.4.0.0.nupkg 667ms
  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/system.threading.threadpool/4.0.10-beta-23516/system.threading.threadpool.4.0.10-beta-23516.nupkg 623ms
  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/microsoft.aspnet.mvc.abstractions/6.0.0-rc1-final/microsoft.aspnet.mvc.abstractions.6.0.0-rc1-final.nupkg 691ms
  GET https://api.nuget.org/v3-flatcontainer/system.appcontext/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.security.claims/4.0.0/system.security.claims.4.0.0.nupkg 925ms
  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.threading.tasks/4.0.11-beta-23516/system.threading.tasks.4.0.11-beta-23516.nupkg 1398ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.routing/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.threading.timer/index.json 1379ms
  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/microsoft.extensions.memorypool/1.0.0-rc1-final/microsoft.extensions.memorypool.1.0.0-rc1-final.nupkg 1206ms
  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 474ms
  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 497ms
  OK https://api.nuget.org/v3-flatcontainer/system.globalization/4.0.0/system.globalization.4.0.0.nupkg 1130ms
  OK https://api.nuget.org/v3-flatcontainer/system.private.networking/index.json 402ms
  GET https://api.nuget.org/v3-flatcontainer/system.private.networking/4.0.0/system.private.networking.4.0.0.nupkg
  OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.primitives/1.0.0-rc1-final/microsoft.extensions.primitives.1.0.0-rc1-final.nupkg 436ms
  OK https://api.nuget.org/v3-flatcontainer/system.threading.thread/4.0.0-beta-23516/system.threading.thread.4.0.0-beta-23516.nupkg 796ms
  OK https://api.nuget.org/v3-flatcontainer/system.io.filesystem.primitives/4.0.0/system.io.filesystem.primitives.4.0.0.nupkg 442ms
  OK https://api.nuget.org/v3-flatcontainer/system.collections.concurrent/4.0.11-beta-23516/system.collections.concurrent.4.0.11-beta-23516.nupkg 1655ms
  GET https://api.nuget.org/v3-flatcontainer/system.threading.tasks/4.0.10/system.threading.tasks.4.0.10.nupkg
  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.diagnostics.tools/4.0.1-beta-23516/system.diagnostics.tools.4.0.1-beta-23516.nupkg 425ms
  OK https://api.nuget.org/v3-flatcontainer/system.globalization.extensions/4.0.1-beta-23516/system.globalization.extensions.4.0.1-beta-23516.nupkg 418ms
  OK https://api.nuget.org/v3-flatcontainer/system.reflection.emit.ilgeneration/4.0.0/system.reflection.emit.ilgeneration.4.0.0.nupkg 521ms
  OK https://api.nuget.org/v3-flatcontainer/system.numerics.vectors/4.1.1-beta-23516/system.numerics.vectors.4.1.1-beta-23516.nupkg 557ms
  OK https://api.nuget.org/v3-flatcontainer/system.net.primitives/4.0.11-beta-23516/system.net.primitives.4.0.11-beta-23516.nupkg 1599ms
  OK https://api.nuget.org/v3-flatcontainer/system.text.encoding.extensions/index.json 443ms
  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/system.runtime.extensions/4.0.11-beta-23516/system.runtime.extensions.4.0.11-beta-23516.nupkg 2483ms
  OK https://api.nuget.org/v3-flatcontainer/system.reflection.emit/index.json 1233ms
  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.security.cryptography.x509certificates/4.0.0-beta-23516/system.security.cryptography.x509certificates.4.0.0-beta-23516.nupkg 768ms
  GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.encoding/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 443ms
  GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.primitives/index.json
  OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.localization.abstractions/index.json 431ms
  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/system.resources.readerwriter/index.json 418ms
  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/system.security.principal/index.json 1951ms
  GET https://api.nuget.org/v3-flatcontainer/system.security.principal/4.0.0/system.security.principal.4.0.0.nupkg
  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.aspnet.cryptography.internal/index.json 414ms
  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/system.threading/4.0.0/system.threading.4.0.0.nupkg 1339ms
  OK https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry/index.json 418ms
  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/microsoft.aspnet.dataprotection.abstractions/index.json 440ms
  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/system.appcontext/index.json 358ms
  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/microsoft.net.http.headers/1.0.0-rc1-final/microsoft.net.http.headers.1.0.0-rc1-final.nupkg 1244ms
  GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.contracts/index.json
  OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/4.0.0/system.diagnostics.debug.4.0.0.nupkg 430ms
  OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.annotations/4.0.11-beta-23516/system.componentmodel.annotations.4.0.11-beta-23516.nupkg 1143ms
  GET https://api.nuget.org/v3-flatcontainer/system.componentmodel/4.0.0/system.componentmodel.4.0.0.nupkg
  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/microsoft.aspnet.routing/index.json 459ms
  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.componentmodel.typeconverter/4.0.1-beta-23516/system.componentmodel.typeconverter.4.0.1-beta-23516.nupkg 530ms
  GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.primitives/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 467ms
  OK https://api.nuget.org/v3-flatcontainer/system.runtime.handles/4.0.0/system.runtime.handles.4.0.0.nupkg 541ms
  OK https://api.nuget.org/v3-flatcontainer/google.protobuf/index.json 1125ms
  GET https://api.nuget.org/v3-flatcontainer/google.protobuf/3.0.0-beta2/google.protobuf.3.0.0-beta2.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 1455ms
  OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.primitives/index.json 317ms
  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/newtonsoft.json/6.0.6/newtonsoft.json.6.0.6.nupkg 2577ms
  OK https://api.nuget.org/v3-flatcontainer/system.net.websockets/4.0.0-beta-23516/system.net.websockets.4.0.0-beta-23516.nupkg 655ms
  GET https://api.nuget.org/v3-flatcontainer/microsoft.win32.primitives/index.json
  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 335ms
  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 293ms
  OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.contracts/index.json 280ms
  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/system.security.principal/4.0.0/system.security.principal.4.0.0.nupkg 380ms
  OK https://api.nuget.org/v3-flatcontainer/system.collections/4.0.0/system.collections.4.0.0.nupkg 2400ms
  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 407ms
  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/microsoft.aspnet.http.features/1.0.0-rc1-final/microsoft.aspnet.http.features.1.0.0-rc1-final.nupkg 1109ms
  OK https://api.nuget.org/v3-flatcontainer/system.linq.expressions/4.0.10/system.linq.expressions.4.0.10.nupkg 1722ms
  OK https://api.nuget.org/v3-flatcontainer/system.security.principal/4.0.1-beta-23516/system.security.principal.4.0.1-beta-23516.nupkg 501ms
  OK https://api.nuget.org/v3-flatcontainer/system.appcontext/4.0.0/system.appcontext.4.0.0.nupkg 463ms
  OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracing/4.0.20/system.diagnostics.tracing.4.0.20.nupkg 680ms
  OK https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry/4.0.0-beta-23516/microsoft.win32.registry.4.0.0-beta-23516.nupkg 502ms
  OK https://api.nuget.org/v3-flatcontainer/system.reflection.emit/4.0.0/system.reflection.emit.4.0.0.nupkg 623ms
  OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.routing/1.0.0-rc1-final/microsoft.aspnet.routing.1.0.0-rc1-final.nupkg 380ms
  OK https://api.nuget.org/v3-flatcontainer/system.private.networking/4.0.0/system.private.networking.4.0.0.nupkg 785ms
  GET https://api.nuget.org/v3-flatcontainer/system.collections.concurrent/4.0.0/system.collections.concurrent.4.0.0.nupkg
  GET https://api.nuget.org/v3-flatcontainer/system.collections.nongeneric/index.json
  GET https://api.nuget.org/v3-flatcontainer/system.io.filesystem/4.0.0/system.io.filesystem.4.0.0.nupkg
  GET https://api.nuget.org/v3-flatcontainer/system.threading.overlapped/index.json
  GET https://api.nuget.org/v3-flatcontainer/system.io/4.0.10/system.io.4.0.10.nupkg
  GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.eventbasedasync/index.json
  OK https://api.nuget.org/v3-flatcontainer/microsoft.win32.primitives/index.json 320ms
  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.private.uri/index.json 1055ms
  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.text.encoding.extensions/4.0.11-beta-23516/system.text.encoding.extensions.4.0.11-beta-23516.nupkg 733ms
  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 375ms
  OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.websockets.protocol/1.0.0-rc1-final/microsoft.aspnet.websockets.protocol.1.0.0-rc1-final.nupkg 1587ms
  OK https://api.nuget.org/v3-flatcontainer/system.runtime.interopservices/4.0.21-beta-23516/system.runtime.interopservices.4.0.21-beta-23516.nupkg 4098ms
  OK https://api.nuget.org/v3-flatcontainer/system.xml.xdocument/index.json 1096ms
  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/microsoft.data.sqlite/1.0.0-rc1-final/microsoft.data.sqlite.1.0.0-rc1-final.nupkg 6021ms
  GET https://api.nuget.org/v3-flatcontainer/system.data.common/index.json
  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.runtime.handles/4.0.1-beta-23516/system.runtime.handles.4.0.1-beta-23516.nupkg 457ms
  OK https://api.nuget.org/v3-flatcontainer/system.collections.nongeneric/index.json 292ms
  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/system.threading.overlapped/index.json 300ms
  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.componentmodel.eventbasedasync/index.json 320ms
  GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.eventbasedasync/4.0.10/system.componentmodel.eventbasedasync.4.0.10.nupkg
  OK https://api.nuget.org/v3-flatcontainer/microsoft.win32.primitives/4.0.0/microsoft.win32.primitives.4.0.0.nupkg 314ms
  OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.encoding/index.json 1036ms
  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/system.io/4.0.10/system.io.4.0.10.nupkg 516ms
  OK https://api.nuget.org/v3-flatcontainer/system.data.common/index.json 314ms
  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/system.resources.readerwriter/4.0.0-beta-23516/system.resources.readerwriter.4.0.0-beta-23516.nupkg 1190ms
  OK https://api.nuget.org/v3-flatcontainer/system.private.uri/4.0.0/system.private.uri.4.0.0.nupkg 604ms
  OK https://api.nuget.org/v3-flatcontainer/system.collections.concurrent/4.0.0/system.collections.concurrent.4.0.0.nupkg 661ms
  OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.primitives/index.json 1072ms
  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/system.threading.tasks/4.0.10/system.threading.tasks.4.0.10.nupkg 1432ms
  OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.eventbasedasync/4.0.10/system.componentmodel.eventbasedasync.4.0.10.nupkg 359ms
  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 347ms
  OK https://api.nuget.org/v3-flatcontainer/system.text.regularexpressions/4.0.10/system.text.regularexpressions.4.0.10.nupkg 1185ms
  OK https://api.nuget.org/v3-flatcontainer/system.collections.nongeneric/4.0.0/system.collections.nongeneric.4.0.0.nupkg 488ms
  OK https://api.nuget.org/v3-flatcontainer/system.io.filesystem/4.0.0/system.io.filesystem.4.0.0.nupkg 792ms
  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.xml.xdocument/4.0.11-beta-23516/system.xml.xdocument.4.0.11-beta-23516.nupkg 690ms
  GET https://api.nuget.org/v3-flatcontainer/system.xml.readerwriter/index.json
  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.threading.overlapped/4.0.0/system.threading.overlapped.4.0.0.nupkg 506ms
  OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.contracts/4.0.1-beta-23516/system.diagnostics.contracts.4.0.1-beta-23516.nupkg 1197ms
  OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.primitives/4.0.0/system.componentmodel.primitives.4.0.0.nupkg 383ms
  OK https://api.nuget.org/v3-flatcontainer/system.data.common/4.0.1-beta-23516/system.data.common.4.0.1-beta-23516.nupkg 563ms
  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.text.encoding.extensions/4.0.10/system.text.encoding.extensions.4.0.10.nupkg 466ms
  OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.tools/4.0.0/system.diagnostics.tools.4.0.0.nupkg 511ms
  OK https://api.nuget.org/v3-flatcontainer/system.xml.readerwriter/index.json 517ms
  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.componentmodel/4.0.0/system.componentmodel.4.0.0.nupkg 1840ms
  OK https://api.nuget.org/v3-flatcontainer/system.xml.readerwriter/4.0.10/system.xml.readerwriter.4.0.10.nupkg 573ms
  OK https://api.nuget.org/v3-flatcontainer/system.text.regularexpressions/4.0.0/system.text.regularexpressions.4.0.0.nupkg 885ms
  OK https://api.nuget.org/v3-flatcontainer/system.reflection/4.1.0-beta-23516/system.reflection.4.1.0-beta-23516.nupkg 1793ms
  OK https://api.nuget.org/v3-flatcontainer/google.protobuf/3.0.0-beta2/google.protobuf.3.0.0-beta2.nupkg 2719ms
  OK https://api.nuget.org/v3-flatcontainer/system.runtime/4.0.0/system.runtime.4.0.0.nupkg 7021ms
  OK https://api.nuget.org/v3-flatcontainer/system.runtime/4.0.21-beta-23516/system.runtime.4.0.21-beta-23516.nupkg 8363ms
  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.private.uri/4.0.1-beta-23516/system.private.uri.4.0.1-beta-23516.nupkg 928ms
  OK https://api.nuget.org/v3-flatcontainer/nbitcoin/2.1.5.9/nbitcoin.2.1.5.9.nupkg 12823ms
  OK https://api.nuget.org/v3-flatcontainer/portable.bouncycastle/1.8.0/portable.bouncycastle.1.8.0.nupkg 22702ms
Installing Openchain.Sqlite.0.5.1
Installing Microsoft.AspNet.Hosting.1.0.0-rc1-final
Installing Microsoft.Extensions.Configuration.EnvironmentVariables.1.0.0-rc1-final
Installing Microsoft.Extensions.Configuration.CommandLine.1.0.0-rc1-final
Installing System.Reflection.Extensions.4.0.1-beta-23516
Installing System.Reflection.4.0.0
Installing System.Reflection.Primitives.4.0.0
Installing System.IO.4.0.0
Installing System.Text.Encoding.4.0.0
Installing System.Threading.Tasks.4.0.0
Installing System.Runtime.4.0.0
Installing System.Diagnostics.DiagnosticSource.4.0.0-beta-23516
Installing System.Diagnostics.Tracing.4.0.0
Installing System.Threading.4.0.0
Installing System.Diagnostics.StackTrace.4.0.1-beta-23516
Installing Microsoft.Dnx.Compilation.Abstractions.1.0.0-rc1-final
Installing System.IO.FileSystem.4.0.1-beta-23516
Installing System.IO.FileSystem.Primitives.4.0.0
Installing System.Runtime.Handles.4.0.0
Installing System.Console.4.0.0-beta-23516
Installing Microsoft.AspNet.Http.Extensions.1.0.0-rc1-final
Installing System.Resources.ResourceManager.4.0.1-beta-23516
Installing System.Globalization.4.0.0
Installing Microsoft.Extensions.WebEncoders.Core.1.0.0-rc1-final
Installing System.ComponentModel.4.0.1-beta-23516
Installing System.Diagnostics.Debug.4.0.11-beta-23516
Installing System.IO.4.0.11-beta-23516
Installing System.Reflection.4.0.10
Installing System.Runtime.Extensions.4.0.11-beta-23516
Installing System.Threading.4.0.11-beta-23516
Installing Microsoft.AspNet.Http.Abstractions.1.0.0-rc1-final
Installing System.Collections.4.0.11-beta-23516
Installing System.Globalization.4.0.11-beta-23516
Installing System.Linq.4.0.1-beta-23516
Installing System.Diagnostics.Debug.4.0.10
Installing System.Runtime.Extensions.4.0.10
Installing System.Reflection.TypeExtensions.4.0.1-beta-23409
Installing System.Linq.Expressions.4.0.11-beta-23516
Installing System.Threading.Tasks.4.0.11-beta-23516
Installing System.Diagnostics.Tools.4.0.1-beta-23516
Installing System.Globalization.Extensions.4.0.1-beta-23516
Installing System.Runtime.Extensions.4.0.0
Installing System.Security.Claims.4.0.1-beta-23516
Installing System.Diagnostics.Debug.4.0.0
Installing System.Net.Primitives.4.0.11-beta-23516
Installing Microsoft.AspNet.Http.Features.1.0.0-rc1-final
Installing Microsoft.Extensions.Primitives.1.0.0-rc1-final
Installing System.Security.Principal.4.0.1-beta-23516
Installing System.Runtime.InteropServices.4.0.21-beta-23516

Openchain support SharpDevelop IDE

When open the openchain project with SharpDevelop IDE, it failed with errors bellow.
image

I see in the openchain.sln that it support Visual studio 2012, but when I tried with VS2012, it also failed.
Can this project only be opened with Visual studio 2015? VS2015 is too big, It will be much more convenient if openchain support SharpDevelop.

Validator Root URL

Trying to follow your instructions but

Make sure that the Validator Root URL is set to the same value as the root_url setting in the configuration file.

The configuration file config.json doesn't have a root_url parameter...... What do you do?

Third-party asset negative amount issuance

Hello, thanks for the great software!

However, it's kind of unexpected to me that asset issuer can issue negative amount of asset thus spending from p2pkh account without having to provide a signature corresponding to the account address.

var openchain = require('openchain');
var bitcore = require('bitcore-lib');
var assetKey = bitcore.HDPrivateKey('xprvA3qJ7UB7obVamdSfScmqgc5weowCUfyHDEYJ8fWM7gcmdN54i8VRQzFUnmdjtR37jfgqj8m1RXbxpJWfCFfxZpfPMirWRK3PkD1R4bnyU4r');
var assetPath = '/asset/p2pkh/' + assetKey.publicKey.toAddress() + '/';
var receiverAddress = bitcore.HDPrivateKey('xprvA3ad4EPeSUQ8udwcqzJApHxe4xUTugn8BevYpWzTNnSioBVwLMRvJ2pb1y4dRdzV83NkAsyQ9j7n9Lz5c3ijyBbygZNYgqJUu8WCCyZ7MEH')
  .publicKey.toAddress();
var receiverPath = '/p2pkh/'  + receiverAddress + '/';
var amount = 42;
console.log(assetPath, receiverPath);
var openchainUrl = 'https://.../';
var client = new openchain.ApiClient(openchainUrl);
client.initialize()
  .then(function () {
    return new openchain.TransactionBuilder(client)
      .addSigningKey(new openchain.MutationSigner(assetKey))
      .updateAccountRecord(assetPath, assetPath, amount);
  })
  .then(function (transactionBuilder) {
    return transactionBuilder.updateAccountRecord(receiverPath, assetPath, -amount);
  })
  .then(function (transactionBuilder) {
    return transactionBuilder.submit();
  })
  .then(function (result) {
    console.log(result);
  });

produces:

/asset/p2pkh/XvbXDVAYxb4sc3Jc1mWvnJy2eLLFepaAgD/ /p2pkh/XoyMCUWB1bq2gDJJMMXDN4AJxejP3NYe45/
{ transaction_hash: 'a922351c29521414968c7edfc47a4926fb43e22e997112962586e1125aa6c2eb',
  mutation_hash: '39a2b17213fc9adcc07ffbca0deacdcc4392af314d5c8008b667fccefcfdc412' }

transaction stored in database:

0AEE010A08F37A0C81B67579D612730A652F61737365742F7032706B682F58766258445641597862347363334A63316D57766E4A7932654C4C466570614167442F3A4143433A2F61737365742F7032706B682F58766258445641597862347363334A63316D57766E4A7932654C4C466570614167442F120A0A08000000000000002A126D0A5F2F7032706B682F586F794D435557423162713267444A4A4D4D58444E34414A78656A50334E596534352F3A4143433A2F61737365742F7032706B682F58766258445641597862347363334A63316D57766E4A7932654C4C466570614167442F120A0A08FFFFFFFFFFFFFFD610C288A4C7051A6E0A6C0A2103EC9EDDA60EC2F9F1E7337F0E6FB79A99F0CB9D20DAFE22330C794C03A92D652E12473045022100CA51BF90A01343FD13D7D3AD47FBFC941FDF46E24986B40B0101BB90F475948C0220251247DED0818E1BF7A5532BB2687384877B94066351270116A4580B39312FFE

decoded:

{:mutation=>
  <Openchain::Mutation: namespace: "\xF3z\f\x81\xB6uy\xD6", records: [<Openchain::Record: key: "/asset/p2pkh/XvbXDVAYxb4sc3Jc1mWvnJy2eLLFepaAgD/:ACC:/asset/p2pkh/XvbXDVAYxb4sc3Jc1mWvnJy2eLLFepaAgD/", value: <Openchain::RecordValue: data: "\x00\x00\x00\x00\x00\x00\x00*">, version: "">, <Openchain::Record: key: "/p2pkh/XoyMCUWB1bq2gDJJMMXDN4AJxejP3NYe45/:ACC:/asset/p2pkh/XvbXDVAYxb4sc3Jc1mWvnJy2eLLFepaAgD/", value: <Openchain::RecordValue: data: "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xD6">, version: "">], metadata: "">,
 :timestamp=>1491665986,
 :transaction_metadata=>
  "\n" +
  "l\n" +
  "!\x03\xEC\x9E\xDD\xA6\x0E\xC2\xF9\xF1\xE73\x7F\x0Eo\xB7\x9A\x99\xF0\xCB\x9D \xDA\xFE\"3\fyL\x03\xA9-e.\x12G0E\x02!\x00\xCAQ\xBF\x90\xA0\x13C\xFD\x13\xD7\xD3\xADG\xFB\xFC\x94\x1F\xDFF\xE2I\x86\xB4\v\x01\x01\xBB\x90\xF4u\x94\x8C\x02 %\x12G\xDE\xD0\x81\x8E\e\xF7\xA5S+\xB2hs\x84\x87{\x94\x06cQ'\x01\x16\xA4X\v91/\xFE"}

Is Openchain dead?

There hasn't been any updates, or responses to the community in forums. Is the project dead?

Error when trying to run Observer mode, missing DLL?

Hi, I'm trying to run an observer on osx, to a validator which is running on a linux machine.

The validator is running fine but when I try to start an observer, I get this error:

JC-MacBook-Pro:openchain digitsu$ docker attach openchain-server
info: General[0]
      [2015-12-16 15:53:28Z] Starting Openchain v0.4.4 (DNXCore,Version=v5.0)
info: General[0]
      [2015-12-16 15:53:28Z]
info: General[0]
      [2015-12-16 15:53:28Z] Transaction validation mode disabled (Slave mode)
info: General[0]
      [2015-12-16 15:53:28Z] Current mode: Observer mode
info: General[0]
      [2015-12-16 15:53:28Z] Upstream URL: http://10.0.2.104:8080

Unhandled Exception: System.IO.FileNotFoundException: Could not load file or assembly 'System.Net.WebSockets.Client, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.
 ---> System.IO.FileNotFoundException: Could not load the specified file.
   at System.Runtime.Loader.AssemblyLoadContext.LoadFromAssemblyName(AssemblyName assemblyName)
   at System.Runtime.Loader.AssemblyLoadContext.Resolve(IntPtr gchManagedAssemblyLoadContext, AssemblyName assemblyName)
   --- End of inner exception stack trace ---
   at Openchain.Server.Models.TransactionStreamSubscriber.<Subscribe>d__4.MoveNext()
   at System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Start[TStateMachine](TStateMachine& stateMachine)
   at Openchain.Server.Models.TransactionStreamSubscriber.Subscribe(CancellationToken cancel)
   at Openchain.Server.Startup.<Configure>d__5.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.AsyncMethodBuilderCore.<>c.<ThrowAsync>b__6_1(Object state)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem()
   at System.Threading.ThreadPoolWorkQueue.Dispatch()
Aborted

Openchain Server docker Deployment

Hi - I was able to install the openchain server using the docker image but when I try to connect to the server using the browser via http://localhost:8080/ it shows a blank page. I need your help to see how to login into this server and issue an asset?

Getting error when trying to start openchain-server

I followed instructions in doc. Built up the server using docker-compose build, but when I run docker-compose up I get the following error.
P.S. I do have a 'data/config.json' in the openchain folder.

Starting openchain-server*.
Attaching to openchain-server*.
�[36mopenchain-server |�[0m
�[36mopenchain-server |�[0m Unhandled Exception: System.IO.FileNotFoundException: The configuration file 'data/config.json' was not found and is not optional.
�[36mopenchain-server |�[0m at Microsoft.Extensions.Configuration.FileConfigurationProvider.Load(Boolean reload)
�[36mopenchain-server |�[0m at Microsoft.Extensions.Configuration.ConfigurationRoot..ctor(IList`1 providers)
�[36mopenchain-server |�[0m at Microsoft.Extensions.Configuration.ConfigurationBuilder.Build()
�[36mopenchain-server |�[0m at Openchain.Server.Startup..ctor(IHostingEnvironment application)
�[36mopenchain-server |�[0m --- End of stack trace from previous location where exception was thrown ---
�[36mopenchain-server |�[0m at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
�[36mopenchain-server |�[0m at Microsoft.Extensions.Internal.ActivatorUtilities.ConstructorMatcher.CreateInstance(IServiceProvider provider)
�[36mopenchain-server |�[0m at Microsoft.AspNetCore.Hosting.Internal.StartupLoader.LoadMethods(IServiceProvider services, Type startupType, String environmentName)

Update to 1.1

Any chance this will be updated to .NET Core 1.1?

Also, haven't seen any commits in a while?

Is the project "alive"?

Would you recommend building a mobile money solution on this at this point?

Recommend Projects

  • React photo React

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

  • Vue.js photo Vue.js

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

  • Typescript photo Typescript

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

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

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

  • web

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

  • server

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

  • Machine learning

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

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

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

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.