Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Incompatible dependency with Microsoft.AspNetCore.All 2.0.0-preview2-final #2557

Closed
xlegalles opened this issue Jul 26, 2017 · 10 comments
Closed

Comments

@xlegalles
Copy link

Description

I got Incompatible dependency: Microsoft.CSharp >= 4.4.0-preview2-25405-01 conflicts with resolved version 4.3.0 while trying to use Microsoft.AspNetCore.All 2.0.0-preview2-final with Paket version 5.81.1.

The problem is impossible to solve because Microsoft.AspNetCore.All 2.0.0-preview2-final requires:

  • Microsoft.AspNetCore.JsonPatch 2.0.0-preview2-final which itself requires Microsoft.CSharp >= 4.4.0-preview2-25405-01
  • and at the same time Microsoft.AspNetCore.Localization 2.0.0-preview2-final which itself requires Microsoft.CSharp >= 4.3

So both third-party dependencies specify different constraints with Microsoft.CSharp which are incompatible from paket point of view.

Expected behavior

It should work as Nuget.

Known workarounds

None.

@isaacabraham
Copy link
Contributor

"It should work as Nuget". Can you elaborate on this please? What version do you expect to be pulled down? Why?

@xlegalles
Copy link
Author

Well, we are migrating the project to .Net Core and the first step was to make it work with Nuget. And it works i.e. we do not have any dependency problem. Now, we want to integrate Paket: so I create my paket.dependencies and I don't even specify the Microsoft.CSharp dependency as I don't care i.e it is a third party dependency.

Well, logically the version to use is the last one (the 4.4 preview) which is supposed to be compatible as everything works with Nuget.

@forki
Copy link
Member

forki commented Jul 26, 2017

this is a really hard problem.
"everything works with Nuget" doesn't really mean a lot. There are real dependency conflict here. ;-)

But I'm working on a fix that allows users to relax the conditions

@xlegalles
Copy link
Author

Well, personnally I don't see where is the conflict: as soon as the version 4.4 will be released, this problem will disapear if I'm not wrong. So there is no conflict. The problem is only because the resolution has to specify that it accepts prerealese versions explicitly which nobody never does in nuspec because Nuget cannot have the same problem. But I may be wrong.

@forki
Copy link
Member

forki commented Jul 26, 2017

the problem is that some package in the chain explicitily require releases.
NuGet just ignores that.
We don't want to just ignore it ;-) But still give a proper resolution for that case

@xlegalles
Copy link
Author

Ok. As soon as you have a solution, I will not disagree :)

@matthid
Copy link
Member

matthid commented Jul 26, 2017

@xlegalles for now you can just add all packages you want to allow as prerelease to your paket.dependencies as a workaround.
So resolving the conflict by adding nuget Microsoft.CSharp prerelease should work.

Solving this problem is quite a lot harder than it seems. We'd really like to do it, as it hurts for this particular situation (which happens quite often when using single prereleases).

On the other hand providing a consistent resolution is more important than "locking" an incorrect one (which basically has happened in paket 4). That's one of the design goals of paket after all.

@xlegalles
Copy link
Author

Thank you for the tip as it seems to work: I'm now deeper in the dependency graph and adding prerelease condition one by one...

@forki
Copy link
Member

forki commented Jul 26, 2017

@xlegalles yeah that is a workaround.

39a60cf is a potential fix.

It resolves

source https://www.nuget.org/api/v2

nuget Microsoft.AspNetCore.All 2.0.0-preview2-final

to

NUGET
  remote: https://www.nuget.org/api/v2
    Libuv (1.10.0-preview1-22040) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.0.1) - restriction: >= netstandard1.0
    Microsoft.ApplicationInsights (2.4) - restriction: >= netcore2.0
      NETStandard.Library (>= 1.6.1) - restriction: && (< net40) (>= netstandard1.3)
      System.Diagnostics.DiagnosticSource (>= 4.4) - restriction: || (&& (< net40) (>= netstandard1.3)) (&& (>= net45) (< netstandard1.3)) (>= net46)
      System.Diagnostics.StackTrace (>= 4.3) - restriction: && (< net40) (>= netstandard1.3)
    Microsoft.ApplicationInsights.AspNetCore (2.1.1) - restriction: >= netcore2.0
      Microsoft.ApplicationInsights (>= 2.4) - restriction: || (>= net451) (>= netstandard1.6)
      Microsoft.ApplicationInsights.DependencyCollector (>= 2.4.1) - restriction: || (>= net451) (>= netstandard1.6)
      Microsoft.AspNetCore.Hosting (>= 1.0) - restriction: || (>= net451) (>= netstandard1.6)
      Microsoft.Extensions.Configuration (>= 1.0) - restriction: || (>= net451) (>= netstandard1.6)
      Microsoft.Extensions.Configuration.Json (>= 1.0) - restriction: || (>= net451) (>= netstandard1.6)
      Microsoft.Extensions.DiagnosticAdapter (>= 1.0) - restriction: || (>= net451) (>= netstandard1.6)
      Microsoft.Extensions.Logging.Abstractions (>= 1.0) - restriction: || (>= net451) (>= netstandard1.6)
      NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6
      System.Net.NameResolution (>= 4.3) - restriction: >= netstandard1.6
      System.Text.Encodings.Web (>= 4.3.1) - restriction: || (>= net451) (>= netstandard1.6)
    Microsoft.ApplicationInsights.DependencyCollector (2.4.1) - restriction: >= netcore2.0
      Microsoft.ApplicationInsights (2.4) - restriction: || (>= net40) (>= netstandard1.6)
      Microsoft.Extensions.PlatformAbstractions (>= 1.1) - restriction: >= netstandard1.6
      NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6
      System.Diagnostics.DiagnosticSource (>= 4.4) - restriction: || (>= net45) (>= netstandard1.6)
      System.Diagnostics.StackTrace (>= 4.3) - restriction: >= netstandard1.6
    Microsoft.AspNetCore (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Diagnostics (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Hosting (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Routing (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Server.IISIntegration (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Server.Kestrel (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Configuration.CommandLine (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Configuration.EnvironmentVariables (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Configuration.FileExtensions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Configuration.Json (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Configuration.UserSecrets (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.Configuration (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.Console (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.Debug (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.All (2.0.0-preview2-final)
      Microsoft.AspNetCore (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Antiforgery (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.ApplicationInsights.HostingStartup (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.Cookies (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.Core (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.Facebook (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.Google (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.JwtBearer (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.MicrosoftAccount (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.OAuth (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.OpenIdConnect (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.Twitter (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authorization (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authorization.Policy (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.AzureAppServices.HostingStartup (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.AzureAppServicesIntegration (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.CookiePolicy (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Cors (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Cryptography.Internal (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Cryptography.KeyDerivation (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.DataProtection (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.DataProtection.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.DataProtection.AzureStorage (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.DataProtection.Extensions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Diagnostics (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Diagnostics.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Hosting (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Hosting.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Hosting.Server.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Html.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http.Extensions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http.Features (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.HttpOverrides (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Identity (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Identity.EntityFrameworkCore (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.JsonPatch (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Localization (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Localization.Routing (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.MiddlewareAnalysis (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.ApiExplorer (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.Core (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.Cors (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.Formatters.Xml (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.Localization (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.Razor (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.Razor.Extensions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.Razor.ViewCompilation (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.RazorPages (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.NodeServices (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Owin (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Razor (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Razor.Language (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Razor.Runtime (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.ResponseCaching (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.ResponseCaching.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.ResponseCompression (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Rewrite (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Routing (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Routing.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Server.HttpSys (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Server.IISIntegration (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Server.Kestrel (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Session (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.SpaServices (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.StaticFiles (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.WebSockets (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.WebUtilities (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.CodeAnalysis.Razor (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Data.SQLite (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Data.Sqlite.Core (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.EntityFrameworkCore (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.EntityFrameworkCore.Design (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.EntityFrameworkCore.InMemory (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.EntityFrameworkCore.Relational (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.EntityFrameworkCore.Sqlite (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.EntityFrameworkCore.Sqlite.Core (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.EntityFrameworkCore.SqlServer (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.EntityFrameworkCore.Tools (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Caching.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Caching.Memory (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Caching.Redis (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Caching.SqlServer (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration.AzureKeyVault (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration.Binder (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration.CommandLine (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration.EnvironmentVariables (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration.FileExtensions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration.Ini (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration.Json (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration.UserSecrets (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration.Xml (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.DependencyInjection (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.DiagnosticAdapter (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.FileProviders.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.FileProviders.Composite (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.FileProviders.Embedded (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.FileProviders.Physical (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.FileSystemGlobbing (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Hosting.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Identity.Core (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Identity.Stores (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Localization (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Localization.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Logging (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Logging.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Logging.AzureAppServices (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Logging.Configuration (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Logging.Console (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Logging.Debug (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Logging.EventSource (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Logging.TraceSource (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.ObjectPool (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Options.ConfigurationExtensions (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Primitives (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.WebEncoders (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Net.Http.Headers (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.VisualStudio.Web.BrowserLink (>= 2.0.0-preview2-final) - restriction: >= netcore2.0
      SQLitePCLRaw.bundle_green (>= 1.1.3) - restriction: >= netcore2.0
      SQLitePCLRaw.lib.e_sqlite3.linux (>= 1.1.3) - restriction: >= netcore2.0
      SQLitePCLRaw.lib.e_sqlite3.osx (>= 1.1.3) - restriction: >= netcore2.0
      SQLitePCLRaw.lib.e_sqlite3.v110_xp (>= 1.1.3) - restriction: >= netcore2.0
    Microsoft.AspNetCore.Antiforgery (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.DataProtection (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Http.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Http.Extensions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.WebUtilities (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.ObjectPool (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.ApplicationInsights.HostingStartup (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.ApplicationInsights.AspNetCore (>= 2.1.0-beta6) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Hosting (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Razor.Runtime (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Configuration.Json (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.DiagnosticAdapter (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.Configuration (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Authentication (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.Core (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.DataProtection (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Http (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Http.Extensions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.WebEncoders (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Authentication.Abstractions (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Authentication.Cookies (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Authentication.Core (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Http (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Http.Extensions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Authentication.Facebook (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.OAuth (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Authentication.Google (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.OAuth (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Authentication.JwtBearer (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 2.1.3) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Authentication.MicrosoftAccount (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.OAuth (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Authentication.OAuth (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Newtonsoft.Json (>= 10.0.1) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Authentication.OpenIdConnect (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.OAuth (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 2.1.3) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Authentication.Twitter (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.OAuth (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Authorization (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Logging.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Authorization.Policy (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Authorization (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.AzureAppServices.HostingStartup (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.AzureAppServicesIntegration (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Hosting.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.AzureAppServicesIntegration (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Hosting (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.AzureAppServices (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.CookiePolicy (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Cors (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http.Extensions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Configuration.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Cryptography.Internal (2.0.0-preview2-final) - restriction: >= netcore2.0
    Microsoft.AspNetCore.Cryptography.KeyDerivation (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Cryptography.Internal (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.DataProtection (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Cryptography.Internal (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.DataProtection.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Win32.Registry (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
      System.Security.Cryptography.Xml (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.DataProtection.Abstractions (2.0.0-preview2-final) - restriction: >= netcore2.0
    Microsoft.AspNetCore.DataProtection.AzureStorage (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.DataProtection (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      WindowsAzure.Storage (>= 8.1.1) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.DataProtection.Extensions (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.DataProtection (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.DependencyInjection (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Diagnostics (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Diagnostics.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Hosting.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Http.Extensions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.WebUtilities (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.FileProviders.Physical (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      System.Diagnostics.DiagnosticSource (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Diagnostics.Abstractions (2.0.0-preview2-final) - restriction: >= netcore2.0
    Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.EntityFrameworkCore.Relational (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Hosting (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.DataProtection.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Hosting.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Hosting.Server.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Http (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Http.Extensions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Configuration (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Configuration.EnvironmentVariables (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Configuration.FileExtensions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.DependencyInjection (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.FileProviders.Physical (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      System.Diagnostics.DiagnosticSource (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Hosting.Abstractions (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Hosting.Server.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Http.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Configuration.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.FileProviders.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Hosting.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Hosting.Server.Abstractions (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http.Features (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Configuration.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Html.Abstractions (2.0.0-preview2-final) - restriction: >= netcore2.0
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.0
      System.Text.Encodings.Web (>= 4.3) - restriction: >= netstandard1.0
    Microsoft.AspNetCore.Http (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.WebUtilities (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.ObjectPool (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Net.Http.Headers (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Http.Abstractions (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http.Features (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      System.Text.Encodings.Web (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Http.Extensions (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.FileProviders.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Net.Http.Headers (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      System.Buffers (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Http.Features (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Primitives (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.HttpOverrides (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http.Extensions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Identity (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.Cookies (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Cryptography.KeyDerivation (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Hosting.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Identity.Core (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Identity.EntityFrameworkCore (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Identity (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.EntityFrameworkCore.Relational (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Identity.Stores (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.JsonPatch (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.CSharp (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
      Newtonsoft.Json (>= 10.0.1) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Localization (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http.Extensions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Localization.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Localization.Routing (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Localization (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Routing.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.MiddlewareAnalysis (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Hosting.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      System.Diagnostics.DiagnosticSource (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Mvc (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.ApiExplorer (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Mvc.Cors (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Mvc.Localization (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Mvc.RazorPages (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Caching.Memory (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.DependencyInjection (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Mvc.Abstractions (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Routing.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Net.Http.Headers (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Mvc.ApiExplorer (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.Core (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Mvc.Core (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.Core (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Authorization.Policy (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Hosting.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Http (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Http.Extensions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Mvc.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.ResponseCaching.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Routing (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.DependencyModel (>= 2.0.0-preview2-25407-01) - restriction: >= netstandard2.0
      Microsoft.Extensions.FileProviders.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Mvc.Cors (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Cors (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Mvc.Core (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Mvc.DataAnnotations (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.Core (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Localization (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      System.ComponentModel.Annotations (>= 4.3) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Mvc.Formatters.Json (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.JsonPatch (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Mvc.Core (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Mvc.Formatters.Xml (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.Core (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Mvc.Localization (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Localization (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Mvc.Razor (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.DependencyInjection (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Localization (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Mvc.Razor (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.Razor.Extensions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Razor.Runtime (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.CodeAnalysis.CSharp (>= 2.3.0-beta1) - restriction: >= netstandard2.0
      Microsoft.CodeAnalysis.Razor (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Caching.Memory (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.FileProviders.Composite (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      System.Runtime.Loader (>= 4.3) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Mvc.Razor.Extensions (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Razor.Language (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      Microsoft.CodeAnalysis.Razor (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.3
    Microsoft.AspNetCore.Mvc.Razor.ViewCompilation (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Hosting (>= 2.0.0-preview2-final) - restriction: || (>= net461) (>= netcore2.0)
      Microsoft.AspNetCore.Mvc.RazorPages (>= 2.0.0-preview2-final) - restriction: || (>= net461) (>= netcore2.0)
      Microsoft.NETCore.App (>= 2.0.0-preview2-25407-01) - restriction: >= netcore2.0
    Microsoft.AspNetCore.Mvc.RazorPages (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.Razor (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Mvc.TagHelpers (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.Razor (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Razor.Runtime (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Routing.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Caching.Memory (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.FileSystemGlobbing (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Primitives (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Mvc.ViewFeatures (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Antiforgery (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Diagnostics.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Html.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Mvc.Core (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.WebEncoders (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Newtonsoft.Json.Bson (>= 1.0.1) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.NodeServices (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Hosting.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.Console (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Newtonsoft.Json (>= 10.0.1) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Owin (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Razor (2.0.0-preview2-final) - restriction: >= netcore2.0
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.3
    Microsoft.AspNetCore.Razor.Language (2.0.0-preview2-final) - restriction: >= netcore2.0
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.3
      System.Threading.Thread (>= 4.3) - restriction: >= netstandard1.3
    Microsoft.AspNetCore.Razor.Runtime (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Html.Abstractions (>= 2.0.0-preview2-final) - restriction: || (>= net46) (>= netstandard1.5)
      Microsoft.AspNetCore.Razor (>= 2.0.0-preview2-final) - restriction: || (>= net46) (>= netstandard1.5)
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: || (>= net46) (>= netstandard1.5)
    Microsoft.AspNetCore.ResponseCaching (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Http.Extensions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.ResponseCaching.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Caching.Memory (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.ResponseCaching.Abstractions (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Primitives (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.ResponseCompression (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http.Extensions (>= 2.0.0-preview2-final) - restriction: || (>= net461) (>= netstandard2.0)
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: || (>= net461) (>= netstandard2.0)
    Microsoft.AspNetCore.Rewrite (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Hosting.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Http.Extensions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Configuration.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.FileProviders.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Routing (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http.Extensions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Routing.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.ObjectPool (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Routing.Abstractions (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Server.HttpSys (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.Core (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Hosting (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Net.Http.Headers (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Win32.Registry (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
      System.Security.Principal.Windows (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Server.IISIntegration (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Authentication.Core (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Hosting.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Http (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Http.Extensions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.HttpOverrides (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      System.Security.Principal.Windows (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Server.Kestrel (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Hosting (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Server.Kestrel.Core (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Hosting.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.WebUtilities (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Net.Http.Headers (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      System.Threading.Tasks.Extensions (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Server.Kestrel.Https (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http.Features (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      System.Buffers (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
      System.Numerics.Vectors (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv (2.0.0-preview2-final) - restriction: >= netcore2.0
      Libuv (>= 1.10.0-preview1-22040) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Hosting.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Hosting.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.Session (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.DataProtection (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Http.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Caching.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.SpaServices (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.NodeServices (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.StaticFiles (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Hosting.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Http.Extensions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.FileProviders.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.WebEncoders (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.WebSockets (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Http.Extensions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      System.Numerics.Vectors (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
    Microsoft.AspNetCore.WebUtilities (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Net.Http.Headers (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      System.Text.Encodings.Web (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
    Microsoft.Azure.KeyVault (2.3.2) - restriction: >= netcore2.0
      Microsoft.Azure.KeyVault.WebKey (>= 2.0.7) - restriction: || (>= net452) (>= netstandard1.4)
      Microsoft.Rest.ClientRuntime (>= 2.3.8 < 3.0) - restriction: || (>= net452) (>= netstandard1.4)
      Microsoft.Rest.ClientRuntime.Azure (>= 3.3.7 < 4.0) - restriction: || (>= net452) (>= netstandard1.4)
      NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.4)
      Newtonsoft.Json (>= 9.0.1) - restriction: && (< net452) (>= netstandard1.4)
      System.Net.Http (>= 4.3) - restriction: && (< net452) (>= netstandard1.4)
    Microsoft.Azure.KeyVault.WebKey (2.0.7) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.0.2) - restriction: && (< net452) (>= netstandard1.4)
      NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.4)
      Newtonsoft.Json (>= 9.0.1) - restriction: && (< net452) (>= netstandard1.4)
      System.Collections (>= 4.0.11) - restriction: && (< net452) (>= netstandard1.4)
      System.Collections.Concurrent (>= 4.0.12) - restriction: && (< net452) (>= netstandard1.4)
      System.Linq (>= 4.1) - restriction: && (< net452) (>= netstandard1.4)
      System.Runtime (>= 4.1) - restriction: && (< net452) (>= netstandard1.4)
      System.Security.Cryptography.Algorithms (>= 4.2) - restriction: && (< net452) (>= netstandard1.4)
    Microsoft.CodeAnalysis.Analyzers (1.1) - restriction: >= netcore2.0
    Microsoft.CodeAnalysis.Common (2.3.1) - restriction: >= netcore2.0
      Microsoft.CodeAnalysis.Analyzers (>= 1.1) - restriction: >= netstandard1.3
      System.AppContext (>= 4.3) - restriction: >= netstandard1.3
      System.Collections (>= 4.3) - restriction: >= netstandard1.3
      System.Collections.Concurrent (>= 4.3) - restriction: >= netstandard1.3
      System.Collections.Immutable (>= 1.3.1) - restriction: >= netstandard1.3
      System.Console (>= 4.3) - restriction: >= netstandard1.3
      System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard1.3
      System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: >= netstandard1.3
      System.Diagnostics.StackTrace (>= 4.3) - restriction: >= netstandard1.3
      System.Diagnostics.Tools (>= 4.3) - restriction: >= netstandard1.3
      System.Dynamic.Runtime (>= 4.3) - restriction: >= netstandard1.3
      System.Globalization (>= 4.3) - restriction: >= netstandard1.3
      System.IO.Compression (>= 4.3) - restriction: >= netstandard1.3
      System.IO.FileSystem (>= 4.3) - restriction: >= netstandard1.3
      System.IO.FileSystem.Primitives (>= 4.3) - restriction: >= netstandard1.3
      System.Linq (>= 4.3) - restriction: >= netstandard1.3
      System.Linq.Expressions (>= 4.3) - restriction: >= netstandard1.3
      System.Reflection (>= 4.3) - restriction: >= netstandard1.3
      System.Reflection.Metadata (>= 1.4.2) - restriction: >= netstandard1.3
      System.Resources.ResourceManager (>= 4.3) - restriction: >= netstandard1.3
      System.Runtime (>= 4.3) - restriction: >= netstandard1.3
      System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard1.3
      System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.3
      System.Runtime.Numerics (>= 4.3) - restriction: >= netstandard1.3
      System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.3
      System.Security.Cryptography.Encoding (>= 4.3) - restriction: >= netstandard1.3
      System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: >= netstandard1.3
      System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.3
      System.Text.Encoding.CodePages (>= 4.3) - restriction: >= netstandard1.3
      System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard1.3
      System.Threading (>= 4.3) - restriction: >= netstandard1.3
      System.Threading.Tasks (>= 4.3) - restriction: >= netstandard1.3
      System.Threading.Tasks.Parallel (>= 4.3) - restriction: >= netstandard1.3
      System.Threading.Thread (>= 4.3) - restriction: >= netstandard1.3
      System.ValueTuple (>= 4.3) - restriction: >= netstandard1.3
      System.Xml.ReaderWriter (>= 4.3) - restriction: >= netstandard1.3
      System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.3
      System.Xml.XmlDocument (>= 4.3) - restriction: >= netstandard1.3
      System.Xml.XPath.XDocument (>= 4.3) - restriction: >= netstandard1.3
    Microsoft.CodeAnalysis.CSharp (2.3.1) - restriction: >= netcore2.0
      Microsoft.CodeAnalysis.Common (2.3.1)
    Microsoft.CodeAnalysis.Razor (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Razor.Language (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      Microsoft.CodeAnalysis.Common (>= 2.3.0-beta1) - restriction: >= netstandard1.3
      Microsoft.CodeAnalysis.CSharp (>= 2.3.0-beta1) - restriction: >= netstandard1.3
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.3
    Microsoft.CSharp (4.4.0-preview2-25405-01) - restriction: >= netcore2.0
    Microsoft.Data.Edm (5.8.2) - restriction: >= netcore2.0
    Microsoft.Data.OData (5.8.2) - restriction: >= netcore2.0
      Microsoft.Data.Edm (5.8.2)
      System.Spatial (5.8.2)
    Microsoft.Data.SQLite (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Data.Sqlite.Core (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      SQLitePCLRaw.bundle_green (>= 1.1.3) - restriction: >= netstandard2.0
    Microsoft.Data.Sqlite.Core (2.0.0-preview2-final) - restriction: >= netcore2.0
      SQLitePCLRaw.core (>= 1.1.3) - restriction: >= netstandard2.0
    Microsoft.DotNet.PlatformAbstractions (2.0.0-preview2-25407-01) - restriction: >= netcore2.0
      System.AppContext (>= 4.1) - restriction: && (< net45) (>= netstandard1.3)
      System.Collections (>= 4.0.11) - restriction: && (< net45) (>= netstandard1.3)
      System.IO (>= 4.1) - restriction: && (< net45) (>= netstandard1.3)
      System.IO.FileSystem (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.3)
      System.Reflection.TypeExtensions (>= 4.1) - restriction: && (< net45) (>= netstandard1.3)
      System.Runtime.Extensions (>= 4.1) - restriction: && (< net45) (>= netstandard1.3)
      System.Runtime.InteropServices (>= 4.1) - restriction: && (< net45) (>= netstandard1.3)
      System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: && (< net45) (>= netstandard1.3)
    Microsoft.EntityFrameworkCore (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Caching.Memory (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.DependencyInjection (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Remotion.Linq (>= 2.1.1) - restriction: >= netstandard2.0
      System.Collections.Immutable (>= 1.3.1) - restriction: >= netstandard2.0
      System.ComponentModel.Annotations (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
      System.Diagnostics.DiagnosticSource (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
      System.Interactive.Async (>= 3.1.1) - restriction: >= netstandard2.0
    Microsoft.EntityFrameworkCore.Design (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.EntityFrameworkCore.Relational (>= 2.0.0-preview2-final) - restriction: || (>= net461) (>= netstandard2.0)
    Microsoft.EntityFrameworkCore.InMemory (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.EntityFrameworkCore (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.EntityFrameworkCore.Relational (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.CSharp (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
      Microsoft.EntityFrameworkCore (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Configuration.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.EntityFrameworkCore.Sqlite (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.EntityFrameworkCore.Sqlite.Core (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      SQLitePCLRaw.bundle_green (>= 1.1.3) - restriction: >= netstandard2.0
    Microsoft.EntityFrameworkCore.Sqlite.Core (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Data.Sqlite.Core (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.EntityFrameworkCore.Relational (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.EntityFrameworkCore.SqlServer (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.EntityFrameworkCore.Relational (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      System.Data.SqlClient (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
    Microsoft.EntityFrameworkCore.Tools (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.EntityFrameworkCore.Design (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.Extensions.Caching.Abstractions (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Primitives (>= 2.0.0-preview2-final) - restriction: >= netstandard1.0
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.0
    Microsoft.Extensions.Caching.Memory (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Caching.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.3
    Microsoft.Extensions.Caching.Redis (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Caching.Abstractions (>= 2.0.0-preview2-final) - restriction: || (>= net46) (>= netstandard1.5)
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: || (>= net46) (>= netstandard1.5)
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: || (>= net46) (>= netstandard1.5)
      StackExchange.Redis.StrongName (>= 1.2.3) - restriction: || (>= net46) (>= netstandard1.5)
    Microsoft.Extensions.Caching.SqlServer (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Caching.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.2
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard1.2
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.2
      System.Data.SqlClient (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard1.2
    Microsoft.Extensions.Configuration (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.1
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.1
    Microsoft.Extensions.Configuration.Abstractions (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Primitives (>= 2.0.0-preview2-final) - restriction: >= netstandard1.0
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.0
    Microsoft.Extensions.Configuration.AzureKeyVault (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Azure.KeyVault (>= 2.2.1-preview) - restriction: || (>= net461) (>= netstandard1.5)
      Microsoft.Extensions.Configuration (>= 2.0.0-preview2-final) - restriction: || (>= net461) (>= netstandard1.5)
      Microsoft.Extensions.Configuration.FileExtensions (>= 2.0.0-preview2-final) - restriction: || (>= net461) (>= netstandard1.5)
      Microsoft.IdentityModel.Clients.ActiveDirectory (>= 3.13.9) - restriction: || (>= net461) (>= netstandard1.5)
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: || (>= net461) (>= netstandard1.5)
      System.Net.Http (>= 4.3) - restriction: || (>= net461) (>= netstandard1.5)
    Microsoft.Extensions.Configuration.Binder (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration (>= 2.0.0-preview2-final) - restriction: >= netstandard1.1
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.1
      System.ComponentModel.TypeConverter (>= 4.3) - restriction: >= netstandard1.1
    Microsoft.Extensions.Configuration.CommandLine (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration (>= 2.0.0-preview2-final) - restriction: >= netstandard1.1
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.1
    Microsoft.Extensions.Configuration.EnvironmentVariables (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.3
    Microsoft.Extensions.Configuration.FileExtensions (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      Microsoft.Extensions.FileProviders.Physical (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.3
      System.Threading.Thread (>= 4.3) - restriction: >= netstandard1.3
    Microsoft.Extensions.Configuration.Ini (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      Microsoft.Extensions.Configuration.FileExtensions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.3
    Microsoft.Extensions.Configuration.Json (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      Microsoft.Extensions.Configuration.FileExtensions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.3
      Newtonsoft.Json (>= 10.0.1) - restriction: >= netstandard1.3
      System.Dynamic.Runtime (>= 4.3) - restriction: >= netstandard1.3
      System.Runtime.Serialization.Primitives (>= 4.3) - restriction: >= netstandard1.3
    Microsoft.Extensions.Configuration.UserSecrets (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration.Json (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.3
    Microsoft.Extensions.Configuration.Xml (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      Microsoft.Extensions.Configuration.FileExtensions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.3
      System.Xml.XmlDocument (>= 4.3) - restriction: && (< net461) (>= netstandard1.3)
      System.Xml.XmlSerializer (>= 4.3) - restriction: && (< net461) (>= netstandard1.3)
    Microsoft.Extensions.DependencyInjection (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.1
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.1
    Microsoft.Extensions.DependencyInjection.Abstractions (2.0.0-preview2-final) - restriction: >= netcore2.0
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.0
      System.ComponentModel (>= 4.3) - restriction: >= netstandard1.0
    Microsoft.Extensions.DependencyModel (2.0.0-preview2-25407-01) - restriction: >= netcore2.0
      Microsoft.DotNet.PlatformAbstractions (>= 2.0.0-preview2-25407-01) - restriction: || (>= net451) (>= netstandard1.3)
      Newtonsoft.Json (>= 9.0.1) - restriction: || (>= net451) (>= netstandard1.3)
      System.Diagnostics.Debug (>= 4.0.11) - restriction: || (&& (< net451) (>= netstandard1.3)) (>= netstandard1.6)
      System.Dynamic.Runtime (>= 4.0.11) - restriction: || (&& (< net451) (>= netstandard1.3)) (>= netstandard1.6)
      System.Linq (>= 4.1) - restriction: || (&& (< net451) (>= netstandard1.3)) (>= netstandard1.6)
    Microsoft.Extensions.DiagnosticAdapter (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.1
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.1
      System.ComponentModel (>= 4.3) - restriction: >= netstandard1.1
      System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: >= netstandard1.1
      System.Reflection.Emit (>= 4.3) - restriction: >= netstandard1.1
      System.Reflection.Emit.Lightweight (>= 4.3) - restriction: >= netstandard1.1
    Microsoft.Extensions.FileProviders.Abstractions (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Primitives (>= 2.0.0-preview2-final) - restriction: >= netstandard1.0
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.0
    Microsoft.Extensions.FileProviders.Composite (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.FileProviders.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.0
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.0
    Microsoft.Extensions.FileProviders.Embedded (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.FileProviders.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.0
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.0
    Microsoft.Extensions.FileProviders.Physical (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.FileProviders.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      Microsoft.Extensions.FileSystemGlobbing (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.3
      System.IO.FileSystem.Watcher (>= 4.3) - restriction: >= netstandard1.3
    Microsoft.Extensions.FileSystemGlobbing (2.0.0-preview2-final) - restriction: >= netcore2.0
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: || (>= net45) (>= netstandard1.3)
    Microsoft.Extensions.Hosting.Abstractions (2.0.0-preview2-final) - restriction: >= netcore2.0
    Microsoft.Extensions.Identity.Core (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Logging (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      System.ComponentModel.Annotations (>= 4.3) - restriction: >= netstandard2.0
    Microsoft.Extensions.Identity.Stores (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Identity.Core (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.Logging (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      System.ComponentModel.Annotations (>= 4.3) - restriction: >= netstandard2.0
    Microsoft.Extensions.Localization (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      Microsoft.Extensions.Localization.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      Microsoft.Extensions.Logging.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.3
      System.Resources.Reader (>= 4.3) - restriction: >= netstandard1.3
    Microsoft.Extensions.Localization.Abstractions (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.CSharp (>= 4.3) - restriction: >= netstandard1.0
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.0
    Microsoft.Extensions.Logging (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.1
      Microsoft.Extensions.Logging.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.1
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard1.1
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.1
    Microsoft.Extensions.Logging.Abstractions (2.0.0-preview2-final) - restriction: >= netcore2.0
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.1
    Microsoft.Extensions.Logging.AzureAppServices (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration.EnvironmentVariables (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      Microsoft.Extensions.Configuration.Json (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      Microsoft.Extensions.Logging (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      Microsoft.Extensions.Logging.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.3
      Serilog.Extensions.Logging (>= 1.4) - restriction: >= netstandard1.3
      Serilog.Sinks.PeriodicBatching (>= 2.1) - restriction: >= netstandard1.3
      Serilog.Sinks.RollingFile (>= 3.3) - restriction: >= netstandard1.3
      WindowsAzure.Storage (>= 8.1.1) - restriction: >= netstandard1.3
    Microsoft.Extensions.Logging.Configuration (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Logging (>= 2.0.0-preview2-final) - restriction: >= netstandard1.1
      Microsoft.Extensions.Options.ConfigurationExtensions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.1
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.1
    Microsoft.Extensions.Logging.Console (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      Microsoft.Extensions.Logging (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.3
    Microsoft.Extensions.Logging.Debug (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Logging (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.3
    Microsoft.Extensions.Logging.EventSource (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Logging (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.3
      Newtonsoft.Json (>= 10.0.1) - restriction: >= netstandard1.3
    Microsoft.Extensions.Logging.TraceSource (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Logging (>= 2.0.0-preview2-final) - restriction: >= netstandard1.3
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.3
      System.Diagnostics.TraceSource (>= 4.3) - restriction: && (< net46) (>= netstandard1.3)
    Microsoft.Extensions.ObjectPool (2.0.0-preview2-final) - restriction: >= netcore2.0
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.3
    Microsoft.Extensions.Options (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.1
      Microsoft.Extensions.Primitives (>= 2.0.0-preview2-final) - restriction: >= netstandard1.1
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.1
      System.ComponentModel (>= 4.3) - restriction: >= netstandard1.1
    Microsoft.Extensions.Options.ConfigurationExtensions (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Configuration.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.1
      Microsoft.Extensions.Configuration.Binder (>= 2.0.0-preview2-final) - restriction: >= netstandard1.1
      Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.1
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard1.1
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.1
    Microsoft.Extensions.PlatformAbstractions (1.1) - restriction: >= netcore2.0
      NETStandard.Library (>= 1.6.1) - restriction: || (>= net451) (>= netstandard1.3)
      System.Reflection.TypeExtensions (>= 4.3) - restriction: && (< net451) (>= netstandard1.3)
    Microsoft.Extensions.Primitives (2.0.0-preview2-final) - restriction: >= netcore2.0
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.0
      System.Runtime.CompilerServices.Unsafe (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard1.0
    Microsoft.Extensions.WebEncoders (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard1.1
      Microsoft.Extensions.Options (>= 2.0.0-preview2-final) - restriction: >= netstandard1.1
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netstandard1.1
      System.Text.Encodings.Web (>= 4.3) - restriction: >= netstandard1.1
    Microsoft.IdentityModel.Clients.ActiveDirectory (3.14.2) - restriction: >= netcore2.0
      NETStandard.Library (>= 1.6) - restriction: && (< net45) (>= netstandard1.4) (< xamarinios)
      System.Runtime.Serialization.Json (>= 4.0.2) - restriction: && (< net45) (>= netstandard1.4) (< xamarinios)
      System.Runtime.Serialization.Primitives (>= 4.1.1) - restriction: && (< net45) (>= netstandard1.4) (< xamarinios)
    Microsoft.IdentityModel.Logging (1.1.4) - restriction: >= netcore2.0
      System.Diagnostics.Tracing (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
      System.Globalization (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
      System.IO (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
      System.IO.FileSystem (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
    Microsoft.IdentityModel.Protocols (2.1.4) - restriction: >= netcore2.0
      System.Collections.Specialized (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
      System.Diagnostics.Contracts (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
      System.IdentityModel.Tokens.Jwt (>= 5.1.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
      System.Net.Http (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
    Microsoft.IdentityModel.Protocols.OpenIdConnect (2.1.4) - restriction: >= netcore2.0
      Microsoft.IdentityModel.Protocols (>= 2.1.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
      System.Dynamic.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
    Microsoft.IdentityModel.Tokens (5.1.4) - restriction: >= netcore2.0
      Microsoft.IdentityModel.Logging (>= 1.1.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
      Newtonsoft.Json (>= 9.0.1) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
      System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
      System.Diagnostics.Tools (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
      System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
      System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
      System.Runtime.InteropServices (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
      System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
      System.Security.Claims (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
      System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
      System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
      System.Text.RegularExpressions (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
      System.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
      System.Xml.ReaderWriter (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
    Microsoft.Net.Http.Headers (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.Extensions.Primitives (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      System.Buffers (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
    Microsoft.NETCore.App (2.0.0-preview2-25407-01) - restriction: >= netcore2.0
      Microsoft.NETCore.DotNetHostPolicy (>= 2.0.0-preview2-25407-01) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 2.0.0-preview2-25405-01) - restriction: >= netcore2.0
      NETStandard.Library (>= 2.0.0-preview2-25401-01) - restriction: >= netcore2.0
    Microsoft.NETCore.DotNetAppHost (2.0.0-preview2-25407-01) - restriction: >= netcore2.0
    Microsoft.NETCore.DotNetHostPolicy (2.0.0-preview2-25407-01) - restriction: >= netcore2.0
      Microsoft.NETCore.DotNetHostResolver (>= 2.0.0-preview2-25407-01)
    Microsoft.NETCore.DotNetHostResolver (2.0.0-preview2-25407-01) - restriction: >= netcore2.0
      Microsoft.NETCore.DotNetAppHost (>= 2.0.0-preview2-25407-01)
    Microsoft.NETCore.Platforms (2.0.0-preview2-25405-01) - restriction: >= netcore2.0
    Microsoft.NETCore.Targets (1.1) - restriction: >= netcore2.0
    Microsoft.Packaging.Tools (1.0.0-preview2-25401-01) - restriction: >= netcore2.0
    Microsoft.Rest.ClientRuntime (2.3.8) - restriction: >= netcore2.0
      NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.4)
      Newtonsoft.Json (>= 9.0.1) - restriction: && (< net452) (>= netstandard1.4)
    Microsoft.Rest.ClientRuntime.Azure (3.3.8) - restriction: >= netcore2.0
      Microsoft.Rest.ClientRuntime (>= 2.3.8 < 3.0) - restriction: || (>= net452) (>= netstandard1.4)
      NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.4)
      Newtonsoft.Json (>= 9.0.1) - restriction: && (< net452) (>= netstandard1.4)
    Microsoft.VisualStudio.Web.BrowserLink (2.0.0-preview2-final) - restriction: >= netcore2.0
      Microsoft.AspNetCore.Hosting.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Http.Abstractions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.AspNetCore.Http.Extensions (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
      Microsoft.Extensions.FileProviders.Physical (>= 2.0.0-preview2-final) - restriction: >= netstandard2.0
    Microsoft.Win32.Primitives (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    Microsoft.Win32.Registry (4.4.0-preview2-25405-01) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 2.0.0-preview2-25405-01) - restriction: >= netcore2.0
      System.Security.AccessControl (>= 4.4.0-preview2-25405-01) - restriction: || (>= net461) (&& (< netstandard1.3) (>= monoandroid)) (>= netstandard2.0) (>= monotouch) (>= xamarinios) (>= xamarinmac)
      System.Security.Principal.Windows (>= 4.4.0-preview2-25405-01) - restriction: || (>= net461) (&& (< netstandard1.3) (>= monoandroid)) (>= netstandard2.0) (>= monotouch) (>= xamarinios) (>= xamarinmac)
    NETStandard.Library (2.0.0-preview2-25401-01) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= uap100) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= monoandroid)) (&& (< netstandard1.0) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (< portable-net45+win8+wpa81) (>= portable-net45+win8+wp8+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6)
      Microsoft.Packaging.Tools (>= 1.0.0-preview2-25401-01) - restriction: || (>= net461) (&& (< netstandard1.0) (>= monoandroid)) (>= netstandard2.0) (>= monotouch) (>= xamarinios) (>= xamarinmac)
    Newtonsoft.Json (10.0.3) - restriction: >= netcore2.0
      Microsoft.CSharp (>= 4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3))
      NETStandard.Library (>= 1.6.1) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3))
      System.ComponentModel.TypeConverter (>= 4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3))
      System.Runtime.Serialization.Formatters (>= 4.3) - restriction: && (< net20) (>= netstandard1.3)
      System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3))
      System.Xml.XmlDocument (>= 4.3) - restriction: && (< net20) (>= netstandard1.3)
    Newtonsoft.Json.Bson (1.0.1) - restriction: >= netcore2.0
      NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.3)
      Newtonsoft.Json (>= 10.0.1) - restriction: || (>= net45) (>= netstandard1.3)
    Remotion.Linq (2.1.2) - restriction: >= netcore2.0
      System.Collections (>= 4.0.11) - restriction: && (< net35) (>= netstandard1.0)
      System.Diagnostics.Debug (>= 4.0.11) - restriction: && (< net35) (>= netstandard1.0)
      System.Linq (>= 4.1) - restriction: && (< net35) (>= netstandard1.0)
      System.Linq.Expressions (>= 4.1) - restriction: && (< net35) (>= netstandard1.0)
      System.Linq.Queryable (>= 4.0.1) - restriction: && (< net35) (>= netstandard1.0)
      System.ObjectModel (>= 4.0.12) - restriction: && (< net35) (>= netstandard1.0)
      System.Reflection (>= 4.1) - restriction: && (< net35) (>= netstandard1.0)
      System.Reflection.Extensions (>= 4.0.1) - restriction: && (< net35) (>= netstandard1.0)
      System.Runtime (>= 4.1) - restriction: && (< net35) (>= netstandard1.0)
      System.Runtime.Extensions (>= 4.1) - restriction: && (< net35) (>= netstandard1.0)
      System.Threading (>= 4.0.11) - restriction: && (< net35) (>= netstandard1.0)
    runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: >= netcore2.0
    runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: >= netcore2.0
    runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: >= netcore2.0
    runtime.native.System (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1)
      Microsoft.NETCore.Targets (>= 1.1)
    runtime.native.System.Data.SqlClient.sni (4.4.0-preview2-25405-01) - restriction: >= netcore2.0
      runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (>= 4.4.0-preview2-25312-01)
      runtime.win-x64.runtime.native.System.Data.SqlClient.sni (>= 4.4.0-preview2-25312-01)
      runtime.win-x86.runtime.native.System.Data.SqlClient.sni (>= 4.4.0-preview2-25312-01)
    runtime.native.System.IO.Compression (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1)
      Microsoft.NETCore.Targets (>= 1.1)
    runtime.native.System.Net.Http (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1)
      Microsoft.NETCore.Targets (>= 1.1)
    runtime.native.System.Net.Security (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1)
      Microsoft.NETCore.Targets (>= 1.1)
    runtime.native.System.Security.Cryptography.Apple (4.3) - restriction: >= netcore2.0
      runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3)
    runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: >= netcore2.0
      runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1)
      runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1)
      runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1)
      runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1)
      runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1)
      runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1)
      runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1)
      runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1)
      runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1)
      runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1)
    runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: >= netcore2.0
    runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: >= netcore2.0
    runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3) - restriction: >= netcore2.0
    runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: >= netcore2.0
    runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: >= netcore2.0
    runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: >= netcore2.0
    runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: >= netcore2.0
    runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: >= netcore2.0
    runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (4.4.0-preview2-25312-01) - restriction: >= netcore2.0
    runtime.win-x64.runtime.native.System.Data.SqlClient.sni (4.4.0-preview2-25312-01) - restriction: >= netcore2.0
    runtime.win-x86.runtime.native.System.Data.SqlClient.sni (4.4.0-preview2-25312-01) - restriction: >= netcore2.0
    Serilog (2.5) - restriction: >= netcore2.0
      Microsoft.CSharp (>= 4.0.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3))
      System.Collections (>= 4.0.11) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3))
      System.Collections.NonGeneric (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.3)
      System.Dynamic.Runtime (>= 4.0.11) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3))
      System.Globalization (>= 4.0.11) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3))
      System.Linq (>= 4.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3))
      System.Reflection (>= 4.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3))
      System.Reflection.Extensions (>= 4.0.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3))
      System.Runtime (>= 4.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3))
      System.Runtime.Extensions (>= 4.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3))
      System.Text.RegularExpressions (>= 4.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3))
      System.Threading (>= 4.0.11) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3))
    Serilog.Extensions.Logging (1.4) - restriction: >= netcore2.0
      Microsoft.Extensions.Logging.Abstractions (>= 1.0) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (>= net46)
      Serilog (>= 2.3) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (>= net46)
    Serilog.Sinks.File (3.2) - restriction: >= netcore2.0
      Serilog (>= 2.3) - restriction: || (>= net45) (>= netstandard1.3)
      System.IO (>= 4.1) - restriction: && (< net45) (>= netstandard1.3)
      System.IO.FileSystem (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.3)
      System.IO.FileSystem.Primitives (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.3)
      System.Text.Encoding.Extensions (>= 4.0.11) - restriction: && (< net45) (>= netstandard1.3)
      System.Threading (>= 4.0.11) - restriction: && (< net45) (>= netstandard1.3)
      System.Threading.Timer (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.3)
    Serilog.Sinks.PeriodicBatching (2.1.1) - restriction: >= netcore2.0
      Serilog (>= 2.0) - restriction: >= netstandard1.1
      System.Collections.Concurrent (>= 4.0.12) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2)) (&& (< net45) (>= netstandard1.2))
      System.Threading.Timer (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.2)
    Serilog.Sinks.RollingFile (3.3) - restriction: >= netcore2.0
      Serilog.Sinks.File (>= 3.2) - restriction: || (>= net45) (>= netstandard1.3)
      System.IO (>= 4.1) - restriction: && (< net45) (>= netstandard1.3)
      System.IO.FileSystem.Primitives (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.3)
      System.Runtime.InteropServices (>= 4.1) - restriction: && (< net45) (>= netstandard1.3)
      System.Text.Encoding.Extensions (>= 4.0.11) - restriction: && (< net45) (>= netstandard1.3)
    SQLitePCLRaw.bundle_green (1.1.7) - restriction: >= netcore2.0
      NETStandard.Library (>= 1.6) - restriction: && (< net35) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      SQLitePCLRaw.core (>= 1.1.7) - restriction: || (&& (>= net35) (< portable-net40+win8+wp8+sl5) (< portable-net45+win8+wp8+wpa81)) (&& (< net35) (>= netstandard1.1) (< win8) (< wpa81)) (&& (< net35) (>= portable-net45+win8+wpa81) (< portable-net40+win8+wp8+sl5)) (&& (< net35) (< portable-net45+win8+wpa81) (< portable-net40+win8+wp8+sl5) (>= portable-net45+win8+wp8+wpa81)) (&& (< net35) (>= portable-net40+win8+wp8+sl5) (< portable-net45+win8+wp8+wpa81)) (&& (< net35) (< portable-net40+win8+wp8+sl5) (< portable-net45+win8+wp8+wpa81)) (&& (>= net40) (< portable-net45+win8+wp8+wpa81)) (>= net45) (>= uap100) (&& (< netstandard1.1) (>= monoandroid)) (&& (< netstandard1.1) (>= win8) (< win81)) (&& (< netstandard1.1) (>= win81)) (>= xamarinios) (>= xamarinmac) (&& (< win8) (>= wpa81)) (>= wp8)
    SQLitePCLRaw.core (1.1.7) - restriction: >= netcore2.0
      NETStandard.Library (>= 1.6) - restriction: || (&& (< net35) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= uap100)
    SQLitePCLRaw.lib.e_sqlite3.linux (1.1.7) - restriction: >= netcore2.0
    SQLitePCLRaw.lib.e_sqlite3.osx (1.1.7) - restriction: >= netcore2.0
    SQLitePCLRaw.lib.e_sqlite3.v110_xp (1.1.7) - restriction: >= netcore2.0
    StackExchange.Redis.StrongName (1.2.5) - restriction: >= netcore2.0
      NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.5)
      System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
      System.Collections.Concurrent (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
      System.Collections.NonGeneric (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
      System.Diagnostics.Tools (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
      System.IO.Compression (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
      System.IO.FileSystem (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
      System.Linq (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
      System.Net.NameResolution (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
      System.Net.Security (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
      System.Net.Sockets (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
      System.Reflection.Emit (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
      System.Reflection.Emit.Lightweight (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
      System.Reflection.TypeExtensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
      System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
      System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
      System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
      System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
      System.Text.RegularExpressions (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
      System.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
      System.Threading.Thread (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
      System.Threading.ThreadPool (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
      System.Threading.Timer (>= 4.3) - restriction: && (< net45) (>= netstandard1.5)
    System.AppContext (4.3) - restriction: >= netcore2.0
      System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
    System.Buffers (4.4.0-preview2-25405-01) - restriction: >= netcore2.0
    System.Collections (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.Collections.Concurrent (4.3) - restriction: >= netcore2.0
      System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.Collections.Immutable (1.3.1) - restriction: >= netcore2.0
      System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)
      System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)
      System.Globalization (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)
      System.Linq (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)
      System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)
      System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)
      System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)
      System.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)
    System.Collections.NonGeneric (4.3) - restriction: >= netcore2.0
      System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    System.Collections.Specialized (4.3) - restriction: >= netcore2.0
      System.Collections.NonGeneric (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Globalization.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    System.ComponentModel (4.3) - restriction: >= netcore2.0
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.ComponentModel.Annotations (4.4.0-preview2-25405-01) - restriction: >= netcore2.0
    System.ComponentModel.Primitives (4.3) - restriction: >= netcore2.0
      System.ComponentModel (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)
      System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)
      System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)
    System.ComponentModel.TypeConverter (4.3) - restriction: >= netcore2.0
      System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Collections.NonGeneric (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= net462)
      System.Collections.Specialized (>= 4.3) - restriction: && (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)
      System.ComponentModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac))
      System.ComponentModel.Primitives (>= 4.3) - restriction: || (&& (>= net45) (< netstandard1.5)) (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= net462) (&& (< netstandard1.0) (>= win8)) (>= wp8) (>= wpa81)
      System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Linq (>= 4.3) - restriction: && (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Reflection.TypeExtensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac))
    System.Console (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    System.Data.SqlClient (4.4.0-preview2-25405-01) - restriction: >= netcore2.0
      Microsoft.Win32.Registry (>= 4.4.0-preview2-25405-01) - restriction: >= netstandard2.0
      runtime.native.System.Data.SqlClient.sni (>= 4.4.0-preview2-25405-01) - restriction: || (&& (< net451) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard2.0)
      System.Security.Principal.Windows (>= 4.4.0-preview2-25405-01) - restriction: || (&& (< net451) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard2.0)
      System.Text.Encoding.CodePages (>= 4.4.0-preview2-25405-01) - restriction: || (&& (< net451) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard2.0)
    System.Diagnostics.Contracts (4.3) - restriction: >= netcore2.0
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50)
    System.Diagnostics.Debug (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.Diagnostics.DiagnosticSource (4.4) - restriction: >= netcore2.0
    System.Diagnostics.FileVersionInfo (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Reflection.Metadata (>= 1.4.1) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    System.Diagnostics.StackTrace (4.3) - restriction: >= netcore2.0
      System.IO.FileSystem (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Reflection (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Reflection.Metadata (>= 1.4.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    System.Diagnostics.Tools (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50)
    System.Diagnostics.TraceSource (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      runtime.native.System (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    System.Diagnostics.Tracing (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
    System.Dynamic.Runtime (4.3) - restriction: >= netcore2.0
      System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.ObjectModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Reflection.Emit (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.Globalization (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.Globalization.Calendars (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    System.Globalization.Extensions (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    System.IdentityModel.Tokens.Jwt (5.1.4) - restriction: >= netcore2.0
      Microsoft.IdentityModel.Tokens (>= 5.1.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
    System.Interactive.Async (3.1.1) - restriction: >= netcore2.0
      NETStandard.Library (>= 1.6) - restriction: && (< net45) (>= netstandard1.0)
    System.IO (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
    System.IO.Compression (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      runtime.native.System (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      runtime.native.System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Buffers (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.IO.FileSystem (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    System.IO.FileSystem.Primitives (4.3) - restriction: >= netcore2.0
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    System.IO.FileSystem.Watcher (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      runtime.native.System (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.IO.FileSystem (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Threading.Overlapped (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Threading.Thread (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    System.Linq (4.3) - restriction: >= netcore2.0
      System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.6) (< monoandroid) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.6) (< monoandroid) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
    System.Linq.Expressions (4.3) - restriction: >= netcore2.0
      System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.ObjectModel (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Reflection.Emit (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
    System.Linq.Queryable (4.3) - restriction: >= netcore2.0
      System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.Net.Http (4.3.2) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      runtime.native.System (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      runtime.native.System.Net.Http (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Globalization.Extensions (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.IO.FileSystem (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= net46) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
    System.Net.NameResolution (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      runtime.native.System (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Collections (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Globalization (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Net.Primitives (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Security.Principal.Windows (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Threading (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
    System.Net.Primitives (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8))
      Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8))
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8))
      System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.Net.Security (4.3.1) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      runtime.native.System (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      runtime.native.System.Net.Security (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Collections (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Globalization (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Globalization.Extensions (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Net.Primitives (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Security.Claims (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Security.Principal (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Text.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Threading (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Threading.ThreadPool (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
    System.Net.Sockets (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Net.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    System.Numerics.Vectors (4.4.0-preview2-25405-01) - restriction: >= netcore2.0
    System.ObjectModel (4.3) - restriction: >= netcore2.0
      System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.Private.DataContractSerialization (4.3) - restriction: >= netcore2.0
      System.Collections (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Globalization (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Linq (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Reflection (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Reflection.Emit.Lightweight (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= net46) (>= dnxcore50) (&& (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (>= net46) (>= dnxcore50) (&& (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Text.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Threading (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Xml.XmlDocument (>= 4.3) - restriction: || (>= net46) (>= dnxcore50) (&& (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Xml.XmlSerializer (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
    System.Reflection (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
    System.Reflection.Emit (4.3) - restriction: >= netcore2.0
      System.IO (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac)
    System.Reflection.Emit.ILGeneration (4.3) - restriction: >= netcore2.0
      System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< wp8)
      System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< wp8)
      System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< wp8)
    System.Reflection.Emit.Lightweight (4.3) - restriction: >= netcore2.0
      System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< wp8)
      System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< wp8)
      System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< wp8)
      System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< wp8)
    System.Reflection.Extensions (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50)
      System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50)
    System.Reflection.Metadata (1.4.2) - restriction: >= netcore2.0
      System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      System.Collections.Immutable (>= 1.3.1) - restriction: || (>= net45) (&& (>= netstandard1.1) (< win8)) (&& (< netstandard1.1) (>= monoandroid)) (&& (< netstandard1.1) (>= win8)) (>= monotouch) (>= xamarinios) (>= xamarinmac) (>= wpa81)
      System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      System.IO (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      System.IO.Compression (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      System.Linq (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      System.Reflection.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      System.Runtime.InteropServices (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      System.Text.Encoding (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      System.Text.Encoding.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      System.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
    System.Reflection.Primitives (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50)
    System.Reflection.TypeExtensions (4.3) - restriction: >= netcore2.0
      System.Reflection (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= net462) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
    System.Resources.Reader (4.3) - restriction: >= netcore2.0
      System.IO (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)
      System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)
      System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)
      System.Text.Encoding (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)
      System.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)
    System.Resources.ResourceManager (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50)
      System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50)
      System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50)
    System.Runtime (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
    System.Runtime.CompilerServices.Unsafe (4.4.0-preview2-25405-01) - restriction: >= netcore2.0
    System.Runtime.Extensions (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50)
    System.Runtime.Handles (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    System.Runtime.InteropServices (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore1.1)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore1.1)
      System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore1.1)
      System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore1.1)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= net462) (>= dnxcore50) (>= netcore1.1)
      System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore1.1)
    System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: >= netcore2.0
      runtime.native.System (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime.InteropServices (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)
      System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.Runtime.Loader (4.3) - restriction: >= netcore2.0
      System.IO (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Reflection (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)
    System.Runtime.Numerics (4.3) - restriction: >= netcore2.0
      System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.Runtime.Serialization.Formatters (4.3) - restriction: >= netcore2.0
      System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Reflection (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (>= netstandard1.4) (< monotouch) (< xamarinios) (< xamarinmac))
    System.Runtime.Serialization.Json (4.3) - restriction: >= netcore2.0
      System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Private.DataContractSerialization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.Runtime.Serialization.Primitives (4.3) - restriction: >= netcore2.0
      System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.Security.AccessControl (4.4.0-preview2-25405-01) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 2.0.0-preview2-25405-01) - restriction: >= netcore2.0
      System.Security.Principal.Windows (>= 4.4.0-preview2-25405-01) - restriction: || (>= netstandard1.3) (>= monoandroid)
    System.Security.Claims (4.3) - restriction: >= netcore2.0
      System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Security.Principal (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    System.Security.Cryptography.Algorithms (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Collections (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net463) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net463) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime.Numerics (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= net463) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
    System.Security.Cryptography.Cng (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6)
      System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6)
      System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6)
      System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6)
      System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6)
      System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6)
      System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6)
      System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4)) (>= net461) (>= netstandard1.6)
      System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6)
      System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4)) (>= net461) (>= netstandard1.6)
      System.Text.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6)
    System.Security.Cryptography.Csp (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Reflection (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    System.Security.Cryptography.Encoding (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Collections.Concurrent (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Linq (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    System.Security.Cryptography.OpenSsl (4.3) - restriction: >= netcore2.0
      runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (>= net463) (>= netstandard1.6) (>= monoandroid)
      System.Collections (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.IO (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime.Extensions (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime.Handles (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.InteropServices (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.Numerics (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Text.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
    System.Security.Cryptography.Primitives (4.3) - restriction: >= netcore2.0
      System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    System.Security.Cryptography.X509Certificates (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      runtime.native.System (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      runtime.native.System.Net.Http (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Diagnostics.Debug (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Security.Cryptography.Csp (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
      System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac))
    System.Security.Cryptography.Xml (4.4.0-preview2-25405-01) - restriction: >= netcore2.0
    System.Security.Principal (4.3) - restriction: >= netcore2.0
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50)
    System.Security.Principal.Windows (4.4.0-preview2-25405-01) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 2.0.0-preview2-25405-01) - restriction: >= netcore2.0
    System.Spatial (5.8.2) - restriction: >= netcore2.0
    System.Text.Encoding (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.Text.Encoding.CodePages (4.4.0-preview2-25405-01) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 2.0.0-preview2-25405-01) - restriction: >= netcore2.0
    System.Text.Encoding.Extensions (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.Text.Encodings.Web (4.4.0-preview2-25405-01) - restriction: >= netcore2.0
    System.Text.RegularExpressions (4.3) - restriction: >= netcore2.0
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) (>= netcore1.1)
    System.Threading (4.3) - restriction: >= netcore2.0
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.Threading.Overlapped (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net46) (>= netstandard1.3)) (>= dnxcore50)
      System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3)) (>= dnxcore50)
      System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3)) (>= dnxcore50)
    System.Threading.Tasks (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.Threading.Tasks.Extensions (4.4.0-preview2-25405-01) - restriction: >= netcore2.0
    System.Threading.Tasks.Parallel (4.3) - restriction: >= netcore2.0
      System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.Threading.Thread (4.3) - restriction: >= netcore2.0
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    System.Threading.ThreadPool (4.3) - restriction: >= netcore2.0
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    System.Threading.Timer (4.3) - restriction: >= netcore2.0
      Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net451) (>= netstandard1.2) (< monotouch) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50)
      Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net451) (>= netstandard1.2) (< monotouch) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net451) (>= netstandard1.2) (< monotouch) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50)
    System.ValueTuple (4.3.1) - restriction: >= netcore2.0
      System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)
      System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)
      System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)
    System.Xml.ReaderWriter (4.3) - restriction: >= netcore2.0
      System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.Xml.XDocument (4.3) - restriction: >= netcore2.0
      System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.Xml.XmlDocument (4.3) - restriction: >= netcore2.0
      System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Xml.ReaderWriter (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    System.Xml.XmlSerializer (4.3) - restriction: >= netcore2.0
      System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Reflection.Emit (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
      System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50)
    System.Xml.XPath (4.3) - restriction: >= netcore2.0
      System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Xml.ReaderWriter (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
    System.Xml.XPath.XDocument (4.3) - restriction: >= netcore2.0
      System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Linq (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Xml.ReaderWriter (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac)
      System.Xml.XPath (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac))
    WindowsAzure.Storage (8.2.1) - restriction: >= netcore2.0
      Microsoft.Data.OData (>= 5.8.2) - restriction: || (>= net45) (&& (>= netstandard1.0) (< netstandard1.3) (< win8)) (&& (< netstandard1.0) (>= win8)) (&& (>= netstandard1.3) (< win8)) (>= wp8) (>= wpa81)
      NETStandard.Library (>= 1.6) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< wpa81))
      Newtonsoft.Json (>= 9.0.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< wpa81))
      System.Spatial (>= 5.8.2) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< wpa81))

@forki forki closed this as completed in 39a60cf Jul 28, 2017
@forki
Copy link
Member

forki commented Jul 28, 2017

@xlegalles I released a prerelease with a fix. could you please give it a try?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants