From 467ed56383c10abb4725ddf1d2a8a4b1df75173b Mon Sep 17 00:00:00 2001 From: Justin Date: Wed, 21 Jun 2017 13:48:10 -0400 Subject: [PATCH 01/22] Bump version to 1.1.0-beta-1 --- .gitattributes | 1 + .gitignore | 29 +- .paket/Paket.Restore.targets | 108 ++++ .paket/paket.targets | 58 ++ README.md | 14 +- RELEASE_NOTES.md | 7 + build.cmd | 9 + build.fsx | 137 ++++ build.sh | 20 + package.json | 23 - paket.dependencies | 16 + paket.lock | 587 ++++++++++++++++++ .../Fable.Helpers.ReactToolbox.fs | 176 +++--- src/Fable.ReactToolbox.fsproj | 18 + src/paket.references | 3 + 15 files changed, 1088 insertions(+), 118 deletions(-) create mode 100644 .gitattributes create mode 100644 .paket/Paket.Restore.targets create mode 100644 .paket/paket.targets create mode 100644 RELEASE_NOTES.md create mode 100644 build.cmd create mode 100644 build.fsx create mode 100644 build.sh delete mode 100644 package.json create mode 100644 paket.dependencies create mode 100644 paket.lock rename Fable.Helpers.ReactToolbox.fs => src/Fable.Helpers.ReactToolbox.fs (94%) create mode 100644 src/Fable.ReactToolbox.fsproj create mode 100644 src/paket.references diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..2125666 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto \ No newline at end of file diff --git a/.gitignore b/.gitignore index 6781ff0..c83b4c3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,26 @@ -build -node_modules +# OSX +# +.DS_Store + +# node.js +# +**/node_modules/ +**/npm/ npm-debug.log -.idea -.DS_Store \ No newline at end of file +samples/**/public + +.vscode/ +.vs + +# F# +.fake/ +.paket/paket.exe +packages/ +build/ +obj +bin +out + +Meta.props +# git +*.orig diff --git a/.paket/Paket.Restore.targets b/.paket/Paket.Restore.targets new file mode 100644 index 0000000..9a56ad3 --- /dev/null +++ b/.paket/Paket.Restore.targets @@ -0,0 +1,108 @@ + + + + true + $(MSBuildThisFileDirectory) + /Library/Frameworks/Mono.framework/Commands/mono + mono + + $(PaketRootPath)paket.exe + $(PaketToolsPath)paket.exe + "$(PaketExePath)" + $(MonoPath) --runtime=v4.0.30319 "$(PaketExePath)" + + + + + + + + $(MSBuildProjectDirectory)/obj/$(MSBuildProjectFile).references + + + + + + + + + $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[0]) + $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[1]) + + + %(PaketReferencesFileLinesInfo.PackageVersion) + + + + + $(MSBuildProjectDirectory)/obj/$(MSBuildProjectFile).NuGet.Config + + + + + + + false + + + + + + $(MSBuildProjectDirectory)/obj/$(MSBuildProjectFile).references + true + + + + <_NuspecFiles Include="$(BaseIntermediateOutputPath)*.nuspec"/> + + + + + + + + + + + + + \ No newline at end of file diff --git a/.paket/paket.targets b/.paket/paket.targets new file mode 100644 index 0000000..2fb5f4d --- /dev/null +++ b/.paket/paket.targets @@ -0,0 +1,58 @@ + + + + + + true + $(MSBuildThisFileDirectory) + $(MSBuildThisFileDirectory)..\ + /Library/Frameworks/Mono.framework/Commands/mono + mono + + + + + $(PaketRootPath)paket.exe + $(PaketToolsPath)paket.exe + "$(PaketExePath)" + $(MonoPath) --runtime=v4.0.30319 "$(PaketExePath)" + + + + + + $(MSBuildProjectFullPath).paket.references + + + + + $(MSBuildProjectDirectory)\$(MSBuildProjectName).paket.references + + + + + $(MSBuildProjectDirectory)\paket.references + + + + + + + + + + + + $(PaketCommand) restore --references-files "$(PaketReferences)" + + RestorePackages; $(BuildDependsOn); + + + + + diff --git a/README.md b/README.md index cdcbc04..eb0f0e4 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,18 @@ UI components for fable-react ======= -[![npm version](https://badge.fury.io/js/fable-react-toolbox.svg)](https://badge.fury.io/js/fable-react-toolbox) +[![nuget](https://badge.fury.io/nu/Fable.ReactToolbox.svg)](https://badge.fury.io/nu/Fable.ReactToolbox) -This is ported directly from [react-toolbox](http://react-toolbox.com/) +### Installation +1. `paket add nuget Fable.ReactToolbox` +2. `yarn add react-toolbox` + +### Building the package +1. `dotnet restore` +2. `dotnet build` +3. `dotnet pack` +### Usage +See the getting started project. +This is ported directly from [react-toolbox](http://react-toolbox.com/) Please refer to the docs there. \ No newline at end of file diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md new file mode 100644 index 0000000..1a326dc --- /dev/null +++ b/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +### 1.1.0-beta-1 + +* Fable 1.1 upgrade, still using ReactToolbox 1.0 + +### 0.13.0 + +* Initial version diff --git a/build.cmd b/build.cmd new file mode 100644 index 0000000..e9933d3 --- /dev/null +++ b/build.cmd @@ -0,0 +1,9 @@ +@echo off +cls + +.paket\paket.exe restore +if errorlevel 1 ( + exit /b %errorlevel% +) + +packages\build\FAKE\tools\FAKE.exe build.fsx %* diff --git a/build.fsx b/build.fsx new file mode 100644 index 0000000..79c4842 --- /dev/null +++ b/build.fsx @@ -0,0 +1,137 @@ +// include Fake libs +#r "./packages/build/FAKE/tools/FakeLib.dll" +#r "System.IO.Compression.FileSystem" + +open System +open System.IO +open Fake +open Fake.NpmHelper +open Fake.ReleaseNotesHelper +open Fake.Git + +let yarn = ProcessHelper.tryFindFileOnPath (if isWindows then "yarn.cmd" else "yarn") + |> Option.get // make sure there's npm yarn is installed + +// Filesets +let projects = !! "src/**.fsproj" + + +let dotnetcliVersion = "1.0.1" +let mutable dotnetExePath = "dotnet" + +let runDotnet workingDir = + DotNetCli.RunCommand (fun p -> { p with ToolPath = dotnetExePath + WorkingDir = workingDir } ) + +Target "InstallDotNetCore" (fun _ -> + dotnetExePath <- DotNetCli.InstallDotNetSDK dotnetcliVersion +) + + +// Target "Install" (fun _ -> +// Npm (fun p -> +// { p with +// NpmFilePath = yarn +// }) +// projects +// |> Seq.iter (fun s -> +// let dir = IO.Path.GetDirectoryName s +// runDotnet dir "restore" +// ) +// "paket-files" "xyncro" "aether" "src" "Aether" "Aether.fs" +// |> CopyFile "src" +// ) + +Target "Build" (fun _ -> + runDotnet "src" "build" +) + +Target "Test" (fun _ -> + runDotnet "tests" "fable npm-run test" +) + +let release = LoadReleaseNotes "RELEASE_NOTES.md" + +Target "Meta" (fun _ -> + [ "" + "" + "Fable bindings for React Toolbox" + "https://github.com/Prolucid/fable-react-toolbox" + "https://raw.githubusercontent.com/prolucid/fable-react-toolbox/master/LICENSE" + "https://github.com/Prolucid/fable-react-toolbox.git" + "material;design;react;fsharp;fable" + "Justin Sacks" + sprintf "%s" (string release.SemVer) + "" + ""] + |> WriteToFile false "Meta.props" +) + +// -------------------------------------------------------------------------------------- +// Build a NuGet package + +Target "Package" (fun _ -> + runDotnet "src" "pack" +) + +Target "PublishNuget" (fun _ -> + let args = sprintf "nuget push Fable.ReactToolbox.%s.nupkg -s nuget.org -k %s" (string release.SemVer) (environVar "nugetkey") + runDotnet "src/bin/Debug" args +) + + +let gitOwner = "prolucid" +let gitName = "fable-react-toolbox" +let gitHome= sprintf "https://github.com/%s" gitOwner + +#load "paket-files/build/fsharp/FAKE/modules/Octokit/Octokit.fsx" +open Octokit + +Target "Release" (fun _ -> + let user = + match getBuildParam "github-user" with + | s when not (String.IsNullOrWhiteSpace s) -> s + | _ -> getUserInput "Username: " + let pw = + match getBuildParam "github-pw" with + | s when not (String.IsNullOrWhiteSpace s) -> s + | _ -> getUserPassword "Password: " + let remote = + Git.CommandHelper.getGitResult "" "remote -v" + |> Seq.filter (fun (s: string) -> s.EndsWith("(push)")) + |> Seq.tryFind (fun (s: string) -> s.Contains(gitOwner + "/" + gitName)) + |> function None -> gitHome + "/" + gitName | Some (s: string) -> s.Split().[0] + + StageAll "" + Git.Commit.Commit "" (sprintf "Bump version to %s" release.NugetVersion) + Branches.pushBranch "" remote (Information.getBranchName "") + + Branches.tag "" release.NugetVersion + Branches.pushTag "" remote release.NugetVersion + + // release on github + createClient user pw + |> createDraft gitOwner gitName release.NugetVersion (release.SemVer.PreRelease <> None) release.Notes + |> releaseDraft + |> Async.RunSynchronously +) + +Target "Publish" DoNothing + +// Build order +"Meta" + ==> "InstallDotNetCore" +// ==> "Install" + ==> "Build" +// ==> "Test" + ==> "Package" + + +"Publish" + <== [ "Build" + "PublishNuget" + "Release" ] + + +// start build +RunTargetOrDefault "Build" diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..cf2235b --- /dev/null +++ b/build.sh @@ -0,0 +1,20 @@ +#!/bin/bash +if test "$OS" = "Windows_NT" +then + # use .Net + .paket/paket.exe restore + exit_code=$? + if [ $exit_code -ne 0 ]; then + exit $exit_code + fi + + packages/build/FAKE/tools/FAKE.exe $@ --fsiargs build.fsx +else + # use mono + mono .paket/paket.exe restore + exit_code=$? + if [ $exit_code -ne 0 ]; then + exit $exit_code + fi + mono packages/build/FAKE/tools/FAKE.exe $@ --fsiargs -d:MONO build.fsx +fi diff --git a/package.json b/package.json deleted file mode 100644 index 5a3aa35..0000000 --- a/package.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "fable-react-toolbox", - "version": "0.13.0", - "description": "UI components for fable-react", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, - "dependencies": { - "react-toolbox": "^1.2.1" - }, - "repository": { - "type": "git", - "url": "git://github.com/2sComplement/fable-react-toolbox.git" - }, - "keywords": [ - "Material", - "F#", - "Fable", - "React" - ], - "author": "Justin Sacks", - "license": "MIT" -} diff --git a/paket.dependencies b/paket.dependencies new file mode 100644 index 0000000..4349938 --- /dev/null +++ b/paket.dependencies @@ -0,0 +1,16 @@ +source https://www.nuget.org/api/v2 + +nuget FSharp.Core +nuget Fable.Core 1.1.2 +nuget Fable.Import.Browser +nuget Fable.React + +group Build +framework: net46 + + source https://nuget.org/api/v2 + nuget FSharp.Core redirects:force, content:none + nuget FAKE + nuget FSharp.Formatting + + github fsharp/FAKE modules/Octokit/Octokit.fsx \ No newline at end of file diff --git a/paket.lock b/paket.lock new file mode 100644 index 0000000..0c473cb --- /dev/null +++ b/paket.lock @@ -0,0 +1,587 @@ +NUGET + remote: https://www.nuget.org/api/v2 + Fable.Core (1.1.2) + FSharp.Core (>= 4.1.17) - restriction: >= netstandard16 + NETStandard.Library (>= 1.6.1) - restriction: >= netstandard16 + Fable.Import.Browser (0.1) + Fable.Core (>= 1.0.8) - restriction: >= netstandard16 + FSharp.Core (>= 4.2.1) - restriction: >= netstandard16 + Fable.React (1.1) + Fable.Core (>= 1.1.2) - restriction: >= netstandard16 + Fable.Import.Browser (>= 0.1) - restriction: >= netstandard16 + FSharp.Core (>= 4.2.1) - restriction: >= netstandard16 + FSharp.Core (4.2.1) + System.Collections (>= 4.0.11) - restriction: >= netstandard16 + System.Console (>= 4.0) - restriction: >= netstandard16 + System.Diagnostics.Debug (>= 4.0.11) - restriction: >= netstandard16 + System.Diagnostics.Tools (>= 4.0.1) - restriction: >= netstandard16 + System.Globalization (>= 4.0.11) - restriction: >= netstandard16 + System.IO (>= 4.1) - restriction: >= netstandard16 + System.Linq (>= 4.1) - restriction: >= netstandard16 + System.Linq.Expressions (>= 4.1) - restriction: >= netstandard16 + System.Linq.Queryable (>= 4.0.1) - restriction: >= netstandard16 + System.Net.Requests (>= 4.0.11) - restriction: >= netstandard16 + System.Reflection (>= 4.1) - restriction: >= netstandard16 + System.Reflection.Extensions (>= 4.0.1) - restriction: >= netstandard16 + System.Resources.ResourceManager (>= 4.0.1) - restriction: >= netstandard16 + System.Runtime (>= 4.1) - restriction: >= netstandard16 + System.Runtime.Extensions (>= 4.1) - restriction: >= netstandard16 + System.Runtime.Numerics (>= 4.0.1) - restriction: >= netstandard16 + System.Text.RegularExpressions (>= 4.1) - restriction: >= netstandard16 + System.Threading (>= 4.0.11) - restriction: >= netstandard16 + System.Threading.Tasks (>= 4.0.11) - restriction: >= netstandard16 + System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: >= netstandard16 + System.Threading.Thread (>= 4.0) - restriction: >= netstandard16 + System.Threading.ThreadPool (>= 4.0.10) - restriction: >= netstandard16 + System.Threading.Timer (>= 4.0.1) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (1.1) - restriction: >= netstandard16 + Microsoft.NETCore.Targets (1.1) - restriction: || (&& (>= dnxcore50) (>= netstandard16)) (&& (< netstandard11) (>= netstandard16) (< monoandroid)) (&& (< netstandard12) (>= netstandard16) (< monoandroid)) (&& (< netstandard13) (>= netstandard16) (< monoandroid)) (&& (< netstandard15) (>= netstandard16) (< monoandroid)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) (>= netcore11) + Microsoft.Win32.Primitives (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + NETStandard.Library (1.6.1) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: >= netstandard10 + Microsoft.Win32.Primitives (>= 4.3) - restriction: >= netstandard13 + System.AppContext (>= 4.3) - restriction: >= netstandard13 + System.Collections (>= 4.3) - restriction: >= netstandard10 + System.Collections.Concurrent (>= 4.3) - restriction: >= netstandard11 + System.Console (>= 4.3) - restriction: >= netstandard13 + System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard10 + System.Diagnostics.Tools (>= 4.3) - restriction: >= netstandard10 + System.Diagnostics.Tracing (>= 4.3) - restriction: >= netstandard11 + System.Globalization (>= 4.3) - restriction: >= netstandard10 + System.Globalization.Calendars (>= 4.3) - restriction: >= netstandard13 + System.IO (>= 4.3) - restriction: >= netstandard10 + System.IO.Compression (>= 4.3) - restriction: >= netstandard11 + System.IO.Compression.ZipFile (>= 4.3) - restriction: >= netstandard13 + System.IO.FileSystem (>= 4.3) - restriction: >= netstandard13 + System.IO.FileSystem.Primitives (>= 4.3) - restriction: >= netstandard13 + System.Linq (>= 4.3) - restriction: >= netstandard10 + System.Linq.Expressions (>= 4.3) - restriction: >= netstandard10 + System.Net.Http (>= 4.3) - restriction: >= netstandard11 + System.Net.Primitives (>= 4.3) - restriction: >= netstandard10 + System.Net.Sockets (>= 4.3) - restriction: >= netstandard13 + System.ObjectModel (>= 4.3) - restriction: >= netstandard10 + System.Reflection (>= 4.3) - restriction: >= netstandard10 + System.Reflection.Extensions (>= 4.3) - restriction: >= netstandard10 + System.Reflection.Primitives (>= 4.3) - restriction: >= netstandard10 + System.Resources.ResourceManager (>= 4.3) - restriction: >= netstandard10 + System.Runtime (>= 4.3) - restriction: >= netstandard10 + System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard10 + System.Runtime.Handles (>= 4.3) - restriction: >= netstandard13 + System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard11 + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: >= netstandard11 + System.Runtime.Numerics (>= 4.3) - restriction: >= netstandard11 + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard13 + System.Security.Cryptography.Encoding (>= 4.3) - restriction: >= netstandard13 + System.Security.Cryptography.Primitives (>= 4.3) - restriction: >= netstandard13 + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: >= netstandard13 + System.Text.Encoding (>= 4.3) - restriction: >= netstandard10 + System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard10 + System.Text.RegularExpressions (>= 4.3) - restriction: >= netstandard10 + System.Threading (>= 4.3) - restriction: >= netstandard10 + System.Threading.Tasks (>= 4.3) - restriction: >= netstandard10 + System.Threading.Timer (>= 4.3) - restriction: >= netstandard12 + System.Xml.ReaderWriter (>= 4.3) - restriction: >= netstandard10 + System.Xml.XDocument (>= 4.3) - restriction: >= netstandard10 + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.native.System (4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + runtime.native.System.IO.Compression (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard16)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + runtime.native.System.Net.Http (4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + runtime.native.System.Security.Cryptography.Apple (4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + 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: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.AppContext (4.3) - restriction: >= netstandard16 + System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard13) (< netstandard16) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Buffers (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard16)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) + System.Diagnostics.Tracing (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) + System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) + System.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) + System.Collections (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Collections.Concurrent (4.3) - restriction: >= netstandard16 + System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Console (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Diagnostics.Debug (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Diagnostics.DiagnosticSource (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard16)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) + System.Diagnostics.Tools (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + System.Diagnostics.Tracing (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard12) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard12) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard12) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard12) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard12) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard12) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.Globalization (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Globalization.Calendars (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Globalization.Extensions (4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.IO (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.IO.Compression (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) + runtime.native.System (>= 4.3) - restriction: && (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) + runtime.native.System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Buffers (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.IO.Compression.ZipFile (4.3) - restriction: >= netstandard16 + System.Buffers (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.IO.Compression (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.IO.FileSystem (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.IO.FileSystem (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.IO.FileSystem.Primitives (4.3) - restriction: >= netstandard16 + System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Linq (4.3) - restriction: >= netstandard16 + System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard16) (< monoandroid) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard16) (< monoandroid) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Linq.Expressions (4.3) - restriction: >= netstandard16 + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.ObjectModel (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Reflection.Emit (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Linq.Queryable (4.3) - restriction: >= netstandard16 + System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Net.Http (4.3.2) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + runtime.native.System (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.native.System.Net.Http (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Globalization.Extensions (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.IO.FileSystem (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= net46) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Net.Primitives (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard10) (< netstandard11) (< monoandroid) (< win8) (< wp8)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard10) (< netstandard11) (< monoandroid) (< win8) (< wp8)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard10) (< netstandard11) (< monoandroid) (< win8) (< wp8)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Net.Requests (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) + System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard10) (< netstandard11) (< monoandroid) (< win8) (< wp8)) + System.Net.Http (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard10) (< netstandard11) (< monoandroid) (< win8) (< wp8)) + System.Net.WebHeaderCollection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard10) (< netstandard11) (< monoandroid) (< win8) (< wp8)) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Net.Sockets (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Net.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Net.WebHeaderCollection (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard16)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.ObjectModel (4.3) - restriction: >= netstandard16 + System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Reflection (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.Reflection.Emit (4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.IO (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) + System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) + System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) + System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard16)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< wp8) + System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< wp8) + System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< wp8) + System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard16)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< wp8) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< wp8) + System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< wp8) + System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< wp8) + System.Reflection.Extensions (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + System.Reflection.Primitives (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + System.Reflection.TypeExtensions (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard16)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Reflection (>= 4.3) - restriction: || (&& (< net46) (>= netstandard13) (< netstandard15) (< monoandroid)) (&& (< net46) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= net462) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard13) (< netstandard15) (< monoandroid)) (&& (< net46) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.Resources.ResourceManager (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + System.Runtime (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard12) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard12) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard12) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard12) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.Runtime.Extensions (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.Runtime.Handles (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime.InteropServices (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard12) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard12) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore11) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard12) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard12) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore11) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard12) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard12) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore11) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard12) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard12) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore11) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard12) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard12) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= net462) (>= dnxcore50) (>= netcore11) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore11) + System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: >= netstandard16 + runtime.native.System (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime.Numerics (4.3) - restriction: >= netstandard16 + System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Security.Cryptography.Algorithms (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.Collections (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard13) (< netstandard14) (< monoandroid)) (&& (< net46) (>= netstandard14) (< netstandard16) (< monoandroid)) (>= net463) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard13) (< netstandard14) (< monoandroid)) (&& (< net46) (>= netstandard14) (< netstandard16) (< monoandroid)) (>= net463) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime.Numerics (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= net463) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard14)) (&& (< net46) (>= netstandard13) (< netstandard14) (< monoandroid)) (&& (< net46) (>= netstandard14) (< netstandard16) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Cng (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard16)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net46) (>= netstandard14)) (>= netstandard16) + System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard13) (< netstandard14)) (&& (< net46) (>= netstandard14)) (>= netstandard16) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard14)) (>= netstandard16) + System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard13) (< netstandard14)) (&& (< net46) (>= netstandard14)) (>= netstandard16) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard14)) (>= netstandard16) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard13) (< netstandard14)) (&& (< net46) (>= netstandard14)) (>= netstandard16) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net46) (>= netstandard14)) (>= netstandard16) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (>= net46) (< netstandard14)) (&& (< net46) (>= netstandard13) (< netstandard14)) (&& (< net46) (>= netstandard14)) (>= net461) (>= netstandard16) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard14)) (>= netstandard16) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard14)) (&& (< net46) (>= netstandard13) (< netstandard14)) (&& (< net46) (>= netstandard14)) (>= net461) (>= netstandard16) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard14)) (>= netstandard16) + System.Security.Cryptography.Csp (4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Reflection (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Encoding (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Collections.Concurrent (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Linq (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.OpenSsl (4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (>= net463) (>= netstandard16) (>= monoandroid) + System.Collections (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.IO (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime.Handles (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime.InteropServices (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime.Numerics (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Text.Encoding (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Primitives (4.3) - restriction: >= netstandard16 + System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.X509Certificates (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + runtime.native.System (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.native.System.Net.Http (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard13) (< netstandard14) (< monoandroid)) (&& (< net46) (>= netstandard14) (< netstandard16) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard13) (< netstandard14) (< monoandroid)) (&& (< net46) (>= netstandard14) (< netstandard16) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (>= net46) (< netstandard14)) (&& (< net46) (>= netstandard13) (< netstandard14) (< monoandroid)) (&& (< net46) (>= netstandard14) (< netstandard16) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Csp (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (>= net46) (< netstandard14)) (&& (< net46) (>= netstandard13) (< netstandard14) (< monoandroid)) (&& (< net46) (>= netstandard14) (< netstandard16) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Text.Encoding (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Text.Encoding.Extensions (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Text.RegularExpressions (4.3) - restriction: >= netstandard16 + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< netcore11) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< netcore11) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< netcore11) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) (>= netcore11) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< netcore11) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< netcore11) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Threading (4.3) - restriction: >= netstandard16 + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Threading.Tasks (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Threading.Tasks.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard16)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) + System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) + System.Threading.Tasks (>= 4.3) - restriction: && (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) + System.Threading.Tasks.Parallel (4.3) - restriction: >= netstandard16 + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Threading.Thread (4.3) - restriction: >= netstandard16 + System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Threading.ThreadPool (4.3) - restriction: >= netstandard16 + System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) + System.Threading.Timer (4.3) - restriction: >= netstandard16 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net451) (>= netstandard12) (< monotouch) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net451) (>= netstandard12) (< monotouch) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net451) (>= netstandard12) (< monotouch) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) + System.Xml.ReaderWriter (4.3) - restriction: >= netstandard16 + System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Xml.XDocument (4.3) - restriction: >= netstandard16 + System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + +GROUP Build +RESTRICTION: == net46 +NUGET + remote: https://www.nuget.org/api/v2 + FAKE (4.61.3) + FSharp.Compiler.Service (2.0.0.6) + FSharp.Core (4.2.1) - content: none, redirects: force + FSharp.Formatting (2.14.4) + FSharp.Compiler.Service (2.0.0.6) + FSharpVSPowerTools.Core (>= 2.3 < 2.4) + FSharpVSPowerTools.Core (2.3) + FSharp.Compiler.Service (>= 2.0.0.3) + Octokit (0.24) +GITHUB + remote: fsharp/FAKE + modules/Octokit/Octokit.fsx (15e1b741f4ae9fbaad640a65231dfcec28ce6ddd) + Octokit (>= 0.20) \ No newline at end of file diff --git a/Fable.Helpers.ReactToolbox.fs b/src/Fable.Helpers.ReactToolbox.fs similarity index 94% rename from Fable.Helpers.ReactToolbox.fs rename to src/Fable.Helpers.ReactToolbox.fs index 052f824..286af7b 100644 --- a/Fable.Helpers.ReactToolbox.fs +++ b/src/Fable.Helpers.ReactToolbox.fs @@ -11,7 +11,7 @@ open System [] module Props = - type [] Props = + type Props = | ClassName of string | Key of string | OnClick of Function @@ -48,7 +48,6 @@ open Props let styles = JsInterop.importAll "react-toolbox/lib/commons.scss" -[] type AppBarTheme = | AppBar of string | Fixed of string @@ -56,7 +55,6 @@ type AppBarTheme = | Title of string | LeftIcon of string | RightIcon of string -[] type AppBarProps = | Children of React.ReactNode | Fixed of bool @@ -71,7 +69,7 @@ type AppBarProps = let AppBar = importDefault> "react-toolbox/lib/app_bar" let inline appBar b c = Fable.Helpers.React.from AppBar b c -[] + type AutocompleteTheme = | Active of string | Autocomplete of string @@ -83,7 +81,7 @@ type AutocompleteTheme = | Up of string | Value of string | Values of string -[] + type AutocompleteProps = | AllowCreate of bool | Direction of (* TODO StringEnum auto | up | down *) string @@ -102,12 +100,12 @@ type AutocompleteProps = let Autocomplete = importDefault> "react-toolbox/lib/autocomplete" let inline autocomplete b c = Fable.Helpers.React.from Autocomplete b c -[] + type AvatarTheme = | Avatar of string | Image of string | Letter of string -[] + type AvatarProps = | Children of React.ReactNode | Cover of bool @@ -119,7 +117,7 @@ type AvatarProps = let Avatar = importDefault> "react-toolbox/lib/avatar" let inline avatar b c = Fable.Helpers.React.from Avatar b c -[] + type ButtonTheme = | Accent of string | Button of string @@ -133,7 +131,7 @@ type ButtonTheme = | Raised of string | RippleWrapper of string | Toggle of string -[] + type ButtonProps = | Accent of bool | Children of React.ReactNode @@ -153,7 +151,7 @@ type ButtonProps = interface IReactToolboxProp let Button = importMember> "react-toolbox/lib/button" let inline button b c = Fable.Helpers.React.from Button b c -[] + type IconButtonTheme = | Accent of string | Button of string @@ -163,7 +161,7 @@ type IconButtonTheme = | Primary of string | RippleWrapper of string | Toggle of string -[] + type IconButtonProps = | Accent of bool | Children of React.ReactNode @@ -179,11 +177,11 @@ type IconButtonProps = let IconButton = importMember> "react-toolbox/lib/button" let inline iconButton b c = Fable.Helpers.React.from IconButton b c -[] + type CardTheme = | Card of string | Raised of string -[] + type CardProps = | Children of React.ReactNode | Raised of bool @@ -191,24 +189,24 @@ type CardProps = interface IReactToolboxProp let Card = importMember> "react-toolbox/lib/card" let inline card b c = Fable.Helpers.React.from Card b c -[] + type CardActionsTheme = | CardActions of string -[] + type CardActionsProps = | Children of React.ReactNode | Theme of CardActionsTheme interface IReactToolboxProp let CardActions = importMember> "react-toolbox/lib/card" let inline cardActions b c = Fable.Helpers.React.from CardActions b c -[] + type CardMediaTheme = | CardMedia of string | Content of string | ContentOverlay of string | Square of string | Wide of string -[] + type CardMediaProps = | AspectRatio of (* TODO StringEnum wide | square *) string | Children of React.ReactNode @@ -219,23 +217,23 @@ type CardMediaProps = interface IReactToolboxProp let CardMedia = importMember> "react-toolbox/lib/card" let inline cardMedia b c = Fable.Helpers.React.from CardMedia b c -[] + type CardTextTheme = | CardText of string -[] + type CardTextProps = | Children of React.ReactNode | Theme of CardTextTheme interface IReactToolboxProp let CardText = importMember> "react-toolbox/lib/card" let inline cardText b c = Fable.Helpers.React.from CardText b c -[] + type CardTitleTheme = | Large of string | Title of string | Small of string | Subtitle of string -[] + type CardTitleProps = | Avatar of U2 | Children of React.ReactNode @@ -246,7 +244,7 @@ type CardTitleProps = let CardTitle = importMember> "react-toolbox/lib/card" let inline cardTitle b c = Fable.Helpers.React.from CardTitle b c -[] + type CheckboxTheme = | Check of string | Checked of string @@ -255,7 +253,7 @@ type CheckboxTheme = | Input of string | Ripple of string | Text of string -[] + type CheckboxProps = | Checked of bool | Disabled of bool @@ -268,7 +266,7 @@ type CheckboxProps = let Checkbox = importDefault> "react-toolbox/lib/checkbox" let inline checkbox b c = Fable.Helpers.React.from Checkbox b c -[] + type ChipTheme = | Avatar of string | Chip of string @@ -276,7 +274,7 @@ type ChipTheme = | Delete of string | DeleteIcon of string | DeleteX of string -[] + type ChipProps = | Children of React.ReactNode | Deletable of bool @@ -286,7 +284,7 @@ type ChipProps = let Chip = importDefault> "react-toolbox/lib/chip" let inline chip b c = Fable.Helpers.React.from Chip b c -[] + type DatePickerTheme = | Active of string | Button of string @@ -308,7 +306,7 @@ type DatePickerTheme = | Year of string | Years of string | YearsDisplay of string -[] + type DatePickerProps = | AutoOk of bool | Error of string @@ -329,7 +327,7 @@ type DatePickerProps = let DatePicker = importDefault> "react-toolbox/lib/date_picker" let inline datePicker b c = Fable.Helpers.React.from DatePicker b c -[] + type DialogTheme = | Active of string | Body of string @@ -337,12 +335,12 @@ type DialogTheme = | Dialog of string | Navigation of string | Title of string -[] + type DialogActionProps = | Label of string | OnClick of (React.MouseEvent -> unit) interface IReactToolboxProp -[] + type DialogProps = | Actions of IHTMLProp list array | Active of bool @@ -359,14 +357,14 @@ type DialogProps = let Dialog = importDefault> "react-toolbox/lib/dialog" let inline dialog b c = Fable.Helpers.React.from Dialog b c -[] + type DrawerTheme = | Active of string | Content of string | Drawer of string | Left of string | Right of string -[] + type DrawerProps = | Active of bool | Children of React.ReactNode @@ -381,7 +379,7 @@ let inline drawer b c = Fable.Helpers.React.from Drawer b c type DropdownWrapper<'TVal,'T> = { item: 'T value: 'TVal } -[] + type DropdownTheme = | Active of string | Disabled of string @@ -395,7 +393,7 @@ type DropdownTheme = | Up of string | Value of string | Values of string -[] + type DropdownProps<'TVal,'T> = | AllowBlank of bool | Auto of bool @@ -414,7 +412,7 @@ type DropdownProps<'TVal,'T> = let Dropdown = importDefault> "react-toolbox/lib/dropdown" let inline dropdown b c = Fable.Helpers.React.from Dropdown b c -[] + type FontIconProps = | Children of React.ReactNode | Value of U2 @@ -422,7 +420,7 @@ type FontIconProps = let FontIcon = importDefault> "react-toolbox/lib/font_icon" let inline fontIcon b c = Fable.Helpers.React.from FontIcon b c -[] + type InputTheme = | Bar of string | Counter of string @@ -436,7 +434,7 @@ type InputTheme = | InputElement of string | Required of string | WithIcon of string -[] + type InputProps = | Children of React.ReactNode | Disabled of bool @@ -460,17 +458,17 @@ type InputProps = let Input = importDefault> "react-toolbox/lib/input" let inline input b c = Fable.Helpers.React.from Input b c -[] + type LayoutTheme = | Layout of string -[] + type LayoutProps = | Children of ReactElement // U3 | Theme of LayoutTheme interface IReactToolboxProp let Layout = importMember> "react-toolbox/lib/layout" let inline layout b c = Fable.Helpers.React.from Layout b c -[] + type NavDrawerTheme = | Active of string | DrawerContent of string @@ -485,7 +483,7 @@ type NavDrawerTheme = | XlPermanent of string | XxlPermangent of string | XxxlPermangent of string -[] + type NavDrawerProps = | Active of bool | Children of React.ReactNode @@ -498,11 +496,11 @@ type NavDrawerProps = interface IReactToolboxProp let NavDrawer = importMember> "react-toolbox/lib/layout" let inline navDrawer b c = Fable.Helpers.React.from NavDrawer b c -[] + type PanelTheme = | Panel of string | ScrollY of string -[] + type PanelProps = | Children of React.ReactNode | ScrollY of bool @@ -510,13 +508,13 @@ type PanelProps = interface IReactToolboxProp let Panel = importMember> "react-toolbox/lib/layout" let inline panel b c = Fable.Helpers.React.from Panel b c -[] + type SidebarTheme = | Pinned of string | ScrollY of string | Sidebar of string | SidebarContent of string -[] + type SidebarProps = | Children of React.ReactNode | Pinned of bool @@ -527,12 +525,12 @@ type SidebarProps = let Sidebar = importMember> "react-toolbox/lib/layout" let inline sidebar b c = Fable.Helpers.React.from Sidebar b c -[] + type LinkTheme = | Active of string | Icon of string | Link of string -[] + type LinkProps = | Active of bool | Children of React.ReactNode @@ -545,10 +543,10 @@ type LinkProps = let Link = importDefault> "react-toolbox/lib/link" let inline link b c = Fable.Helpers.React.from Link b c -[] + type ListTheme = | List of string -[] + type ListProps = | Children of React.ReactNode | Ripple of bool @@ -557,7 +555,7 @@ type ListProps = interface IReactToolboxProp let List = importMember> "react-toolbox/lib/list" let inline list b c = Fable.Helpers.React.from List b c -[] + type ListCheckboxTheme = | Checkbox of string | CheckboxItem of string @@ -567,7 +565,7 @@ type ListCheckboxTheme = | ItemText of string | Large of string | Primary of string -[] + type ListCheckboxProps = | Caption of string | Checked of bool @@ -581,7 +579,7 @@ type ListCheckboxProps = interface IReactToolboxProp let ListCheckbox = importMember> "react-toolbox/lib/list" let inline listCheckbox b c = Fable.Helpers.React.from ListCheckbox b c -[] + type ListDividerTheme = | Divider of string | Inset of string @@ -591,7 +589,7 @@ and ListDividerProps = interface IReactToolboxProp let ListDivider = importMember> "react-toolbox/lib/list" let inline listDivider b c = Fable.Helpers.React.from ListDivider b c -[] + type ListItemTheme = | Disabled of string | Item of string @@ -604,7 +602,7 @@ type ListItemTheme = | Primary of string | Right of string | Selectable of string -[] + type ListItemProps = | Avatar of U2 | Caption of string @@ -623,10 +621,10 @@ type ListItemProps = interface IReactToolboxProp let ListItem = importMember> "react-toolbox/lib/list" let inline listItem b c = Fable.Helpers.React.from ListItem b c -[] + type ListSubHeaderTheme = | Subheader of string -[] + type ListSubHeaderProps = | Caption of string | Theme of ListSubHeaderTheme @@ -634,7 +632,7 @@ type ListSubHeaderProps = let ListSubHeader = importMember> "react-toolbox/lib/list" let inline listSubHeader b c = Fable.Helpers.React.from ListSubHeader b c -[] + type MenuTheme = | Active of string | BottomLeft of string @@ -646,7 +644,7 @@ type MenuTheme = | Static of string | TopLeft of string | TopRight of string -[] + type MenuProps = | Active of bool | Children of React.ReactNode @@ -662,11 +660,11 @@ type MenuProps = interface IReactToolboxProp let Menu = importMember> "react-toolbox/lib/menu" let inline menu b c = Fable.Helpers.React.from Menu b c -[] + type IconMenuTheme = | Icon of string | IconMenu of string -[] + type IconMenuProps = | Children of React.ReactNode | Icon of U2 @@ -682,16 +680,16 @@ type IconMenuProps = interface IReactToolboxProp let IconMenu = importMember> "react-toolbox/lib/menu" let inline iconMenu b c = Fable.Helpers.React.from IconMenu b c -[] + type MenuDividerTheme = | MenuDivider of string -[] + type MenuDividerProps = | Theme of MenuDividerTheme interface IReactToolboxProp let MenuDivider = importMember> "react-toolbox/lib/menu" let inline menuDivider b c = Fable.Helpers.React.from MenuDivider b c -[] + type MenuItemTheme = | Caption of string | Disabled of string @@ -699,7 +697,7 @@ type MenuItemTheme = | MenuItem of string | Selected of string | Shortcut of string -[] + type MenuItemProps = | Caption of string | Children of React.ReactNode @@ -713,13 +711,13 @@ type MenuItemProps = let MenuItem = importMember> "react-toolbox/lib/menu" let inline menuItem b c = Fable.Helpers.React.from MenuItem b c -[] + type NavigationTheme = | Button of string | Horizontal of string | Link of string | Vertical of string -[] + type NavigationProps = | Actions of ResizeArray | Children of React.ReactNode @@ -730,7 +728,7 @@ type NavigationProps = let Navigation = importDefault> "react-toolbox/lib/navigation" let inline navigation b c = Fable.Helpers.React.from Navigation b c -[] + type ProgressBarTheme = | Buffer of string | Circle of string @@ -740,7 +738,7 @@ type ProgressBarTheme = | Multicolor of string | Path of string | Value of string -[] + type ProgressBarProps = | Buffer of float | Max of float @@ -754,7 +752,7 @@ type ProgressBarProps = let ProgressBar = importDefault> "react-toolbox/lib/progress_bar" let inline progressBar b c = Fable.Helpers.React.from ProgressBar b c -[] + type RadioGroupProps = | Children of React.ReactNode | Disabled of bool @@ -764,7 +762,7 @@ type RadioGroupProps = interface IReactToolboxProp let RadioGroup = importDefault> "react-toolbox/lib/radio" let inline radioGroup b c = Fable.Helpers.React.from RadioGroup b c -[] + type RadioButtonTheme = | Radio of string | RadioChecked of string @@ -773,7 +771,7 @@ type RadioButtonTheme = | Field of string | Input of string | Text of string -[] + type RadioButtonProps = | Checked of bool | Disabled of bool @@ -788,13 +786,13 @@ type RadioButtonProps = let RadioButton = importDefault> "react-toolbox/lib/radio" let inline radioButton b c = Fable.Helpers.React.from RadioButton b c -[] + type RippleTheme = | Ripple of string | RippleActive of string | RippleRestarting of string | RippleWrapper of string -[] + type RippleProps = | Children of React.ReactNode | Disabled of bool @@ -805,7 +803,7 @@ type RippleProps = let Ripple = importDefault> "react-toolbox/lib/ripple" let inline ripple b c = Fable.Helpers.React.from Ripple b c -[] + type SliderTheme = | Container of string | Editable of string @@ -820,7 +818,7 @@ type SliderTheme = | Slider of string | Snap of string | Snaps of string -[] + type SliderProps = | Editable of bool | Max of float @@ -835,7 +833,7 @@ type SliderProps = let Slider = importDefault> "react-toolbox/lib/slider" let inline slider b c = Fable.Helpers.React.from Slider b c -[] + type SnackbarTheme = | Accept of string | Active of string @@ -845,7 +843,7 @@ type SnackbarTheme = | Label of string | Snackbar of string | Warning of string -[] + type SnackbarProps = | Action of string | Active of bool @@ -860,7 +858,7 @@ type SnackbarProps = let Snackbar = importDefault> "react-toolbox/lib/snackbar" let inline snackbar b c = Fable.Helpers.React.from Snackbar b c -[] + type SwitchTheme = | Disabled of string | Field of string @@ -870,7 +868,7 @@ type SwitchTheme = | Ripple of string | Text of string | Thumb of string -[] + type SwitchProps = | Checked of bool | Disabled of bool @@ -884,14 +882,14 @@ type SwitchProps = let Switch = importDefault> "react-toolbox/lib/switch" let inline switch b c = Fable.Helpers.React.from Switch b c -[] + type TableTheme = | Editable of string | Row of string | Selectable of string | Selected of string | Table of string -[] + type TableProps = | Heading of bool | Model of obj @@ -906,14 +904,14 @@ type TableProps = let Table = importDefault> "react-toolbox/lib/table" let inline table b c = Fable.Helpers.React.from Table b c -[] + type TabsTheme = | Active of string | Navigation of string | Pointer of string | Tabs of string | Tab of string -[] + type TabsProps = | Children of React.ReactNode | DisableAnimatedBottomBorder of bool @@ -923,13 +921,13 @@ type TabsProps = interface IReactToolboxProp let Tabs = importMember> "react-toolbox/lib/tabs" let inline tabs b c = Fable.Helpers.React.from Tabs b c -[] + type TabTheme = | Active of string | Disabled of string | Hidden of string | Label of string -[] + type TabProps = | Active of bool | ActiveClassName of string @@ -942,7 +940,7 @@ type TabProps = let Tab = importMember> "react-toolbox/lib/tabs" let inline tab b c = Fable.Helpers.React.from Tab b c -[] + type TimePickerTheme = | Active of string | Am of string @@ -967,7 +965,7 @@ type TimePickerTheme = | PmFormat of string | Separator of string | Small of string -[] + type TimePickerProps = | Error of string | Icon of U2 @@ -981,12 +979,12 @@ type TimePickerProps = let TimePicker = importDefault> "react-toolbox/lib/time_picker" let inline timePicker b c = Fable.Helpers.React.from TimePicker b c -[] + type TooltipTheme = | Tooltip of string | TooltipActive of string | TooltipWrapper of string -[] + type TooltipProps = | Theme of TooltipTheme | Tooltip of string diff --git a/src/Fable.ReactToolbox.fsproj b/src/Fable.ReactToolbox.fsproj new file mode 100644 index 0000000..73e4706 --- /dev/null +++ b/src/Fable.ReactToolbox.fsproj @@ -0,0 +1,18 @@ + + + + netstandard1.6 + true + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/paket.references b/src/paket.references new file mode 100644 index 0000000..163212b --- /dev/null +++ b/src/paket.references @@ -0,0 +1,3 @@ +FSharp.Core +Fable.Core +Fable.React \ No newline at end of file From 5e0c0738e553951bda3ff907693c75d46fa8e1b1 Mon Sep 17 00:00:00 2001 From: Justin Date: Thu, 22 Jun 2017 11:41:15 -0400 Subject: [PATCH 02/22] Bump version to 1.1.0-beta-2 --- RELEASE_NOTES.md | 4 + src/Fable.Helpers.ReactToolbox.fs | 183 +++++++++++++++--------------- 2 files changed, 97 insertions(+), 90 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 1a326dc..6d915f1 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,7 @@ +### 1.1.0-beta-2 + +* Fixed component bindings + ### 1.1.0-beta-1 * Fable 1.1 upgrade, still using ReactToolbox 1.0 diff --git a/src/Fable.Helpers.ReactToolbox.fs b/src/Fable.Helpers.ReactToolbox.fs index 286af7b..0edd355 100644 --- a/src/Fable.Helpers.ReactToolbox.fs +++ b/src/Fable.Helpers.ReactToolbox.fs @@ -48,6 +48,8 @@ open Props let styles = JsInterop.importAll "react-toolbox/lib/commons.scss" +let inline rtEl<[]'P when 'P :> IHTMLProp> (a:ComponentClass<'P>) (b:IHTMLProp list) c = Fable.Helpers.React.from a (keyValueList CaseRules.LowerFirst b |> unbox) c + type AppBarTheme = | AppBar of string | Fixed of string @@ -66,8 +68,9 @@ type AppBarProps = | OnRightIconClick of Function | Theme of AppBarTheme interface IReactToolboxProp -let AppBar = importDefault> "react-toolbox/lib/app_bar" -let inline appBar b c = Fable.Helpers.React.from AppBar b c +let AppBar = importDefault> "react-toolbox/lib/app_bar" + +let inline appBar b c = rtEl AppBar b c type AutocompleteTheme = @@ -97,8 +100,8 @@ type AutocompleteProps = | Theme of AutocompleteTheme | Value of obj interface IReactToolboxProp -let Autocomplete = importDefault> "react-toolbox/lib/autocomplete" -let inline autocomplete b c = Fable.Helpers.React.from Autocomplete b c +let Autocomplete = importDefault> "react-toolbox/lib/autocomplete" +let inline autocomplete b c = rtEl Autocomplete b c type AvatarTheme = @@ -114,8 +117,8 @@ type AvatarProps = | Theme of AvatarTheme | Title of string interface IReactToolboxProp -let Avatar = importDefault> "react-toolbox/lib/avatar" -let inline avatar b c = Fable.Helpers.React.from Avatar b c +let Avatar = importDefault> "react-toolbox/lib/avatar" +let inline avatar b c = rtEl Avatar b c type ButtonTheme = @@ -149,8 +152,8 @@ type ButtonProps = | Ripple of bool | Theme of ButtonTheme interface IReactToolboxProp -let Button = importMember> "react-toolbox/lib/button" -let inline button b c = Fable.Helpers.React.from Button b c +let Button = importMember> "react-toolbox/lib/button" +let inline button b c = rtEl Button b c type IconButtonTheme = | Accent of string @@ -174,8 +177,8 @@ type IconButtonProps = | Ripple of bool | Theme of IconButtonTheme interface IReactToolboxProp -let IconButton = importMember> "react-toolbox/lib/button" -let inline iconButton b c = Fable.Helpers.React.from IconButton b c +let IconButton = importMember> "react-toolbox/lib/button" +let inline iconButton b c = rtEl IconButton b c type CardTheme = @@ -187,8 +190,8 @@ type CardProps = | Raised of bool | Theme of CardTheme interface IReactToolboxProp -let Card = importMember> "react-toolbox/lib/card" -let inline card b c = Fable.Helpers.React.from Card b c +let Card = importMember> "react-toolbox/lib/card" +let inline card b c = rtEl Card b c type CardActionsTheme = | CardActions of string @@ -197,8 +200,8 @@ type CardActionsProps = | Children of React.ReactNode | Theme of CardActionsTheme interface IReactToolboxProp -let CardActions = importMember> "react-toolbox/lib/card" -let inline cardActions b c = Fable.Helpers.React.from CardActions b c +let CardActions = importMember> "react-toolbox/lib/card" +let inline cardActions b c = rtEl CardActions b c type CardMediaTheme = | CardMedia of string @@ -215,8 +218,8 @@ type CardMediaProps = | Image of U2 | Theme of CardMediaTheme interface IReactToolboxProp -let CardMedia = importMember> "react-toolbox/lib/card" -let inline cardMedia b c = Fable.Helpers.React.from CardMedia b c +let CardMedia = importMember> "react-toolbox/lib/card" +let inline cardMedia b c = rtEl CardMedia b c type CardTextTheme = | CardText of string @@ -225,8 +228,8 @@ type CardTextProps = | Children of React.ReactNode | Theme of CardTextTheme interface IReactToolboxProp -let CardText = importMember> "react-toolbox/lib/card" -let inline cardText b c = Fable.Helpers.React.from CardText b c +let CardText = importMember> "react-toolbox/lib/card" +let inline cardText b c = rtEl CardText b c type CardTitleTheme = | Large of string @@ -241,8 +244,8 @@ type CardTitleProps = | Theme of CardTitleTheme | Title of U2 interface IReactToolboxProp -let CardTitle = importMember> "react-toolbox/lib/card" -let inline cardTitle b c = Fable.Helpers.React.from CardTitle b c +let CardTitle = importMember> "react-toolbox/lib/card" +let inline cardTitle b c = rtEl CardTitle b c type CheckboxTheme = @@ -263,8 +266,8 @@ type CheckboxProps = | OnChange of (bool -> unit) | Theme of CheckboxTheme interface IReactToolboxProp -let Checkbox = importDefault> "react-toolbox/lib/checkbox" -let inline checkbox b c = Fable.Helpers.React.from Checkbox b c +let Checkbox = importDefault> "react-toolbox/lib/checkbox" +let inline checkbox b c = rtEl Checkbox b c type ChipTheme = @@ -281,8 +284,8 @@ type ChipProps = | OnDeleteClick of (unit -> unit) | Theme of ChipTheme interface IReactToolboxProp -let Chip = importDefault> "react-toolbox/lib/chip" -let inline chip b c = Fable.Helpers.React.from Chip b c +let Chip = importDefault> "react-toolbox/lib/chip" +let inline chip b c = rtEl Chip b c type DatePickerTheme = @@ -324,8 +327,8 @@ type DatePickerProps = | Theme of DatePickerTheme | Value of U2 interface IReactToolboxProp -let DatePicker = importDefault> "react-toolbox/lib/date_picker" -let inline datePicker b c = Fable.Helpers.React.from DatePicker b c +let DatePicker = importDefault> "react-toolbox/lib/date_picker" +let inline datePicker b c = rtEl DatePicker b c type DialogTheme = @@ -354,8 +357,8 @@ type DialogProps = | Title of string | Type of string interface IReactToolboxProp -let Dialog = importDefault> "react-toolbox/lib/dialog" -let inline dialog b c = Fable.Helpers.React.from Dialog b c +let Dialog = importDefault> "react-toolbox/lib/dialog" +let inline dialog b c = rtEl Dialog b c type DrawerTheme = @@ -372,8 +375,8 @@ type DrawerProps = | Theme of DrawerTheme | Type of (* TODO StringEnum left | right *) string interface IReactToolboxProp -let Drawer = importDefault> "react-toolbox/lib/drawer" -let inline drawer b c = Fable.Helpers.React.from Drawer b c +let Drawer = importDefault> "react-toolbox/lib/drawer" +let inline drawer b c = rtEl Drawer b c type DropdownWrapper<'TVal,'T> = @@ -409,16 +412,16 @@ type DropdownProps<'TVal,'T> = | Theme of DropdownTheme | Value of 'TVal interface IReactToolboxProp -let Dropdown = importDefault> "react-toolbox/lib/dropdown" -let inline dropdown b c = Fable.Helpers.React.from Dropdown b c +let Dropdown = importDefault> "react-toolbox/lib/dropdown" +let inline dropdown b c = rtEl Dropdown b c type FontIconProps = | Children of React.ReactNode | Value of U2 interface IReactToolboxProp -let FontIcon = importDefault> "react-toolbox/lib/font_icon" -let inline fontIcon b c = Fable.Helpers.React.from FontIcon b c +let FontIcon = importDefault> "react-toolbox/lib/font_icon" +let inline fontIcon b c = rtEl FontIcon b c type InputTheme = @@ -455,8 +458,8 @@ type InputProps = | Type of string | Value of obj interface IReactToolboxProp -let Input = importDefault> "react-toolbox/lib/input" -let inline input b c = Fable.Helpers.React.from Input b c +let Input = importDefault> "react-toolbox/lib/input" +let inline input b c = rtEl Input b c type LayoutTheme = @@ -466,8 +469,8 @@ type LayoutProps = | Children of ReactElement // U3 | Theme of LayoutTheme interface IReactToolboxProp -let Layout = importMember> "react-toolbox/lib/layout" -let inline layout b c = Fable.Helpers.React.from Layout b c +let Layout = importMember> "react-toolbox/lib/layout" +let inline layout b c = rtEl Layout b c type NavDrawerTheme = | Active of string @@ -494,8 +497,8 @@ type NavDrawerProps = | Theme of NavDrawerTheme | Width of (* TODO StringEnum normal | wide *) string interface IReactToolboxProp -let NavDrawer = importMember> "react-toolbox/lib/layout" -let inline navDrawer b c = Fable.Helpers.React.from NavDrawer b c +let NavDrawer = importMember> "react-toolbox/lib/layout" +let inline navDrawer b c = rtEl NavDrawer b c type PanelTheme = | Panel of string @@ -506,8 +509,8 @@ type PanelProps = | ScrollY of bool | Theme of PanelTheme interface IReactToolboxProp -let Panel = importMember> "react-toolbox/lib/layout" -let inline panel b c = Fable.Helpers.React.from Panel b c +let Panel = importMember> "react-toolbox/lib/layout" +let inline panel b c = rtEl Panel b c type SidebarTheme = | Pinned of string @@ -522,8 +525,8 @@ type SidebarProps = | Theme of SidebarTheme | Width of float interface IReactToolboxProp -let Sidebar = importMember> "react-toolbox/lib/layout" -let inline sidebar b c = Fable.Helpers.React.from Sidebar b c +let Sidebar = importMember> "react-toolbox/lib/layout" +let inline sidebar b c = rtEl Sidebar b c type LinkTheme = @@ -540,8 +543,8 @@ type LinkProps = | Label of string | Theme of LinkTheme interface IReactToolboxProp -let Link = importDefault> "react-toolbox/lib/link" -let inline link b c = Fable.Helpers.React.from Link b c +let Link = importDefault> "react-toolbox/lib/link" +let inline link b c = rtEl Link b c type ListTheme = @@ -553,8 +556,8 @@ type ListProps = | Selectable of bool | Theme of ListTheme interface IReactToolboxProp -let List = importMember> "react-toolbox/lib/list" -let inline list b c = Fable.Helpers.React.from List b c +let List = importMember> "react-toolbox/lib/list" +let inline list b c = rtEl List b c type ListCheckboxTheme = | Checkbox of string @@ -577,8 +580,8 @@ type ListCheckboxProps = | OnFocus of Function | Theme of ListCheckboxTheme interface IReactToolboxProp -let ListCheckbox = importMember> "react-toolbox/lib/list" -let inline listCheckbox b c = Fable.Helpers.React.from ListCheckbox b c +let ListCheckbox = importMember> "react-toolbox/lib/list" +let inline listCheckbox b c = rtEl ListCheckbox b c type ListDividerTheme = | Divider of string @@ -587,8 +590,8 @@ and ListDividerProps = | Inset of bool | Theme of ListDividerTheme interface IReactToolboxProp -let ListDivider = importMember> "react-toolbox/lib/list" -let inline listDivider b c = Fable.Helpers.React.from ListDivider b c +let ListDivider = importMember> "react-toolbox/lib/list" +let inline listDivider b c = rtEl ListDivider b c type ListItemTheme = | Disabled of string @@ -619,8 +622,8 @@ type ListItemProps = | Theme of ListItemTheme | To of string interface IReactToolboxProp -let ListItem = importMember> "react-toolbox/lib/list" -let inline listItem b c = Fable.Helpers.React.from ListItem b c +let ListItem = importMember> "react-toolbox/lib/list" +let inline listItem b c = rtEl ListItem b c type ListSubHeaderTheme = | Subheader of string @@ -629,8 +632,8 @@ type ListSubHeaderProps = | Caption of string | Theme of ListSubHeaderTheme interface IReactToolboxProp -let ListSubHeader = importMember> "react-toolbox/lib/list" -let inline listSubHeader b c = Fable.Helpers.React.from ListSubHeader b c +let ListSubHeader = importMember> "react-toolbox/lib/list" +let inline listSubHeader b c = rtEl ListSubHeader b c type MenuTheme = @@ -658,8 +661,8 @@ type MenuProps = | Selected of obj | Theme of MenuTheme interface IReactToolboxProp -let Menu = importMember> "react-toolbox/lib/menu" -let inline menu b c = Fable.Helpers.React.from Menu b c +let Menu = importMember> "react-toolbox/lib/menu" +let inline menu b c = rtEl Menu b c type IconMenuTheme = | Icon of string @@ -678,8 +681,8 @@ type IconMenuProps = | Selected of obj | Theme of IconMenuTheme interface IReactToolboxProp -let IconMenu = importMember> "react-toolbox/lib/menu" -let inline iconMenu b c = Fable.Helpers.React.from IconMenu b c +let IconMenu = importMember> "react-toolbox/lib/menu" +let inline iconMenu b c = rtEl IconMenu b c type MenuDividerTheme = | MenuDivider of string @@ -687,8 +690,8 @@ type MenuDividerTheme = type MenuDividerProps = | Theme of MenuDividerTheme interface IReactToolboxProp -let MenuDivider = importMember> "react-toolbox/lib/menu" -let inline menuDivider b c = Fable.Helpers.React.from MenuDivider b c +let MenuDivider = importMember> "react-toolbox/lib/menu" +let inline menuDivider b c = rtEl MenuDivider b c type MenuItemTheme = | Caption of string @@ -708,8 +711,8 @@ type MenuItemProps = | Theme of MenuItemTheme | Value of obj interface IReactToolboxProp -let MenuItem = importMember> "react-toolbox/lib/menu" -let inline menuItem b c = Fable.Helpers.React.from MenuItem b c +let MenuItem = importMember> "react-toolbox/lib/menu" +let inline menuItem b c = rtEl MenuItem b c type NavigationTheme = @@ -725,8 +728,8 @@ type NavigationProps = | Theme of NavigationTheme | Type of (* TODO StringEnum vertical | horizontal *) string interface IReactToolboxProp -let Navigation = importDefault> "react-toolbox/lib/navigation" -let inline navigation b c = Fable.Helpers.React.from Navigation b c +let Navigation = importDefault> "react-toolbox/lib/navigation" +let inline navigation b c = rtEl Navigation b c type ProgressBarTheme = @@ -749,8 +752,8 @@ type ProgressBarProps = | Type of (* TODO StringEnum linear | circular *) string | Value of float interface IReactToolboxProp -let ProgressBar = importDefault> "react-toolbox/lib/progress_bar" -let inline progressBar b c = Fable.Helpers.React.from ProgressBar b c +let ProgressBar = importDefault> "react-toolbox/lib/progress_bar" +let inline progressBar b c = rtEl ProgressBar b c type RadioGroupProps = @@ -760,8 +763,8 @@ type RadioGroupProps = | OnChange of Function | Value of obj interface IReactToolboxProp -let RadioGroup = importDefault> "react-toolbox/lib/radio" -let inline radioGroup b c = Fable.Helpers.React.from RadioGroup b c +let RadioGroup = importDefault> "react-toolbox/lib/radio" +let inline radioGroup b c = rtEl RadioGroup b c type RadioButtonTheme = | Radio of string @@ -783,8 +786,8 @@ type RadioButtonProps = | Theme of RadioButtonTheme | Value of obj interface IReactToolboxProp -let RadioButton = importDefault> "react-toolbox/lib/radio" -let inline radioButton b c = Fable.Helpers.React.from RadioButton b c +let RadioButton = importDefault> "react-toolbox/lib/radio" +let inline radioButton b c = rtEl RadioButton b c type RippleTheme = @@ -800,8 +803,8 @@ type RippleProps = | Spread of float | Theme of RippleTheme interface IReactToolboxProp -let Ripple = importDefault> "react-toolbox/lib/ripple" -let inline ripple b c = Fable.Helpers.React.from Ripple b c +let Ripple = importDefault> "react-toolbox/lib/ripple" +let inline ripple b c = rtEl Ripple b c type SliderTheme = @@ -830,8 +833,8 @@ type SliderProps = | Theme of SliderTheme | Value of float interface IReactToolboxProp -let Slider = importDefault> "react-toolbox/lib/slider" -let inline slider b c = Fable.Helpers.React.from Slider b c +let Slider = importDefault> "react-toolbox/lib/slider" +let inline slider b c = rtEl Slider b c type SnackbarTheme = @@ -855,8 +858,8 @@ type SnackbarProps = | Timeout of float | Type of (* TODO StringEnum accept | cancel | warning *) string interface IReactToolboxProp -let Snackbar = importDefault> "react-toolbox/lib/snackbar" -let inline snackbar b c = Fable.Helpers.React.from Snackbar b c +let Snackbar = importDefault> "react-toolbox/lib/snackbar" +let inline snackbar b c = rtEl Snackbar b c type SwitchTheme = @@ -879,8 +882,8 @@ type SwitchProps = | OnFocus of Function | Theme of SwitchTheme interface IReactToolboxProp -let Switch = importDefault> "react-toolbox/lib/switch" -let inline switch b c = Fable.Helpers.React.from Switch b c +let Switch = importDefault> "react-toolbox/lib/switch" +let inline switch b c = rtEl Switch b c type TableTheme = @@ -901,8 +904,8 @@ type TableProps = | Source of ResizeArray | Theme of TableTheme interface IReactToolboxProp -let Table = importDefault> "react-toolbox/lib/table" -let inline table b c = Fable.Helpers.React.from Table b c +let Table = importDefault> "react-toolbox/lib/table" +let inline table b c = rtEl Table b c type TabsTheme = @@ -919,8 +922,8 @@ type TabsProps = | OnChange of (int -> unit) | Theme of TabsTheme interface IReactToolboxProp -let Tabs = importMember> "react-toolbox/lib/tabs" -let inline tabs b c = Fable.Helpers.React.from Tabs b c +let Tabs = importMember> "react-toolbox/lib/tabs" +let inline tabs b c = rtEl Tabs b c type TabTheme = | Active of string @@ -937,8 +940,8 @@ type TabProps = | OnActive of Function | Theme of TabTheme interface IReactToolboxProp -let Tab = importMember> "react-toolbox/lib/tabs" -let inline tab b c = Fable.Helpers.React.from Tab b c +let Tab = importMember> "react-toolbox/lib/tabs" +let inline tab b c = rtEl Tab b c type TimePickerTheme = @@ -976,8 +979,8 @@ type TimePickerProps = | Theme of TimePickerTheme | Value of DateTime interface IReactToolboxProp -let TimePicker = importDefault> "react-toolbox/lib/time_picker" -let inline timePicker b c = Fable.Helpers.React.from TimePicker b c +let TimePicker = importDefault> "react-toolbox/lib/time_picker" +let inline timePicker b c = rtEl TimePicker b c type TooltipTheme = @@ -991,5 +994,5 @@ type TooltipProps = | TooltipDelay of float | TooltipHideOnClick of bool interface IReactToolboxProp -let Tooltip = importDefault> "react-toolbox/lib/tooltip" -let inline tooltip b c = Fable.Helpers.React.from Tooltip b c +let Tooltip = importDefault> "react-toolbox/lib/tooltip" +let inline tooltip b c = rtEl Tooltip b c From 57206de87433e0b56684f066ef8c202c795cea92 Mon Sep 17 00:00:00 2001 From: Justin Date: Thu, 22 Jun 2017 21:28:27 -0400 Subject: [PATCH 03/22] Bump version to 1.1.0-beta-3 --- RELEASE_NOTES.md | 4 ++++ build.fsx | 6 ++++++ src/Fable.Helpers.ReactToolbox.fs | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 6d915f1..0a3b3ff 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,7 @@ +### 1.1.0-beta-3 + +* Module is now public + ### 1.1.0-beta-2 * Fixed component bindings diff --git a/build.fsx b/build.fsx index 79c4842..fbcc199 100644 --- a/build.fsx +++ b/build.fsx @@ -14,6 +14,7 @@ let yarn = ProcessHelper.tryFindFileOnPath (if isWindows then "yarn.cmd" else "y // Filesets let projects = !! "src/**.fsproj" +let buildDir = "src/bin" let dotnetcliVersion = "1.0.1" @@ -27,6 +28,11 @@ Target "InstallDotNetCore" (fun _ -> dotnetExePath <- DotNetCli.InstallDotNetSDK dotnetcliVersion ) +Target "Clean" (fun _ -> + CleanDir buildDir + runDotnet "src" "restore" +) + // Target "Install" (fun _ -> // Npm (fun p -> diff --git a/src/Fable.Helpers.ReactToolbox.fs b/src/Fable.Helpers.ReactToolbox.fs index 0edd355..a6f0fa5 100644 --- a/src/Fable.Helpers.ReactToolbox.fs +++ b/src/Fable.Helpers.ReactToolbox.fs @@ -1,4 +1,4 @@ -module internal Fable.Helpers.ReactToolbox +module Fable.Helpers.ReactToolbox open Fable.Core open Fable.Import From 8b6ab0b258f743dc13263b4234f2c27506187369 Mon Sep 17 00:00:00 2001 From: Justin Sacks <2sComplement@users.noreply.github.com> Date: Thu, 22 Jun 2017 21:32:48 -0400 Subject: [PATCH 04/22] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index eb0f0e4..a958ae1 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,6 @@ UI components for fable-react 3. `dotnet pack` ### Usage -See the getting started project. -This is ported directly from [react-toolbox](http://react-toolbox.com/) -Please refer to the docs there. \ No newline at end of file +See the [sample project](https://github.com/Prolucid/fable-react-toolbox-starter). +These components are ported directly from [react-toolbox](http://react-toolbox.com/) +Please refer to the docs there. From 27d711abd022f19b596e2bf7396f3c38f3cafb18 Mon Sep 17 00:00:00 2001 From: Justin Date: Thu, 6 Jul 2017 08:26:46 -0400 Subject: [PATCH 05/22] Bump version to 1.1.0-beta-4 --- RELEASE_NOTES.md | 4 ++++ src/Fable.Helpers.ReactToolbox.fs | 10 +++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 0a3b3ff..fd6c31f 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,7 @@ +### 1.1.0-beta-4 + +* Adding record type for DialogActionProp + ### 1.1.0-beta-3 * Module is now public diff --git a/src/Fable.Helpers.ReactToolbox.fs b/src/Fable.Helpers.ReactToolbox.fs index a6f0fa5..5f29627 100644 --- a/src/Fable.Helpers.ReactToolbox.fs +++ b/src/Fable.Helpers.ReactToolbox.fs @@ -339,13 +339,13 @@ type DialogTheme = | Navigation of string | Title of string -type DialogActionProps = - | Label of string - | OnClick of (React.MouseEvent -> unit) - interface IReactToolboxProp +[] +type DialogActionProp = + { label: string + onClick: unit -> unit } type DialogProps = - | Actions of IHTMLProp list array + | Actions of DialogActionProp array | Active of bool | Children of React.ReactNode | OnEscKeyDown of Function From 02babed66fde4da53414ad2b60f9abb88d6d6768 Mon Sep 17 00:00:00 2001 From: Vasily Kirichenko Date: Tue, 19 Sep 2017 16:21:06 +0300 Subject: [PATCH 06/22] Update README.md Add nuget package badge. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cdcbc04..8214d0d 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,8 @@ UI components for fable-react ======= [![npm version](https://badge.fury.io/js/fable-react-toolbox.svg)](https://badge.fury.io/js/fable-react-toolbox) +[![NuGet version](https://badge.fury.io/nu/Fable.ReactToolbox.svg)](https://badge.fury.io/nu/Fable.ReactToolbox) This is ported directly from [react-toolbox](http://react-toolbox.com/) -Please refer to the docs there. \ No newline at end of file +Please refer to the docs there. From 7c31d8cdf2d7e132b5cc1946b26c2c4205ad250c Mon Sep 17 00:00:00 2001 From: Justin Date: Tue, 19 Sep 2017 12:18:51 -0400 Subject: [PATCH 07/22] Making dialog actions an obj array --- src/Fable.Helpers.ReactToolbox.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Fable.Helpers.ReactToolbox.fs b/src/Fable.Helpers.ReactToolbox.fs index 5f29627..72acbd9 100644 --- a/src/Fable.Helpers.ReactToolbox.fs +++ b/src/Fable.Helpers.ReactToolbox.fs @@ -345,7 +345,7 @@ type DialogActionProp = onClick: unit -> unit } type DialogProps = - | Actions of DialogActionProp array + | Actions of obj array | Active of bool | Children of React.ReactNode | OnEscKeyDown of Function From b69aa42293c673116b5d667b3ec0605e34186a39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81kos=20Luk=C3=A1cs?= Date: Tue, 20 Mar 2018 15:41:05 +0100 Subject: [PATCH 08/22] Updated link in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8214d0d..f5dd181 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,6 @@ UI components for fable-react [![npm version](https://badge.fury.io/js/fable-react-toolbox.svg)](https://badge.fury.io/js/fable-react-toolbox) [![NuGet version](https://badge.fury.io/nu/Fable.ReactToolbox.svg)](https://badge.fury.io/nu/Fable.ReactToolbox) -This is ported directly from [react-toolbox](http://react-toolbox.com/) +This is ported directly from [react-toolbox](http://react-toolbox.io/) Please refer to the docs there. From a3116cfec7d1443b312dba3508231104b6d37fd8 Mon Sep 17 00:00:00 2001 From: Justin Sacks Date: Thu, 22 Mar 2018 09:54:21 -0400 Subject: [PATCH 09/22] Updating build script --- .gitignore | 2 +- build.fsx | 8 +- paket.lock | 1094 ++++++++++++++++----------------- src/Fable.ReactToolbox.fsproj | 7 +- 4 files changed, 553 insertions(+), 558 deletions(-) diff --git a/.gitignore b/.gitignore index 13e1712..6de190b 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,6 @@ obj bin out -Meta.props +Directory.Build.props # git *.orig diff --git a/build.fsx b/build.fsx index fbcc199..7886c53 100644 --- a/build.fsx +++ b/build.fsx @@ -14,10 +14,9 @@ let yarn = ProcessHelper.tryFindFileOnPath (if isWindows then "yarn.cmd" else "y // Filesets let projects = !! "src/**.fsproj" -let buildDir = "src/bin" -let dotnetcliVersion = "1.0.1" +let dotnetcliVersion = "2.1.100" let mutable dotnetExePath = "dotnet" let runDotnet workingDir = @@ -29,7 +28,8 @@ Target "InstallDotNetCore" (fun _ -> ) Target "Clean" (fun _ -> - CleanDir buildDir + CleanDir "src/obj" + CleanDir "src/bin" runDotnet "src" "restore" ) @@ -70,7 +70,7 @@ Target "Meta" (fun _ -> sprintf "%s" (string release.SemVer) "" ""] - |> WriteToFile false "Meta.props" + |> WriteToFile false "Directory.Build.props" ) // -------------------------------------------------------------------------------------- diff --git a/paket.lock b/paket.lock index 0c473cb..4f4d09c 100644 --- a/paket.lock +++ b/paket.lock @@ -1,105 +1,105 @@ NUGET remote: https://www.nuget.org/api/v2 Fable.Core (1.1.2) - FSharp.Core (>= 4.1.17) - restriction: >= netstandard16 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard16 + FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 Fable.Import.Browser (0.1) - Fable.Core (>= 1.0.8) - restriction: >= netstandard16 - FSharp.Core (>= 4.2.1) - restriction: >= netstandard16 + Fable.Core (>= 1.0.8) - restriction: >= netstandard1.6 + FSharp.Core (>= 4.2.1) - restriction: >= netstandard1.6 Fable.React (1.1) - Fable.Core (>= 1.1.2) - restriction: >= netstandard16 - Fable.Import.Browser (>= 0.1) - restriction: >= netstandard16 - FSharp.Core (>= 4.2.1) - restriction: >= netstandard16 + Fable.Core (>= 1.1.2) - restriction: >= netstandard1.6 + Fable.Import.Browser (>= 0.1) - restriction: >= netstandard1.6 + FSharp.Core (>= 4.2.1) - restriction: >= netstandard1.6 FSharp.Core (4.2.1) - System.Collections (>= 4.0.11) - restriction: >= netstandard16 - System.Console (>= 4.0) - restriction: >= netstandard16 - System.Diagnostics.Debug (>= 4.0.11) - restriction: >= netstandard16 - System.Diagnostics.Tools (>= 4.0.1) - restriction: >= netstandard16 - System.Globalization (>= 4.0.11) - restriction: >= netstandard16 - System.IO (>= 4.1) - restriction: >= netstandard16 - System.Linq (>= 4.1) - restriction: >= netstandard16 - System.Linq.Expressions (>= 4.1) - restriction: >= netstandard16 - System.Linq.Queryable (>= 4.0.1) - restriction: >= netstandard16 - System.Net.Requests (>= 4.0.11) - restriction: >= netstandard16 - System.Reflection (>= 4.1) - restriction: >= netstandard16 - System.Reflection.Extensions (>= 4.0.1) - restriction: >= netstandard16 - System.Resources.ResourceManager (>= 4.0.1) - restriction: >= netstandard16 - System.Runtime (>= 4.1) - restriction: >= netstandard16 - System.Runtime.Extensions (>= 4.1) - restriction: >= netstandard16 - System.Runtime.Numerics (>= 4.0.1) - restriction: >= netstandard16 - System.Text.RegularExpressions (>= 4.1) - restriction: >= netstandard16 - System.Threading (>= 4.0.11) - restriction: >= netstandard16 - System.Threading.Tasks (>= 4.0.11) - restriction: >= netstandard16 - System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: >= netstandard16 - System.Threading.Thread (>= 4.0) - restriction: >= netstandard16 - System.Threading.ThreadPool (>= 4.0.10) - restriction: >= netstandard16 - System.Threading.Timer (>= 4.0.1) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (1.1) - restriction: >= netstandard16 - Microsoft.NETCore.Targets (1.1) - restriction: || (&& (>= dnxcore50) (>= netstandard16)) (&& (< netstandard11) (>= netstandard16) (< monoandroid)) (&& (< netstandard12) (>= netstandard16) (< monoandroid)) (&& (< netstandard13) (>= netstandard16) (< monoandroid)) (&& (< netstandard15) (>= netstandard16) (< monoandroid)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) (>= netcore11) - Microsoft.Win32.Primitives (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - NETStandard.Library (1.6.1) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: >= netstandard10 - Microsoft.Win32.Primitives (>= 4.3) - restriction: >= netstandard13 - System.AppContext (>= 4.3) - restriction: >= netstandard13 - System.Collections (>= 4.3) - restriction: >= netstandard10 - System.Collections.Concurrent (>= 4.3) - restriction: >= netstandard11 - System.Console (>= 4.3) - restriction: >= netstandard13 - System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard10 - System.Diagnostics.Tools (>= 4.3) - restriction: >= netstandard10 - System.Diagnostics.Tracing (>= 4.3) - restriction: >= netstandard11 - System.Globalization (>= 4.3) - restriction: >= netstandard10 - System.Globalization.Calendars (>= 4.3) - restriction: >= netstandard13 - System.IO (>= 4.3) - restriction: >= netstandard10 - System.IO.Compression (>= 4.3) - restriction: >= netstandard11 - System.IO.Compression.ZipFile (>= 4.3) - restriction: >= netstandard13 - System.IO.FileSystem (>= 4.3) - restriction: >= netstandard13 - System.IO.FileSystem.Primitives (>= 4.3) - restriction: >= netstandard13 - System.Linq (>= 4.3) - restriction: >= netstandard10 - System.Linq.Expressions (>= 4.3) - restriction: >= netstandard10 - System.Net.Http (>= 4.3) - restriction: >= netstandard11 - System.Net.Primitives (>= 4.3) - restriction: >= netstandard10 - System.Net.Sockets (>= 4.3) - restriction: >= netstandard13 - System.ObjectModel (>= 4.3) - restriction: >= netstandard10 - System.Reflection (>= 4.3) - restriction: >= netstandard10 - System.Reflection.Extensions (>= 4.3) - restriction: >= netstandard10 - System.Reflection.Primitives (>= 4.3) - restriction: >= netstandard10 - System.Resources.ResourceManager (>= 4.3) - restriction: >= netstandard10 - System.Runtime (>= 4.3) - restriction: >= netstandard10 - System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard10 - System.Runtime.Handles (>= 4.3) - restriction: >= netstandard13 - System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard11 - System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: >= netstandard11 - System.Runtime.Numerics (>= 4.3) - restriction: >= netstandard11 - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard13 - System.Security.Cryptography.Encoding (>= 4.3) - restriction: >= netstandard13 - System.Security.Cryptography.Primitives (>= 4.3) - restriction: >= netstandard13 - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: >= netstandard13 - System.Text.Encoding (>= 4.3) - restriction: >= netstandard10 - System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard10 - System.Text.RegularExpressions (>= 4.3) - restriction: >= netstandard10 - System.Threading (>= 4.3) - restriction: >= netstandard10 - System.Threading.Tasks (>= 4.3) - restriction: >= netstandard10 - System.Threading.Timer (>= 4.3) - restriction: >= netstandard12 - System.Xml.ReaderWriter (>= 4.3) - restriction: >= netstandard10 - System.Xml.XDocument (>= 4.3) - restriction: >= netstandard10 - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.native.System (4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + System.Collections (>= 4.0.11) - restriction: >= netstandard1.6 + System.Console (>= 4.0) - restriction: >= netstandard1.6 + System.Diagnostics.Debug (>= 4.0.11) - restriction: >= netstandard1.6 + System.Diagnostics.Tools (>= 4.0.1) - restriction: >= netstandard1.6 + System.Globalization (>= 4.0.11) - restriction: >= netstandard1.6 + System.IO (>= 4.1) - restriction: >= netstandard1.6 + System.Linq (>= 4.1) - restriction: >= netstandard1.6 + System.Linq.Expressions (>= 4.1) - restriction: >= netstandard1.6 + System.Linq.Queryable (>= 4.0.1) - restriction: >= netstandard1.6 + System.Net.Requests (>= 4.0.11) - restriction: >= netstandard1.6 + System.Reflection (>= 4.1) - restriction: >= netstandard1.6 + System.Reflection.Extensions (>= 4.0.1) - restriction: >= netstandard1.6 + System.Resources.ResourceManager (>= 4.0.1) - restriction: >= netstandard1.6 + System.Runtime (>= 4.1) - restriction: >= netstandard1.6 + System.Runtime.Extensions (>= 4.1) - restriction: >= netstandard1.6 + System.Runtime.Numerics (>= 4.0.1) - restriction: >= netstandard1.6 + System.Text.RegularExpressions (>= 4.1) - restriction: >= netstandard1.6 + System.Threading (>= 4.0.11) - restriction: >= netstandard1.6 + System.Threading.Tasks (>= 4.0.11) - restriction: >= netstandard1.6 + System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: >= netstandard1.6 + System.Threading.Thread (>= 4.0) - restriction: >= netstandard1.6 + System.Threading.ThreadPool (>= 4.0.10) - restriction: >= netstandard1.6 + System.Threading.Timer (>= 4.0.1) - restriction: >= netstandard1.6 + Microsoft.NETCore.Platforms (1.1) - restriction: >= netstandard1.6 + Microsoft.NETCore.Targets (1.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) (>= netcoreapp1.1) + Microsoft.Win32.Primitives (4.3) - restriction: >= netstandard1.6 + 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) + NETStandard.Library (1.6.1) - restriction: >= netstandard1.6 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: >= netstandard1.0 + Microsoft.Win32.Primitives (>= 4.3) - restriction: >= netstandard1.3 + System.AppContext (>= 4.3) - restriction: >= netstandard1.3 + System.Collections (>= 4.3) - restriction: >= netstandard1.0 + System.Collections.Concurrent (>= 4.3) - restriction: >= netstandard1.1 + System.Console (>= 4.3) - restriction: >= netstandard1.3 + System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard1.0 + System.Diagnostics.Tools (>= 4.3) - restriction: >= netstandard1.0 + System.Diagnostics.Tracing (>= 4.3) - restriction: >= netstandard1.1 + System.Globalization (>= 4.3) - restriction: >= netstandard1.0 + System.Globalization.Calendars (>= 4.3) - restriction: >= netstandard1.3 + System.IO (>= 4.3) - restriction: >= netstandard1.0 + System.IO.Compression (>= 4.3) - restriction: >= netstandard1.1 + System.IO.Compression.ZipFile (>= 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.0 + System.Linq.Expressions (>= 4.3) - restriction: >= netstandard1.0 + System.Net.Http (>= 4.3) - restriction: >= netstandard1.1 + System.Net.Primitives (>= 4.3) - restriction: >= netstandard1.0 + System.Net.Sockets (>= 4.3) - restriction: >= netstandard1.3 + System.ObjectModel (>= 4.3) - restriction: >= netstandard1.0 + System.Reflection (>= 4.3) - restriction: >= netstandard1.0 + System.Reflection.Extensions (>= 4.3) - restriction: >= netstandard1.0 + System.Reflection.Primitives (>= 4.3) - restriction: >= netstandard1.0 + System.Resources.ResourceManager (>= 4.3) - restriction: >= netstandard1.0 + System.Runtime (>= 4.3) - restriction: >= netstandard1.0 + System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard1.0 + System.Runtime.Handles (>= 4.3) - restriction: >= netstandard1.3 + System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.1 + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: >= netstandard1.1 + System.Runtime.Numerics (>= 4.3) - restriction: >= netstandard1.1 + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.3 + System.Security.Cryptography.Encoding (>= 4.3) - restriction: >= netstandard1.3 + System.Security.Cryptography.Primitives (>= 4.3) - restriction: >= netstandard1.3 + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: >= netstandard1.3 + System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.0 + System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard1.0 + System.Text.RegularExpressions (>= 4.3) - restriction: >= netstandard1.0 + System.Threading (>= 4.3) - restriction: >= netstandard1.0 + System.Threading.Tasks (>= 4.3) - restriction: >= netstandard1.0 + System.Threading.Timer (>= 4.3) - restriction: >= netstandard1.2 + System.Xml.ReaderWriter (>= 4.3) - restriction: >= netstandard1.0 + System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.0 + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.native.System (4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.IO.Compression (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard16)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) + runtime.native.System.IO.Compression (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Net.Http (4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.native.System.Net.Http (4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Security.Cryptography.Apple (4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.native.System.Security.Cryptography.Apple (4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) 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) @@ -110,469 +110,469 @@ NUGET 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: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.AppContext (4.3) - restriction: >= netstandard16 - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard13) (< netstandard16) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Buffers (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard16)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Diagnostics.Tracing (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Collections (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Collections.Concurrent (4.3) - restriction: >= netstandard16 - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Console (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Diagnostics.Debug (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.DiagnosticSource (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard16)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) - System.Diagnostics.Tools (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Tracing (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard12) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard12) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard12) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard12) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard12) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard12) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Globalization (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization.Calendars (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Globalization.Extensions (4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.IO (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.IO.Compression (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - runtime.native.System (>= 4.3) - restriction: && (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - runtime.native.System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Buffers (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO.Compression.ZipFile (4.3) - restriction: >= netstandard16 - System.Buffers (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.IO.Compression (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.IO.FileSystem (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.IO.FileSystem (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.IO.FileSystem.Primitives (4.3) - restriction: >= netstandard16 - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Linq (4.3) - restriction: >= netstandard16 - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard16) (< monoandroid) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard16) (< monoandroid) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Linq.Expressions (4.3) - restriction: >= netstandard16 - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.ObjectModel (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Reflection.Emit (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Linq.Queryable (4.3) - restriction: >= netstandard16 - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Http (4.3.2) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - runtime.native.System (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.native.System.Net.Http (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Globalization.Extensions (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.IO.FileSystem (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= net46) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Net.Primitives (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard10) (< netstandard11) (< monoandroid) (< win8) (< wp8)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard10) (< netstandard11) (< monoandroid) (< win8) (< wp8)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard10) (< netstandard11) (< monoandroid) (< win8) (< wp8)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Requests (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard10) (< netstandard11) (< monoandroid) (< win8) (< wp8)) - System.Net.Http (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard10) (< netstandard11) (< monoandroid) (< win8) (< wp8)) - System.Net.WebHeaderCollection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard10) (< netstandard11) (< monoandroid) (< win8) (< wp8)) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Sockets (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Net.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Net.WebHeaderCollection (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard16)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.ObjectModel (4.3) - restriction: >= netstandard16 - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Reflection.Emit (4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) - System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) - System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) - System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard16)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< wp8) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard16)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< wp8) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Extensions (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Reflection.Primitives (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Reflection.TypeExtensions (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard16)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Reflection (>= 4.3) - restriction: || (&& (< net46) (>= netstandard13) (< netstandard15) (< monoandroid)) (&& (< net46) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= net462) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard13) (< netstandard15) (< monoandroid)) (&& (< net46) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Resources.ResourceManager (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Runtime (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard12) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard12) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard12) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard12) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.Extensions (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.Handles (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard12) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard12) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore11) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard12) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard12) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore11) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard12) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard12) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore11) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard12) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard12) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore11) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard12) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard12) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= net462) (>= dnxcore50) (>= netcore11) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< netstandard15) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard15) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore11) - System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: >= netstandard16 - runtime.native.System (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Numerics (4.3) - restriction: >= netstandard16 - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Security.Cryptography.Algorithms (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard13) (< netstandard14) (< monoandroid)) (&& (< net46) (>= netstandard14) (< netstandard16) (< monoandroid)) (>= net463) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard13) (< netstandard14) (< monoandroid)) (&& (< net46) (>= netstandard14) (< netstandard16) (< monoandroid)) (>= net463) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime.Numerics (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= net463) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard14)) (&& (< net46) (>= netstandard13) (< netstandard14) (< monoandroid)) (&& (< net46) (>= netstandard14) (< netstandard16) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Cng (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard16)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net46) (>= netstandard14)) (>= netstandard16) - System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard13) (< netstandard14)) (&& (< net46) (>= netstandard14)) (>= netstandard16) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard14)) (>= netstandard16) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard13) (< netstandard14)) (&& (< net46) (>= netstandard14)) (>= netstandard16) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard14)) (>= netstandard16) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard13) (< netstandard14)) (&& (< net46) (>= netstandard14)) (>= netstandard16) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net46) (>= netstandard14)) (>= netstandard16) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (>= net46) (< netstandard14)) (&& (< net46) (>= netstandard13) (< netstandard14)) (&& (< net46) (>= netstandard14)) (>= net461) (>= netstandard16) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard14)) (>= netstandard16) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard14)) (&& (< net46) (>= netstandard13) (< netstandard14)) (&& (< net46) (>= netstandard14)) (>= net461) (>= netstandard16) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard14)) (>= netstandard16) - System.Security.Cryptography.Csp (4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Reflection (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Collections.Concurrent (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Linq (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.OpenSsl (4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (>= net463) (>= netstandard16) (>= monoandroid) - System.Collections (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime.Numerics (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (4.3) - restriction: >= netstandard16 - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.X509Certificates (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - runtime.native.System (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.native.System.Net.Http (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard13) (< netstandard14) (< monoandroid)) (&& (< net46) (>= netstandard14) (< netstandard16) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard13) (< netstandard14) (< monoandroid)) (&& (< net46) (>= netstandard14) (< netstandard16) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (>= net46) (< netstandard14)) (&& (< net46) (>= netstandard13) (< netstandard14) (< monoandroid)) (&& (< net46) (>= netstandard14) (< netstandard16) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Csp (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (>= net46) (< netstandard14)) (&& (< net46) (>= netstandard13) (< netstandard14) (< monoandroid)) (&& (< net46) (>= netstandard14) (< netstandard16) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding.Extensions (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.RegularExpressions (4.3) - restriction: >= netstandard16 - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< netcore11) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< netcore11) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< netcore11) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< netstandard16) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) (>= netcore11) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< netcore11) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard16) (< netcore11) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Threading (4.3) - restriction: >= netstandard16 - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard16)) (&& (>= netstandard16) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Threading.Tasks (>= 4.3) - restriction: && (< net45) (>= netstandard10) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Threading.Tasks.Parallel (4.3) - restriction: >= netstandard16 - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard11) (< netstandard13) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Thread (4.3) - restriction: >= netstandard16 - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Threading.ThreadPool (4.3) - restriction: >= netstandard16 - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) - System.Threading.Timer (4.3) - restriction: >= netstandard16 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net451) (>= netstandard12) (< monotouch) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net451) (>= netstandard12) (< monotouch) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net451) (>= netstandard12) (< monotouch) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) - System.Xml.ReaderWriter (4.3) - restriction: >= netstandard16 - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Xml.XDocument (4.3) - restriction: >= netstandard16 - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard10) (< netstandard13) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard13) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) + System.AppContext (4.3) - restriction: >= netstandard1.6 + System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Buffers (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) + System.Diagnostics.Tracing (>= 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.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) + System.Collections (4.3) - restriction: >= netstandard1.6 + 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: >= netstandard1.6 + 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.Console (4.3) - restriction: >= netstandard1.6 + 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.Diagnostics.Debug (4.3) - restriction: >= netstandard1.6 + 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.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) + System.Diagnostics.Tools (4.3) - restriction: >= netstandard1.6 + 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.Tracing (4.3) - restriction: >= netstandard1.6 + 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.Globalization (4.3) - restriction: >= netstandard1.6 + 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: >= netstandard1.6 + 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: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) + 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.IO (4.3) - restriction: >= netstandard1.6 + 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: >= netstandard1.6 + 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.Compression.ZipFile (4.3) - restriction: >= netstandard1.6 + System.Buffers (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) + System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) + System.IO.Compression (>= 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.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) + System.IO.FileSystem (4.3) - restriction: >= netstandard1.6 + 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: >= netstandard1.6 + System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) + System.Linq (4.3) - restriction: >= netstandard1.6 + 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: >= netstandard1.6 + 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: >= netstandard1.6 + 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: >= netstandard1.6 + 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.Primitives (4.3) - restriction: >= netstandard1.6 + 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.Requests (4.3) - restriction: >= netstandard1.6 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) + 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.IO (>= 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.Net.Http (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Net.Primitives (>= 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.Net.WebHeaderCollection (>= 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) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) + 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.Net.Sockets (4.3) - restriction: >= netstandard1.6 + 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.Net.WebHeaderCollection (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Collections (>= 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.ObjectModel (4.3) - restriction: >= netstandard1.6 + 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.Reflection (4.3) - restriction: >= netstandard1.6 + 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: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) + 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: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) + 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: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) + 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: >= netstandard1.6 + 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.Primitives (4.3) - restriction: >= netstandard1.6 + 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: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) + 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.ResourceManager (4.3) - restriction: >= netstandard1.6 + 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: >= netstandard1.6 + 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.Extensions (4.3) - restriction: >= netstandard1.6 + 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: >= netstandard1.6 + 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: >= netstandard1.6 + 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) (>= netcoreapp1.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) (>= netcoreapp1.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) (>= netcoreapp1.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) (>= netcoreapp1.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) (>= netcoreapp1.1) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) + System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: >= netstandard1.6 + 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.Numerics (4.3) - restriction: >= netstandard1.6 + 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.Security.Cryptography.Algorithms (4.3) - restriction: >= netstandard1.6 + 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: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) + 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: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) + 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: >= netstandard1.6 + 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: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) + 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: >= netstandard1.6 + 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: >= netstandard1.6 + 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.Text.Encoding (4.3) - restriction: >= netstandard1.6 + 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.Extensions (4.3) - restriction: >= netstandard1.6 + 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.RegularExpressions (4.3) - restriction: >= netstandard1.6 + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< 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)) (>= netcoreapp1.1) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Threading (4.3) - restriction: >= netstandard1.6 + 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.Tasks (4.3) - restriction: >= netstandard1.6 + 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.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) + System.Collections (>= 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.Threading.Tasks (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) + System.Threading.Tasks.Parallel (4.3) - restriction: >= netstandard1.6 + 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: >= netstandard1.6 + System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) + System.Threading.ThreadPool (4.3) - restriction: >= netstandard1.6 + 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: >= netstandard1.6 + 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.Xml.ReaderWriter (4.3) - restriction: >= netstandard1.6 + 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: >= netstandard1.6 + 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) GROUP Build RESTRICTION: == net46 NUGET remote: https://www.nuget.org/api/v2 - FAKE (4.61.3) + FAKE (4.64.4) FSharp.Compiler.Service (2.0.0.6) FSharp.Core (4.2.1) - content: none, redirects: force FSharp.Formatting (2.14.4) diff --git a/src/Fable.ReactToolbox.fsproj b/src/Fable.ReactToolbox.fsproj index 73e4706..7d55d75 100644 --- a/src/Fable.ReactToolbox.fsproj +++ b/src/Fable.ReactToolbox.fsproj @@ -1,5 +1,4 @@ - - + netstandard1.6 true @@ -7,10 +6,6 @@ - - - - From c74d2c1c1d779e0e3169968a7848deba40141e43 Mon Sep 17 00:00:00 2001 From: Justin Sacks Date: Thu, 22 Mar 2018 12:31:17 -0400 Subject: [PATCH 10/22] Bump version to 2.1.0 --- RELEASE_NOTES.md | 4 + build.fsx | 4 +- paket.dependencies | 4 +- paket.lock | 954 ++++++++++++++++++++++----------------------- 4 files changed, 486 insertions(+), 480 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index fd6c31f..5a59403 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,7 @@ +### 2.1.0 + +* Release version targeting Fable.React 2.1.0 + ### 1.1.0-beta-4 * Adding record type for DialogActionProp diff --git a/build.fsx b/build.fsx index 7886c53..fe4bea6 100644 --- a/build.fsx +++ b/build.fsx @@ -125,7 +125,8 @@ Target "Release" (fun _ -> Target "Publish" DoNothing // Build order -"Meta" +"Clean" + ==> "Meta" ==> "InstallDotNetCore" // ==> "Install" ==> "Build" @@ -135,6 +136,7 @@ Target "Publish" DoNothing "Publish" <== [ "Build" + "Package" "PublishNuget" "Release" ] diff --git a/paket.dependencies b/paket.dependencies index 4349938..f32adfd 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -1,9 +1,9 @@ source https://www.nuget.org/api/v2 nuget FSharp.Core -nuget Fable.Core 1.1.2 +nuget Fable.Core nuget Fable.Import.Browser -nuget Fable.React +nuget Fable.React 2.1.0 group Build framework: net46 diff --git a/paket.lock b/paket.lock index 4f4d09c..44c2370 100644 --- a/paket.lock +++ b/paket.lock @@ -1,45 +1,45 @@ NUGET remote: https://www.nuget.org/api/v2 - Fable.Core (1.1.2) - FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + Fable.Core (1.3.11) + FSharp.Core (>= 4.2.3) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fable.Import.Browser (0.1) - Fable.Core (>= 1.0.8) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.2.1) - restriction: >= netstandard1.6 - Fable.React (1.1) - Fable.Core (>= 1.1.2) - restriction: >= netstandard1.6 + Fable.Import.Browser (1.1.1) + Fable.Core (>= 1.3.7) - restriction: >= netstandard1.6 + FSharp.Core (>= 4.2.3) - restriction: >= netstandard1.6 + Fable.React (2.1) + Fable.Core (>= 1.3.7) - restriction: >= netstandard1.6 Fable.Import.Browser (>= 0.1) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.2.1) - restriction: >= netstandard1.6 - FSharp.Core (4.2.1) - System.Collections (>= 4.0.11) - restriction: >= netstandard1.6 - System.Console (>= 4.0) - restriction: >= netstandard1.6 - System.Diagnostics.Debug (>= 4.0.11) - restriction: >= netstandard1.6 - System.Diagnostics.Tools (>= 4.0.1) - restriction: >= netstandard1.6 - System.Globalization (>= 4.0.11) - restriction: >= netstandard1.6 - System.IO (>= 4.1) - restriction: >= netstandard1.6 - System.Linq (>= 4.1) - restriction: >= netstandard1.6 - System.Linq.Expressions (>= 4.1) - restriction: >= netstandard1.6 - System.Linq.Queryable (>= 4.0.1) - restriction: >= netstandard1.6 - System.Net.Requests (>= 4.0.11) - restriction: >= netstandard1.6 - System.Reflection (>= 4.1) - restriction: >= netstandard1.6 - System.Reflection.Extensions (>= 4.0.1) - restriction: >= netstandard1.6 - System.Resources.ResourceManager (>= 4.0.1) - restriction: >= netstandard1.6 - System.Runtime (>= 4.1) - restriction: >= netstandard1.6 - System.Runtime.Extensions (>= 4.1) - restriction: >= netstandard1.6 - System.Runtime.Numerics (>= 4.0.1) - restriction: >= netstandard1.6 - System.Text.RegularExpressions (>= 4.1) - restriction: >= netstandard1.6 - System.Threading (>= 4.0.11) - restriction: >= netstandard1.6 - System.Threading.Tasks (>= 4.0.11) - restriction: >= netstandard1.6 - System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: >= netstandard1.6 - System.Threading.Thread (>= 4.0) - restriction: >= netstandard1.6 - System.Threading.ThreadPool (>= 4.0.10) - restriction: >= netstandard1.6 - System.Threading.Timer (>= 4.0.1) - restriction: >= netstandard1.6 + FSharp.Core (>= 4.2.3) - restriction: >= netstandard1.6 + FSharp.Core (4.3.4) + System.Collections (>= 4.0.11) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Console (>= 4.0) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Diagnostics.Debug (>= 4.0.11) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Diagnostics.Tools (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Globalization (>= 4.0.11) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.IO (>= 4.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Linq (>= 4.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Linq.Expressions (>= 4.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Linq.Queryable (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Net.Requests (>= 4.0.11) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Reflection (>= 4.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Reflection.Extensions (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Resources.ResourceManager (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Runtime (>= 4.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Runtime.Extensions (>= 4.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Runtime.Numerics (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Text.RegularExpressions (>= 4.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Threading (>= 4.0.11) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Threading.Tasks (>= 4.0.11) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Threading.Thread (>= 4.0) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Threading.ThreadPool (>= 4.0.10) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Threading.Timer (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) Microsoft.NETCore.Platforms (1.1) - restriction: >= netstandard1.6 - Microsoft.NETCore.Targets (1.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) (>= netcoreapp1.1) + Microsoft.NETCore.Targets (1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) Microsoft.Win32.Primitives (4.3) - restriction: >= netstandard1.6 - 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.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) NETStandard.Library (1.6.1) - restriction: >= netstandard1.6 Microsoft.NETCore.Platforms (>= 1.1) - restriction: >= netstandard1.0 Microsoft.Win32.Primitives (>= 4.3) - restriction: >= netstandard1.3 @@ -85,21 +85,21 @@ NUGET System.Threading.Timer (>= 4.3) - restriction: >= netstandard1.2 System.Xml.ReaderWriter (>= 4.3) - restriction: >= netstandard1.0 System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.0 - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.native.System (4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System (4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.IO.Compression (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) + runtime.native.System.IO.Compression (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Net.Http (4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.native.System.Net.Http (4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Security.Cryptography.Apple (4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.native.System.Security.Cryptography.Apple (4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) 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) @@ -110,463 +110,463 @@ NUGET 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: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.AppContext (4.3) - restriction: >= netstandard1.6 - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Buffers (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Diagnostics.Tracing (>= 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.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Collections (4.3) - restriction: >= netstandard1.6 - 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.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3)) + System.Buffers (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Tracing (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Collections.Concurrent (4.3) - restriction: >= netstandard1.6 - 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.Console (4.3) - restriction: >= netstandard1.6 - 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.Diagnostics.Debug (4.3) - restriction: >= netstandard1.6 - 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.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) - System.Diagnostics.Tools (4.3) - restriction: >= netstandard1.6 - 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.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Console (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Debug (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Diagnostics.DiagnosticSource (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) + System.Diagnostics.Tools (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Diagnostics.Tracing (4.3) - restriction: >= netstandard1.6 - 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.Globalization (4.3) - restriction: >= netstandard1.6 - 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) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Globalization (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Globalization.Calendars (4.3) - restriction: >= netstandard1.6 - 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: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) - 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.IO (4.3) - restriction: >= netstandard1.6 - 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) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization.Extensions (4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.IO.Compression (4.3) - restriction: >= netstandard1.6 - 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) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.IO.Compression (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Buffers (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) System.IO.Compression.ZipFile (4.3) - restriction: >= netstandard1.6 - System.Buffers (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) - System.IO.Compression (>= 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.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) + System.Buffers (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.Compression (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO.FileSystem (4.3) - restriction: >= netstandard1.6 - 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) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO.FileSystem.Primitives (4.3) - restriction: >= netstandard1.6 - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) - System.Linq (4.3) - restriction: >= netstandard1.6 - 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: >= netstandard1.6 - 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: >= netstandard1.6 - 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.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Linq (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Linq.Expressions (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.ObjectModel (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Reflection.Emit (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Linq.Queryable (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Net.Http (4.3.2) - restriction: >= netstandard1.6 - 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)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Globalization.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.IO.FileSystem (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Net.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (>= net46) (< portable-net45+win8+wpa81) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) System.Net.Primitives (4.3) - restriction: >= netstandard1.6 - 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.Requests (4.3) - restriction: >= netstandard1.6 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - 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.IO (>= 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.Net.Http (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Primitives (>= 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.Net.WebHeaderCollection (>= 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) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) - 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) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (< portable-net45+win8+wp8+wpa81) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (< portable-net45+win8+wp8+wpa81) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Net.Requests (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (< portable-net45+win8+wp8+wpa81) + System.Net.Http (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Net.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (< portable-net45+win8+wp8+wpa81) + System.Net.WebHeaderCollection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (< portable-net45+win8+wp8+wpa81) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Net.Sockets (4.3) - restriction: >= netstandard1.6 - 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.Net.WebHeaderCollection (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Collections (>= 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) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Net.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Net.WebHeaderCollection (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.ObjectModel (4.3) - restriction: >= netstandard1.6 - 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.Reflection (4.3) - restriction: >= netstandard1.6 - 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: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) - 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: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) - 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: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) - 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: >= netstandard1.6 - 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.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Reflection (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Reflection.Emit (4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Extensions (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Reflection.Primitives (4.3) - restriction: >= netstandard1.6 - 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: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) - 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.ResourceManager (4.3) - restriction: >= netstandard1.6 - 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: >= netstandard1.6 - 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.Extensions (4.3) - restriction: >= netstandard1.6 - 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) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Reflection.TypeExtensions (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid) (< netstandard1.3)) (>= net462) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid) (< netstandard1.3)) + System.Resources.ResourceManager (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Runtime.Extensions (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Runtime.Handles (4.3) - restriction: >= netstandard1.6 - 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.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.InteropServices (4.3) - restriction: >= netstandard1.6 - 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) (>= netcoreapp1.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) (>= netcoreapp1.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) (>= netcoreapp1.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) (>= netcoreapp1.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) (>= netcoreapp1.1) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) (< portable-net45+win8+wpa81) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) (< portable-net45+win8+wpa81) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) (< portable-net45+win8+wpa81) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) (< portable-net45+win8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= net462) (>= netcoreapp1.1) (< portable-net45+win8+wpa81) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) (< portable-net45+win8+wpa81) System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: >= netstandard1.6 - 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.Numerics (4.3) - restriction: >= netstandard1.6 - 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) + runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (< win8)) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (< win8)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (< win8)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (< win8)) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (< win8)) + System.Runtime.Numerics (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) System.Security.Cryptography.Algorithms (4.3) - restriction: >= netstandard1.6 - 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: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) - 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: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) - 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) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) + runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3)) (>= net463) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3)) (>= net463) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) + System.Runtime.Numerics (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) (>= net463) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.6)) (>= net463) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) + System.Security.Cryptography.Cng (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) + System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) + System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) (&& (>= net461) (< netstandard1.6)) (>= net463) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) (&& (>= net461) (< netstandard1.6)) (>= net463) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) + System.Security.Cryptography.Csp (4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.Encoding (4.3) - restriction: >= netstandard1.6 - 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: && (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac) - 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) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections.Concurrent (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Linq (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.OpenSsl (4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (>= monoandroid) (>= net463) (>= netstandard1.6) + System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net463) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net463) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net463) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net463) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Numerics (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net463) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net463) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.Primitives (4.3) - restriction: >= netstandard1.6 - 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.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.X509Certificates (4.3) - restriction: >= netstandard1.6 - 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)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) + runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) + System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) + System.Security.Cryptography.Cng (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) + System.Security.Cryptography.Csp (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) System.Text.Encoding (4.3) - restriction: >= netstandard1.6 - 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) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Text.Encoding.Extensions (4.3) - restriction: >= netstandard1.6 - 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.RegularExpressions (4.3) - restriction: >= netstandard1.6 - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< 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)) (>= netcoreapp1.1) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Threading (4.3) - restriction: >= netstandard1.6 - 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.Tasks (4.3) - restriction: >= netstandard1.6 - 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.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarinios) (< xamarinmac)) - System.Collections (>= 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.Threading.Tasks (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Threading.Tasks.Parallel (4.3) - restriction: >= netstandard1.6 - 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: >= netstandard1.6 - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarinios) (< xamarinmac) - System.Threading.ThreadPool (4.3) - restriction: >= netstandard1.6 - 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: >= netstandard1.6 - 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) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Text.RegularExpressions (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (>= netcoreapp1.1) (< portable-net45+win8+wp8+wpa81) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Threading (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Threading.Tasks (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Threading.Tasks.Extensions (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks.Parallel (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Threading.Thread (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.ThreadPool (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Timer (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net451+win81+wpa81) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net451+win81+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net451+win81+wpa81) System.Xml.ReaderWriter (4.3) - restriction: >= netstandard1.6 - 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.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Xml.XDocument (4.3) - restriction: >= netstandard1.6 - 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.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) GROUP Build RESTRICTION: == net46 From 282d1884900f5f336bb2355947588227228f495c Mon Sep 17 00:00:00 2001 From: Justin Sacks Date: Thu, 22 Mar 2018 12:58:15 -0400 Subject: [PATCH 11/22] Fixing git release --- build.fsx | 4 ++-- paket.lock | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.fsx b/build.fsx index fe4bea6..648564c 100644 --- a/build.fsx +++ b/build.fsx @@ -77,12 +77,12 @@ Target "Meta" (fun _ -> // Build a NuGet package Target "Package" (fun _ -> - runDotnet "src" "pack" + runDotnet "src" "pack -c Release" ) Target "PublishNuget" (fun _ -> let args = sprintf "nuget push Fable.ReactToolbox.%s.nupkg -s nuget.org -k %s" (string release.SemVer) (environVar "nugetkey") - runDotnet "src/bin/Debug" args + runDotnet "src/bin/Release" args ) diff --git a/paket.lock b/paket.lock index 44c2370..94df0e3 100644 --- a/paket.lock +++ b/paket.lock @@ -580,7 +580,7 @@ NUGET FSharpVSPowerTools.Core (>= 2.3 < 2.4) FSharpVSPowerTools.Core (2.3) FSharp.Compiler.Service (>= 2.0.0.3) - Octokit (0.24) + Octokit (0.28) GITHUB remote: fsharp/FAKE modules/Octokit/Octokit.fsx (15e1b741f4ae9fbaad640a65231dfcec28ce6ddd) From c1c066b5b57ce61c7dbc03bbb2b64518dd13354c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1cs=20=C3=81kos?= Date: Fri, 23 Mar 2018 10:17:13 +0100 Subject: [PATCH 12/22] typo in AutocompleteProps.ShowSuggestionsWhenValueIsSet --- src/Fable.Helpers.ReactToolbox.fs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Fable.Helpers.ReactToolbox.fs b/src/Fable.Helpers.ReactToolbox.fs index 72acbd9..e8db70a 100644 --- a/src/Fable.Helpers.ReactToolbox.fs +++ b/src/Fable.Helpers.ReactToolbox.fs @@ -94,7 +94,9 @@ type AutocompleteProps = | Multiple of bool | OnChange of Function | SelectedPosition of (* TODO StringEnum above | below *) string - | ShowSuggestionsWHenValueIsSet of bool + /// If true, the list of suggestions will not be filtered when a value is selected, until the query is modified. + /// default: `false` + | ShowSuggestionsWhenValueIsSet of bool | Source of obj | SuggestionMatch of (* TODO StringEnum start | anywhere | word *) string | Theme of AutocompleteTheme @@ -341,7 +343,7 @@ type DialogTheme = [] type DialogActionProp = - { label: string + { label: string onClick: unit -> unit } type DialogProps = From 82ec4a109ad1736cdf613099a99b71c7461db186 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1cs=20=C3=81kos?= Date: Fri, 23 Mar 2018 16:50:02 +0100 Subject: [PATCH 13/22] Added paket bootstrapper; added `storage:none` to paket.dependencies --- .gitignore | 1 - .paket/paket.exe | Bin 0 -> 64296 bytes build.fsx | 10 +++++----- paket.dependencies | 1 + paket.lock | 3 ++- 5 files changed, 8 insertions(+), 7 deletions(-) create mode 100644 .paket/paket.exe diff --git a/.gitignore b/.gitignore index 6de190b..4798f0f 100644 --- a/.gitignore +++ b/.gitignore @@ -14,7 +14,6 @@ samples/**/public # F# .fake/ -.paket/paket.exe packages/ paket-files build/ diff --git a/.paket/paket.exe b/.paket/paket.exe new file mode 100644 index 0000000000000000000000000000000000000000..229b546cb6cbe2b65f554d321066f3c7c2ecad23 GIT binary patch literal 64296 zcmb@v31C#!^*?^zdoyp6$xcFsgg_>Qgvn%)MGzE`071eU2nga5hGc-zBrm>6SVS(Z*V?$)Jtv8&ozD%EPyTD7*?){6hnIrqMq$wI&Vet-X9&fIhE zx#ymH?z!ild*7S5V&fHL5s?qSpL{}eKR)?qzQF$s22q_~`MrF)H~Ys`_Z!Q9T(x#v zA{p*;ovm)HC)^q9?REOYo8w`3pf{Z84KG^N9`13v;!SyZ!O2>5TMN;0!=huq`i+fV zZ?DiK$}y%A{RWhvqHg&oKEqr#@H=0XO{F(eZ3g@^AN8PbZZj~hO&1Uq%75ukjVf*` zf!tM6HfUT*2neqeMaJSYY)~#fUjC4%Liqkm5GKmXV9f%)Bm-~ikMHaU-u)5)>SV0Y zJM$+@w5iEWx}6{@-7q#5`f?_hSYv*Z8}D|&$hxx5Yy*021mA+86zIfu#SiOdlAlgJ zg=p{wg6&L#xJ-)(-~R-PrV(lzHGupNlK~J`w?~`^BjK)TX@O8VvwQIPU9Xi<=&*YF(%^!gzu%J_ea=^ia z2bDkvZfZ9y*T_O3kqM}5I95|yLCG6qMJ9sSSfhyH=P?J#N*1>i)%E#yAmT>>AEJn8 zDuNp)4j0^*t0*C7v9xfe;KPN6eQqP$E)1!WD%K!im#G0niEV$Sw!P(cFkcRuH3ZC% z12t^R-7$oQ5rB3%)8ICC&~C^zMJd}^BvrSk*mXszsAIVgd2Mn6UYme}X@|I94Q~^2 z;9GVSda-`>_{5wPS?=4+n1`yG#@t%V%{DYTTn!$VUwjJlhIXk5587j!j>6D*-b~95 zZLpk4u!wy!rW7)}T|K>tI81%0@z~1r16qOx1Ho%3eZ~ z`ucKnh!4T$%&*%@nPoS=lxEx@b7i^l3`Qv{M$0`j)gx>dFJ!)z`<lugVtE?zKQ{dE=MddYD&#pBB$}l;MaXoNO5RXl!pM`R^F?dWZ$1GfvhFF^(O9RQ~dD8j&M{;(p&P}y07 za`Y)P(vHu5Y+y!>VqFWoCgiN+4^y$8#N{#v>s`e?u&}~KW)dqNPCdqmK$_i96tEo( z5&FP)gAHaN8i7j$b2J%dk6>m|Q4-BcVse5tk<$Sk>@eKrCVXJcm^2>p`Nz`ZvSeHb ztl9$v?PJU){?9yxg=8U~8tf1Gm}|^kk=2;%j9r|EhmD{y+G7TL(hm?W$bpF zx#vNy;Y^@@FEq*IDQBKe;o+LSn}$}8Pgipdue5qu|6|CBqg7*$+XFR{TTnjR^gG{y z8aWaOaI(BrUIe<7izNRrys}jFtl*!x8ahJn^ z5i2V5ZmbDa25(e52yZ5mXN*VQh~>e#aFHdEJIv>sP_hSB!h&SCa(YqDsV~49a8Sxc zJn6$H(6jK-_@@Ko#u$f7VT|!Q&ZL64xBe$m#j%8uax54_vzDkiTI^2Br9Rb1#DyrR z%rSlu_+Y0Z(@BCDte>@a42EtyI0ImzIRp4;7$0!9p20L4o ziv8|&Xz#6sBJK1LMOmq`E_JK&sIM|RxfkLG z*5QXI9aZTdOAj#G@+6zSPzcr%Ry&*Bap%L$et|To9$ro0!XcKE(A24i&ACV zxj0oWbv`ZSO8{$YoJ;ZHTm}$b;J$&5Me#vaocrdvg>CuNig;*5eU16nxYHW4t=92yH;5p8gK!$rfcHmSQaxnWpm@)LIT!QgDOwS?084 zQ&q`Qp6UJ_ojX@>MYI$mtzutkvA=$1k*~<_TnTcqZ5P><;lswJAQ!T^5I|uP3OQUj zl?z4w(1v1vksn^bT}^+~Zpbk!Cn??Pa|4apa6jEkZfRb9o0X-c2Z{ofr_QjmLmTqy zk3o6TjEQD;C^8FHElrQkEDC5*#b$P?SL+e8LK||k)EKAVZf4t3Z#QJ86p(#sCF}|B zDGGmrLh^Ia5_1KEWBpeK99Rp>U#!)Tjq$4P>?}^-5RNes$lwnI)3MoB*^TlOUiJ%gJQaB0EGY_Sh=ef~NejY-i0x>S01Q}yaDa>6elREpG;5Jj!n$?)k z6Wf%w{zUM2LXN=OK8kjX<$k(zik(eu-S z$!$)fv!n}goEf3gTv+l1Xy#lE5OA&mtgSDWE_|W9`s`FY&z)4CC!F}nC!b_Bgy1Rg zFELi8Alb^01F1bl3fNPy2`YjVKtQ^t2vPt6iH9Oc0fdPjK?)#LdITwe5cUXC0HMkw zNI}*u!WzM?kk_7x@tGmcMQu|ugb3olZH}SCW3ds9w>dN9`wg`(pc$ohK4J8!rvAuW zZiefNdGhIxARPv7N9N0CAhJY0vy{AE)A<5Aj)VdDP;EM2^icHWC**??!`zRs@;ML1 z0YP131WF|oM(vQdvo`2WbuUsam0HD6IBZYk-052GV32G0C{oX-cn+N0$BF1;ENoyo z*Mlh~?${g0IX8e1wE2`b*)F|K9JO>>nGfa2ji|Ci>NEKzAge=BU&(4XJNr5|Kq`ey zH!q+1EHy?1-=H1>qNE+d#{FfG8rt0|Fa?~OfCQYI0aez03rdpqN&=f}25`z;1q(C; zva%(S%~FYMme08rtmf`&j1HmdD?l(b(F37L#%4yo%F=EF*u!jk?l{}UPU@Zj1?)&0 z&y3reDo0P>I|;lZSB^7?&0k~TP07_@9puVr`QFL=G0_~9&*_o1s46?`D?MyP7hvnT z0}U#3L!3+7(Wsd!rt0#?rRu!mO5HB9vp5~ZXrW)6pUTJA&+XyDyj!sui z6|z_q^c`j3oUJIQi(o7A4RmHk5O;!7g#Xzz-9QqCc}!NqiGtyGv4=gu4L(Dy20+mg~C+k^vlzrvXNe1;|CFn`X}9`v!YY zC*<3^89HI$4LN%`Z;ot2IjZRh9=6ERcrD}k@au+%yAG4+r4jCTct({h;c=mq$|^J! z8H25hh$dbUp~sGF1;}$BgoJG8btc@)!#W+M?2N_%9IkPLYbU?MwOddN2jp`S^d(3~ z&IV_(8`i7aAm@0N)C}H+mLc~0E=UUwk>SL$9(4yO%6AkP zIZaqXA@qm*$0YbRmGK%JUx3&l^LjsoI1d2Gm2LV?HyFy%`jpu+e-TWyo$I!uWme>S zXi%CH5Eb;eUbBc`|Dt3S`-N@p>EikF?SU)!aDxF0_-y|k7|#dGOk&GC2q8K4Zmv-m zs9EjaXKL(>XL*yY4 zkbUhIJETYHJdTdg%yu3IgS)CIeY8Z1jjIaVd4yXA#sngdqHtLPlc%~y9-zC1qu31< z?t^H|r+VEBa)T#<%svB4R4bpA9XSW2dOs)qc5zlwmU9*g4JBGo3nKxq(l5-#*+p4J z*?eNLi-SeM(!*wvucI*wrMdrx1C)E5qkZAh2<3G zsXEp(N*ek~3zuD93pM-4x}jPOi#qoO|R>ewD$eg4k&GXP2rk zar27PnrACVQ*C52Pt2%2vZ&J_%HGW@!Fdc5{5wQXD$WlT7uX}55&_t5+^)?HZ?GE@ z8Ax%V`(^a#-Aw2jXm7J074neb?yPxHp|X?L19vV#$s>qE%R1mLu~QWn6csdN1&Z?7 zUxNp7i;Dt9MXF5EX2c)31luW+qv-vs(N3m3u$+wxPI{`5Hu@qBmIlhLRKyIMKIRtur$P&y}ST?qgfE2S# zz7m889#{nH$c`?y8cZ{4s=j~1l)VLpJn(5KQB)srxKS|aLyU@=*x9kBf`c`%7~i?n z@+aT9NCAW?9zhBqL_C5NK&bNwQUC!FQ^}A52=yL83LrFi1Sv?~ayKkn0oz#v2*hU4 zZY*@|vAAN~0FcD;!X+23AkM^)Y=KQ<6_$%TT_HrUT!Ybo(<3YlnT0=vg$o{wBPgdTVm4; zbU7dxLv_%_xho)*jTMTip+qscn=pLM6N;+3#tOxYASZ${dB$ovinD2q;#8P(0s2FI zM(5tpm^8+g(I}Y+&W%u<11b;AE(&-2g@ z;eHye(t6};Ty&nrFjJMubR`#uRea-58t*a8%iO~DoWo8Hu9Zd z{f*8K(R&bwi_{sUNzrlwpGoB67!sN`4o8mRwV+Q8$h6mw9i=*SU7p(Ua0ixEIu(P> z3gGU!g0!Hl(lF#Q6BgbUPWu9hMpzJ!n z8w4?%uMF{N@=YQ>5oqM}$pHs$rhIseA&2IL3A|@dh)5 zCTt=gW9*^UB^ny18(%mp2@-u+w!+WP<9%>qEYuOdlX&XBlPTP1E zZ6|*Yo|-|a8DvI29?EA^3t%>4@}4}X-YpJf(NcDcI$I%5?1KIcX5pgi&t ze@s-5hN88W&mZ}XrmWPTzva(KmMO;t6nv2q9tIa)=BnuyZ~4K<0Y=zYac01qLeN*} zHIYw)y(Z}V9`&~K3Uf6@?#G85QlP?8CZP>KA3)%uYP2m0R(9poFD75;u#sz8zATP3 zMksO+ym<#!I)A`tI81@TCi8H)-Dpb=iBssSpa&|08^V7=q7r!xSPpKL8}3sn_+F$l zzQ`XzZTzbHIIpDFQ9hfW9TuWvJY5Y{QWNJkwbr<@$d`DW$693}DLHR|7sHPH37@rW zvqMb4=bNg+7kP^dV#GglX=CN#WG!5!#@y3`j%%zv7@iLdT4Hn!hRQ!p^CNGg!62&_ z-RMp(R|c~)Iumj_&{Lz28*wBAIlJH zDY5VX+s~^K`I}}&dXB}y4gHqQuY_?^V_aGzG(DMl(oNlgq1Bv6yWasVm2V@<#&hM< zxS5FdIS-+XjZ-Q39U%OyaUrxG{Q)8Sv3frE2xUK`)}KjtQ~2kq%=Y~NJT+op(O$h- z_1#pT@>W6QU38Jd&$^l+Q0{2;b0qNs3-3 z_f}7u*OJw($Ev~Ocs+o7K~axQ5t_6=-A>uxR(2seg*qQ5zH~NlW5`j#l4}C+^1Up! zB$@)7C67Yv;df2W!g^DpW$8KWYqsP|dyv8msk#qUxUD)06D-%sa*>Sd9c)8(@_kTw z7pRXQTGq?EgPg2K7wZ*0Ydq}4D>`~%WkuxgD7YIya=RGxaV1_XhDm=B>LFBNi-IHZSb48Oq=$cCXRw1f3nD_8kyn7&5$rhZ zZ@ee%0pA4hjnmH-Em`S%ccMpm`DzCWhwT|WN|+A&I@j=qTn}rU137B&*nsQz;uqC~G)(n;PT1u8}yUQye_+LXhGlV6EGj5^ny5Y|ORWF8qTn>GMmkN9>< zrEFUe_jqn`D#!=QYu&3oM5%;VwYb6Ia?FFud3vb!Dk>ibl>KQs#=`5#eH-om!@TIp z5WkHyKq4>bIq*(NNu(gYjw(V|MafxkV!lJ(4IYG~bMRpzt{lU@eHiv}&#!{krR>_g zu8&2#dTuvcx5EPFc6<55w+CkvzIz_jQs%If@355HSjt~nAGOxFfBY6DkJWPaDLJ3g zEssmJd@9wF`{#Cub7*;BSD+TFQqPd+!yfll|kfC>*wz@r+)J(bo)ejclIThwT%Y%-f1= zC?G8H_=F>;ey8k?N`>TnRNA{)H(c5}&A^J$|KHIaOnV7FQmK5GWKM)e#RvAe-9TbR>?OwKs#_kM1uoE2OPYh#RD!!NYe@4ad$&q_~1 z%^=rA%E6PH)o9C=N;FIFh8#O@!kkRQoD4SrPKpa4B*$%lv2!hXX4F`MJO{6NgNlQb zj!sBg{|TE!{94~2!X(dUwq!ZkS&}ug0f$d=yAq0*QcC#%hgXM`{WD~%w)T*HsYu_y zD}hCrlTz6gX5WZaJA_lmay51QHWr8N1G|dxf{kNC+X*u|EcHBUJtzTC%8>B<%&#W8e$o)O6c;a0FzL;i%^)vdv8{`I%Gf(G9?6f3?eq>` z9MDFC6Y$oorvXM}EMqetKV&nP4)7*0Go|NN&z85h&o?6540&fSi1!Qmo~{L6%0KDb zf!m;zx*hPVmrior<{FQL>xG3_z=)`O=JTg-4-OqZ)4!(~AKrd-J>(TIm&jLz~pcoLoACT8Xo_E#*d zVK*^C@or*RCC?ToqYs>KU<)1@UM~wpX^36!hTx#P19Ckh*q6>2>IN z0yD;#@f!ED5N<`FOVGUvMfX|&dEwjrGIxvb(co&*ls7^mU97m|qi8HY?ycNhG8I!j z`hEmF5=;>!Ra?&)R*&imAR`aba;t`FLkA2<2z(2O7*K!~V=w3pRArHMC5&0_vK3AeKd zsRrKKWuN1AIp*#jeB=i3tT)uOv^02Nz#OZ3%rbZPqAGGbbmilJa8Dmlv+`qAy_+$4 zpE(bgec5}?+^pAn7?z$o zFX0YzGG5rix@byH=PBL+?r2nP<@`ce(BgH$UqW#3MIC+wuzNRH%-!bzI)6bQ(X-9n zFh59qoH2LvX~x_=$kp#~HCpTw5}#6>cQxreA)U{p_n5TUOrIy*`{2&}^%EEoUrE_> zA@d?LEvuEcuH=h>4!#+rzVP`NnD<-+7PTgDzSr*`f^P2S3UfD0kmZ0om0a6xtizhR z7sByTVRbT>1+dDtz#3Hz(}F!-Rk{db2sPL^48(B5TZm1 zlNVYe2n|6z_gp%p2J402&s)mY=fs=u;PL$vm^vLkCaJVII?s}9QxZs?9gKBB`%+{b z65`|na{JLuQ=4W?oiS|=D)Fs7_!#{eLA)BXvjGe1PiR!#-tQ)QwJ!(sE<)WufL}ZYbql(k&CHA+6TY&(@|K+Jd?5caX7Eds+&lb%_X@fS zzsQ&gr&!SkL*cV0eHFj(Q-0@M&ciH^7d@Iwdp|zmhf+p{jh{6LDg0y8uZymmU{iby z!@C8ZS`?d5Oy5Irx2aVqeMO7M*>u4eh7AG_3B{K3SBq{ewkcLUuGFTJtz-Q`>KZr8 zw(01)hANwG2gRn97T4bF`wPC))hs>M`Iz$5*izK~NZ`VuC?h} z(PXNRHS~{V$rX?f{xQsRT?O~vS`vdDLSd%N9>?$;(fkz13DOJWm_I9*=_d;Pn0%&N zg-rivkbA$qis22S?N3o_(?v4gu(bL`1>2+~m*K;(vrQXp=J~GhKU7lc&!@4uXO!EN zBcq;E!?o>I44;=C_rXdweZH7SR9VXQ+%S%%Ez0A5Lv=hyZRiVjtBOqs(#6m@NY{%! zFPOmPt8y5w3Nw6M`W=I@W2EH_selDy-&y?+bFjugT25 zhIwRP{~d2JSOW$PB0y(>I#aNHz+M}F)%clMGpcS-V+Ftq>4Yk-%f_3pjNPBhSP||z zS<2rhFg6CaFpR~eT?x)QIB3%wbytnQ7VjI+lDcOmF=sh2ma;@+xWoYVLX_(!(F$T+ zI>$0Lnbu0X-w0NN@A7lIedSzNi#JLbJGX$bM%pXwnncP}x`=Lu)XzlcPUI8wCBk_h zu$jOvlm6m@O{dQZ=Um}Dn!YaB<5L1?cQn3Z%~Gz5DC}uz_ZI55q3#)x`Afl$p%-W$ zbXgA0nKXz0>;kY8fo(%9!dVB{M8W2h&-fI^_oGVALKfj$gN)6tW^9#*g&A81%&ID+ zSqNM+X+2}${32w{#1oBT!LZo@JC(*}aGpk?3@kiXZT^Iv&J)aA^rdc%lwvbUQUYy`ysZ5ne-W2oYDJdsnuv7?8tl0Y#(&0 z8TOPhyfwryTi`6fQu=4@bLQ&7LzADwUCj+y596G0VfN#IFJwIh_`bl016;mC;CWfk zqI`Ab z9?4>Owau_vBwr$QL&|sC+~cgQ*C2mw@U7e`I&I=RxkaMeG&;8ApQz2sItW-PusOix zKiY=@H;9~mk$jp!S13P~@{0j8uZZSM$;JVrFuOSKq`?n-2hq#vlS6s4Xi5d^)0|y_ z+MBb(fRATSPL;cao=H(-;Zdv}ycyPBJ$No)6&+J~Ft>_+0?Sv?Ks20JMR!Fi(AUQD z=ggA^i(&1P1`nb3q`_AT7%rQ_&?#g%y@p|>ly~QFd6K{{VFrh`JwM2lcFdzENAa5? zts8I_z2uAJmC|KKBj8y4eU4HJ(ab#TFsN0Kd5#Btp|Jq)LvtD6VQU$z@se*X%Dd=f z@F%NcfTv*;wu}f7wDRFxo1U$T3+EZ&TtaNsvLc>~V{6%x=fD$eY6|_7!-KEjQu7+*5MpTeu-G~SIm8YHpap-FHK2M<*Q)_n|=zb zVkgP_Y>G$GGkH!J7srg;Co^>gY`A*xMp$F@;2tS|f__&I9u)W(pr_|1ZO^Nq!|}e8 z0ly~j7SZb0))({I!dRI2D;-Z%-;D9zAlNmOTlMukAN{CG)$Oi)Brlt~5iyu^&%~$m za_B1>yL{45^YZ9j!LFh^fECd95d)dCd(v;@Yys>nb#;S_ngQh>y*nLy}fzxV0I$|rf{bh^fJa+cvu(muhiqQ95g`4gyZ z3UgjX@8mASn`4)0th^>KKTO}%*afvE`IG2R8k2C_lYMRu9x_@hI(WDu`{G4{vg;~$k&B?E) zJdORjZXPgxo098(U0s2vE)zBO$LbQZfu?Be6Vx@*Q5q|lTw*rTY>l;)SKx`ue2uLs zFEN{_Rb!tktH2(~d8HOPrQJgKiM)8tSOrl7BSaqp`!qefcx#mx`0_AN!Co zi`weBho>mJWWR9?bqRJ2S>f&Z$I!hVmbWK=HvLUwAC|wBcP!n|!0psL97o?)7`4<~ zn138i=A#2$LtiTUeE#utj$n%O1iC_D^z4K$<)1)5(%1+7+w&LDD^03hcFF0+B3gbF zV^`9P6Yk7!p?d|phFS_A$X`N_@Btcj`9=ADqm`c4*n#pwYNh8j_L=Ja#!`AwW7k#} z(o#C8vD1S4jb(I5V?Dt_T1J1>*s{V3e5dzc8auVH#9U6+G}Ygx(0*eDW>Z7x}B{M}l2R?~hqVC)1w<+ehE8O&S|%Ii~^03A)3t=5M5%G*%ORJO5PTZzmI- zFEUT3GX%SaR#p5h|8)A4U}}yw(Pva0*2>5Eo9Jqd{kqO9*hDvK>{WkOL5#jG*j4mQ zMJ})hQ)atpT72Pw=l6XfFqDOP`LFt^|gDoJ6M z*-aBQR$ZN2&_mNw82$_h%@gcOT9a2?&_`_=^A}7gNYXZq^_SKZ4A9qbqGr#!&0k-z zohIXghp`%aTEPw)6zm#$vUpCxF8a!`Tz3uL7g}7fhoYQRgYyyps)9k9t1+LwzTi`I zs=_2LT|nCeyD;nYiaU{o^=WKdg&){1jopj73u&Lm9!A}Tbcx1lOYTIr{W*k2H31`MCvG zk~LpsW?fZ&5wKjruAv2mR}_4XzA2c}^Qs}ef1b{7=62U)RZqF5;PZ5^#+s(w4D9W&r|+)iZ3zJSbuK5c?~@yoN7d0q~8j*FUwc6zu=4Xs>TXx?gsW}!Cp65 z%C(fWfMs4tw~f8O;5u3^*y{$%yq>md?9#gZ#*Nggu{S4OYTroPH8wx*;es#GpvErC zEyT&`VvX&~y}#fVx-46^E)wi-f?Y{nr9Ue8It?!55xs6qFTTHEKV71+pZfV!ajnKS)D_a5 zbc@CsC%#zlZTh;#{*Lk8MR#j#TiwBeyXirV-8S)!f_v!)8v72~-A6BL>`MRr1@{k` z+Xv`%sZ%lQ0agn?Px;xNX^ice#@L>Clqf$>`PrTir7*VV!zqmI`A7<5dp?@N*q)E4 zFt#V3{P^c7Kil&M3IWDrcq)bQ7@kgHY^7&X7+dMt6vkHiVG3irJeR`QWmaDAz;l4!>%@=@VB&6uqSCw!6ya3qvthNQ{XE+Krgm%fBWdx zoSMReN+e_Nih(t<+VGt3rjAN@S%lY%#BzhD>AgE^NNf1*bOQ(kw7 z4l2&9FGrgS578lw-4mSw?5`SQt>2`7X^gdgldM+mPg&wE3Tlik@fPI?#?fX@;afCW zFg2pLX}MtgsCmjy%)ii!8hfE&zws_jUdl4}Q9~|c=WFa>xVi9MdRee1i7oLSeQg~W!Xj`i=9(#$gRxs}2jKZ6HqpA&t}-6eSQYgbP8!m#+W4v0&b-vF9#S{i_+3WbWaBNtRPQxIIBSd#HRp0; zS7D72T+d@T509D7Evz*PG#2okTR6oi5ll&m43QEs!kY6_bcr#vuFhDj>(<~-qHajL zI%BP_JKDUUu+Dfaqlf4a&ZzNY&AFO-{88hVg0ThtcqIO=U))%5lmUBVF+h~@omldDqU(f7!PXfP4l|KM&n_P6~YUehO|4%cuv

(2CDY9DPBoT4~3Jkq^$c*Sa-J3s_R~{ZY$)ccLr^o#LxTQ3Gx%w zl2WF;B9vL04rZUzG=<%y|H}J_hdf7_uA_ z_k+XBE9%np@x@&G(`u%uR^fc6)Z?DXq%Vx+awa^tgy}Z}8lt&LPv!Dh?g{Z&X2~d& z%>OOy5X~Q#@v64Jklw#r&V9Xt5t&pn-YXmQ2h^Hk&!Oe#z;Du_39Qx3BIZ|=3ekCf zm?>O~H!L8{q78ngDEj|a=c_SlSfGIAux>uFq@Q{U`MK&9nD+o(l*8X7tCqP_wmn#4 zqSc+E$y8X|q#w%I6`e279AH zv&EiGqU~uB*5@^h#S(Av;ntXWm|{}pWTyWOzGTqd!pURz%4`8k?Bk8@zp?foW!4mA z9~-UhX_!qsGZ0QC6W5rau-}^W&x}@S`q0`6@%iakp(fo@#(LI^=O}t6{3*QMq!$4V zdPB-eekRZ3&;&D#v0HSv*oP^20wHjwSXjX{-6Z~|h~hB`TRqy|F^(yjl2zH$ljkl| z&yPea#q;0jnJGD~iKi!1hH9cHX+1qoWpiEycn%~hg5!xLkwH;Bm^tIhLsZQ9Pi;-{ z8H=95I`xerQ?(uG8&6Bb$dvyUG&E_hSc(5W?oe%8C3dm?L$w{L+eps;hUWy#rb+mt zUXZ^Iy?f5y?Oa=`Z__sgZG+9@b6MRxa|(S)q7gceMgMgKGwOqfrG$*syv zJAWDAw{e?XW!_f11==Qx2LanATnM-we+jqFe6Q{byboX&R{*w6xSpn&@8LO4o%yZ0 zo58cS_D;albM66Llk+g(rRu=aYC-yHijBOy;P>deZD{YJt( zJn0I$3(^dFfbJ=K$heC>J>?1GEc0gnGsa8C=G^B|erDoJkZ{f9H;j{M0`B$8%!^9i zH};vosQM6aqn}6AUi~qoO)j#`XX%QnEOQq<=+8&_>Tn6*Cv|1!mFAwpO7my*+sTD= zrOEUwO{V{heio`V4?>4R+=E^($NZVw7-FbKpQBeFH^DfM9A+g0CHXksvOMYP1ng6VN4zMZs6WpKk zsH;HvrTHGphs+B2#^21f;xo^hSLPSOgZTteXI@uoS=q+L`TGsS2$z&tKQkYys-Plc zchz|7CG*X(Rn|fC(3t(0g+|=o9y0%edz&)jw3>)j2F(kp3h*JcZJThM^-uH9WvzgJ z1ZSPp))}+MwpowSJY>*Su;fN-pLpgzGpoGMGOQV8^?IJHy-cBJQ8obi-WwiXxYi%DZX3JN|19xscfz`~?tQGIqv|^R39Oeb z{$1A2y3@>k(5H|Nne+2|{D;he{9S-+028KDdWrur`s(C6=}PN_@{4`fTFq0g^IvJK zD!s{nv$T4EI36af4Rv4lC#=SacLDOMPgs+S?nC*ui4TGQjfp?>^Qa3Y629cmHrLs2 z`|r>a4wby`KVL>sWqzu-*q&xyRWjY?m^sI;G7sc8+n4FuYb44givNX~8dK6^*O`gp zy?{S2xzzr=@Z2EqD`E{^FK^rT>bCo)6hqp@kWgkmpZC6Tt>LfE3tVe_P_Wkjfbli_ zQMPMg?XtiF#(H?>UB=53X9n&v=9kV5u>8e=m#plPOR&oBM?7agdC5P`{6+9$-(3bj zxtM0g{A&XTF(QuVkB2X{cOf2LB9XHv@R->)c_2_`ez|lRdMN;?!j=Jz_9Qvr({+ZcDOGBo=P_YZlYTNyXbbnXXu;Y|A)x=x9}Glcd;DfVU}b3 z7O=wj05ELuE2ooxdUY%>wd*=6ZoA7t#Z_H}Ko?ceegufp)39uS(kT&5vpGyH}&^Ey1Xb^BAT?)92 zUIT0wcnZB&)F~3Gj84dD7P!e^nK3C3N_n4@Z<6xOQhrp*k4gCnDIb)wfhVRnW>pC! zi_2kw^942w+$1n2a8Terfj0@fS>U4r9~1bBz=HzG$1)9pmcX#UDuLAk=L=jYaFf7J zfrA3~2|Q2WO#*Kf_^80g1U@0~6@do@zABLX(z`%QU|3+4z-ocb0%HO@1@04gp1_+0 z-YW1hflmlLDDYK*mMu0ExKLoH!1Dy&EbuXb2L&1d;TPB}aFf88z(Ilg1l}a@W`U0i zd_^E-v4pU|`2sfy929tyz()nXB9O9$U*LR!gF&X;BydsgnJ9lnAmPoP8?$_QObJVQ zQyz1631v{qHwk=H;FCgsMaq;fy$GByaFf76fj0?!RNyNDset((75IukDijF<=L_5< z@FsXYI29~O(s5(vmoa6Nz(IjG34EoT=`>#C2%ImFCJ05~O%u8NsK8eQQl-=ioG);b zz(IkJPQC~HuLzu9!{to^2L;|F@KJ$_@fVG6r*F^?5r=w=&myWenw{nWGtX+W7Fye_ zPg!5G?y;V=-n2fnR{PHLUGDp`?^WNQeV_Pz{_*~4{^kCpf6)Ik|118F{C+!WpKo7b z-)P@z-(i2>ejHyc`3Udqg#%524S`L8Edf7H9{77>hzCLZCI2y0fQVX%m{NqlKUPd( zye(ga_vR)e!q(tCP=~WaBWkB2UzvsT!W>)*E}8UA+}^xVcNgHH>hA&;PiA;hIm0iN zG5o0Vdw`D#TwnV*%6a2|2>5h0!}Eg-Hx)AHMIkPKr+~}5a~Kv>{si!ix?eN&{}!;j z;`e}$3p~1n%jXun3V765Zd)MI$^>3j%9Jtr48KtRC&1}b-UU2<%13~cYYd#cRPFB~ zHp*YgsLGiRufRx`H9gw-uR z9|D@NJkQm5Koi#Ix3VVynwY0-lq&&E%vTP|Re&ZH{?S zO=FZ@K$G7yM!6plcdz_DIc*0tX$Rf{HfSfHiMPIwLHS%jlLq0R$j1Rq`V_`z(0PC+ z-bXne<%G-_1W0Fw5ux%r+dr zpm7#p)JOt07z3E;m1ZSin^^_87GKSe&`D+u;0ALF;6}3!@Km!NJ~Wli#$QSNIo{6h zF?XB$&5zBWS>t`r`D*(d znmhwOwi>@ZbTX{Cop#IbAB-#M53u$CPSUrTFM*bAFwcwDOnh#|?;)eXz7q6zgx+8u zGGf5D+3y2?U4HMg-!Zn?0W)T2o7-%3H+NoVN5`T>vadU~YhiaRnVdGYV=Aa~Iy$CJ zYrMY$ZB{xvq=^U{-i6o04Bf$kU47_zc_P`*ZG<|a zm!n6MG<{U6BJv1ka-$WoouY~$BjhS7Gtbi6ERXfall^UO9RDB4cq|#0#!@+=v7(~! zY;Jo}tUJ+##-6=|IK0iM#A$P6bPyzk#fk3jMb3`iZYS2Ys;@uc^d=X(PEWJDb)YBS z+n;2OREuGj6(X#!hHz5cO`>gU@4{H;HW>z#^yIRV=*J@uZ?w>Hy{h(j_m*{iJTUGT zBHH_7Zhu?s%y|C-$LUY@yRp7Le9=zVu81XibLu7T={2_AJcv zG;zft1M_rLwZjdqsXVhYxpmqNfUwZnOdUCAx^@oN{&y2GjTR5|c5a$RD+ju}W1G9< zD7LorVy;{dTjh4aow|k)n>%@Ch4-uhxK97Bg-%aj41SlYSgBb@ADQPrRL!LJCC$@k&Pt64rT;LZS+o_=XWiPx zv$+AL-02#Chtr~#ww9HPT2?MRxnptb@)laMrloz|^0gf;Yu2n<(}6D5w5~j{u3Aa$yORC!o~G7Sv^~~65bx+9cz=v~lAVs*o!AWFogU9Zr@K2YHc2*}81Id{ ziB8%AZxBsdyX0fxfa_w}u88%PNl|Dy zLIADmZ6E0Dj3<*@22yc>n!CEFIVnrKi#mCQchUM-qJOdD^16nbB$7;Hle8w+y0Ol9 zOE3E)n)RWVu9jqHtdFte+IUZ&OrhUK!tU;y?leTriO6?wWUIN5_I#=b4BQixcr~kRfJ`3av+ASUCWt z+noWoGd{Al(olu85u#VddPZrI?(j(BGNSzmnTwo^2som)E!N+;ZKT*$ZelAh)Fai5 zqz?&gBdga8^o}I9Z*z7miFfyntXVnGvl(l5gu08JZeG(P=qqApIHQphaEH;jce0N) zZ;iM1u1NF_V8a~Aw5}Kb`)c;ucoza&Ppr2K8`vm(7}@9*-u98+_eQ9_Hs-=rM)r+G z&>0su8d-fu%aK(L$%Uf7FVWEn9f~Z;#{K=GY>)?i$&4G2-=RtbikP zV1wN3B(VdG(inDD>#faoc8^v^)Ks;lBp8Y(u*QpJDjEh1+8-v z%M!g^v?h);u`^DsN#5yJx$Czj`s3|=Oj_@vC_#o2y~%!#7!r9hma_Dpi7$$8i4Ao3 zXOeo;E1ynOndd_MZ_Y&&(vJRtq@YXs`};Cb9!|^7M8DMWC{qYzv?f=?wkA5U7sRP2 zRbuxQ(iRkYxNfbp+}RO#+hbdJfU9_!tlbvtMcSZUofXo#Atn={T(nvN2j_B+{#*lT z+v96uy`Z6iDzJhXaZ4PNZ z+jK5VThNQN>v!a1W1>$!&(@!;4E8$3qCb~AozP%WoVUbyZ)YN&lxhSPm29{6j;QP7 z+*i03I(@sOz$$Fv0m(u@v`9KYni2eZHh1q@o9G9|gW(NIEd(wMOQLmDYE$kdtimBH zB$J9I#}1eh#wrMc0m9?DlodQms+JX4jFl@DG09pyo<#{4Va#!N31RNM866!woL<(F zo3$gqV9nLXB3NuK=2@zi$CCYO`7?!=-%tv48cOh3nkA(5xPN$najd-~2+mJ`o`fW(M)7c8j!ySp!;UQBdg!Fzd zsMkmzV}vGy;&Wmqabc{le*gm6V95A+|MymTQc=?ZRt%MaCVD%&2fE^*=wqiyQOz@m zY`YOe6+SY!QrczE`i4qg6UV~tg<2d-We?Ff+NSE%zLYXyMl@(rfdOID-PIOz_3$!N zB^lrlLRUs2#qHGESBs!!XWTRMI=7n_DTfzTw{Tk=o995!XbjL+QqL`kP7X1$QZfak zEODe-y{z;!raGQGZ(2u35<3ojM&c47B)L0ym!r+`EpVIF0}jd@H{oxtEF=n%=S#xe6cs(U4)A5y{QKf?aG>Y(PwD z>Fso+ppRL4#7%lam_@?v`k33x2%KiL>lj*xYXLstAy~)MpF&E7KaKL5(8aZmF0>D9 zPRid+BJ6;)f=@SMJUQp6pd~a63f6_EtQWMs-|5>SrM1ogn!tvsyD(WKmgBz^8|T%2URUYFi&pY7=oYcwK~5T{5T~!>M9EwvM_lE$@C}Zz z4BwJ4c*zA?5z$mQ(`Vl#!qiZL%G;PcfM40h`q4=bo5u^um?fsD{g&s9u@!JVcb7&m zdrZR!w_^3+uk5K$HW9*1kLQ7{tD1NX@rfRj*d)ElwFhnC{Zkcr#+tjgItY8)dJwV` zJyOel12-M$p`mtQbU6fa-b}o&<808Ic`3oS8<_b-Z-!|z3@fvwY)nfXaADxA80REB zqs~BoDzv41SuYFb^>%`xF zPzn?uO6bNWkV-64op~a+t6SaC=TXEr5A-`6#XA?pJJVCF76~W2m~TSNfNqleGU^Rq zcakwMuOGPamc-TpY*WH7$s?&8(qmZ@-=gor_&nj=ixJPBgwzb$iLNuymw_VzSt7TM z8MO9z%O>a@xik^t(#T4uzkQ$&7hKq#(^T;*2e)Md zxCt9B4SuQynyx_#D(8VTg&kZx(o-d#62sHZd-*^zW3x;dIg^G(i-;z>nVU#rCb%gg zzDy*4Zh_;jbtHr$rIk|OE_|^5JWVPTNQp^m;ik}x`Q!zXiE>BSDqZ2#3cLM+A$IV+ zjf7Gmq)rEdogH_%+gKm9cgN#>qOx}rC3>e2-W5pZ+Vc@)@n_LOJXdjPA#!xA_#P-F zBGi?Y2+&0p(bkA#(AxM;L_xlh#%?Sh%64*l0pe!9Y}BIE1|p(#QQuE$45mmwx=_ap zzBZM+G1{U&HV@!t2U=$Oy}H6>t=;X3&UhPQl)ly#Mn3bY%hHzZI9;pruB(ImKre2G z@rVGXZthF)tsT%zEi_3^d`+1Zq^FHTAcx)|btCf)Y=LQ?LLZ*zN}3McWq*(j#1*6J zA{-4V94+8$l-})etQJ(OI}tSkxsHG*P#1n-L4AFLwI;hM49H16DpDwh+94NXN?6 zV?(YwS0`G^Zu4-D->V%%@n%Ergp$a#)6c!Ao1cEMY6}OF*!EIK0WpcbnIK! zsDeXz7w**6jR>In$A%(hUT|KSl^u4~;^nLvu}qr9IjTtsb0wcKmOOXf(H$NA+Y(7^ z`>D&zq^OsPtKg7H;j!r`l1bKwxKV04GsH{Eon%$}kx+^Y;9=;{)K927dZv~XZzN4? z;#&v0V{Xe%F9X(V2BT8fe$5=5GE$yY^Ne6JBz$X6*3q}U4+m3^gwAmIQxEcyBXb6& z=0mndRpi}Jl~f{x<-@06+=znAJG;6qlYBrI*?juJAUWP6LbVj+fg{!-Z{rl}>f%e( zjAwY*LHV#coC-!h56JZ63cp{?Vag;DxxBcLrt)-+q;~1|7t(yZ+&w;R3|=2Y8Q_&i ztXt{y9;tdg9#1$sl6u5xkuh&N#e{e)ki?);*^I`;j*_iWX5y$4IF(;DckhVpQqzOy zpolH06)Gr8fb&TiUV|K)u%96Zr&XKJz`ZIG2F{FA86foJn+~2UFVN!IsG>$r)Rh*{r(Q(XSe_I_O_N0TWpn=$3R1GvbQSdmJX5nK%|ls!nf68SbCj zL$T*!K|y6aI9Y_}o){FnznuJ*B(`o_p6JmS)Zk|`)Q%9?9be_@HBNj%oW>R>+)R|U zTmt!cRzz#PPiGw-Vk3Fo&W|v9QK3?mG(krZw|OgqmfEZ`;~b~Hs*1&{$9^hg$rC`F zpW|47aX5so>s0i1EJeu6c!+|@9Ueg?gvfMaBWCtdjHllg$TZ^cL`1(hFj{Lb1!2?w z2e$vB6B)jGL*akwD3f*Wyy+bsxD=D&Nriess%)ss$Zzj=bAjXShylN{i+zRiwtaY>K!uaZ3&VsJc;ZZ=qJ9NTZx$OjgI3# zai$^#*}e4^fk{;g;td9og16Y@6J2qUT}l@_Fk~j-@gVXMgm;zMtCtoKe|QxocBcOGy%6;pSaJlTXgY%0HM}#}tRvN1N(Hv+NNVen*!K8Ha!1_L zHr1Y`4u8ZhQ#FF<<@x%lQPVCf)eAXIYw1l6xHwYw#X51#&DU#^ z_2_bIFP{73@&h$&130mIi9iOQ#(EOHX~cVU-_p~EW^8)wMLRJl?-<8=C_AMnI9n(t zT(ZbxKi!1062+;J9+`$v|fc$ zJAT)I-iCiID0OIjAutNHp>3SD;1@@H$lHoiKhfC5c(2^WyVUVaYFS%Klar)H67N$x z(1FG(IV`IizcIXh4t+vtiS6JU&=M)sihg>f2RxSmcPDLQ{_&CsD0<2~|K&>^#~ ziH6lpU~BYcjHD6Ly|EbMxpqrxJVWaIjnLEp+)hRw^RXV?kfkslMK{_Sm0XvW$*t1k z!Ta%$050ozSVHMB%o5|%bJ&5mqNn2j5t^FI*kV|btro_&?i_q3(bE*nLKx+ps7s=p z#CzCbu~`_p@@#pw4}$}@Z8E+d*b=)3%Dwo@>0#ZI(Yz9ru*?dNsE0PAzg?gVm&8)o zr@BzbQauT@dL6Ksv|~N{MV|7NF#7iNA1TiTXHQCw(rFt1A5zB-U<5plM#yDJxY{M7 zChcKO@L&i3cWHkpj^F+*4*t zUgTcrQcHH^42CfW>F}eLD$gJXUS7It-nK$Z)^z}LqBI;m2>#Fdu|)PC4jF3Mj;3X% zPO883NQMW@xd`d&@I@iDRkdTj)?sVnEoq+2jOv9w^*?i}K*V7))5F8iHPf#%{SN=5 zm;a}KN79?aK@3*nIl}{0XvAxQgJlfAUSMKPcutgkI9%_9UwXA(C_EmcZiR)yv_d}D zVKua1BUiRz{S&e>y;Yn!K9wLSEqD`RkKlP5zLl`9D$KJ_D}UxKnX&&@8#%B*7kcE_ zz&a|s9C=J^v2O6DgE7zi4rrz5%8p6Ix&+oWhxIOmYh^=ki~irw>Ts{&K0T{&Nbdrs zVq<26YdT_tV|_SY{$KyGKHkRftul_;>{rSK6^yEnCt+sGHvIIAe)$=KpSaa;*^}tb{Jvj!r6};(HI8t-3 zrMEJN&kK9*P;c_qD_e|Psg=v~&C#0upGU-_;B-alFo5x?nc?I$4=aJPJ?*F_GaB$J z=@ovw5O?UK~bgbeP$SIIYJ2@_-(?cXngBP^GAj%P#l{ZC|#j@c!W8<#2 z{|D7spqC&1H%g~fOXs#U^K|^(iX^_RI5ZJpT0OF+6EKOMY35;qqsXA}hvc>{gjolm zFHeUT_Si(c;5lbJaw0Q4O=8DifmWPVs>CQmyD94Ip+?zw#L!{n&46yx@qJ4EdlclK zgl}h3(MoKK9Y}@N;By1M2TR2&ZyZ9KunpSsk~$XO&OAzImdEOBk+Qv7%JE8={Eqbb z%X2KxVMlX1J`tQLR^m-|q!UIk^16)k2KhPLrYa5xo_sHdXZvnN&|(|W@oO*#z4+&G zrM-aXItDs>6wi^jJTh$Cc%<`zw-s{$;swMK$YF=~W>?8fZ;2!OPv_&DdGmR#4s#Qh z(<(0`CE07o9^_(Cs*P+HIH_*5gf$GVIKHJl0H_i+Xf|Vbknp4qO=6heJAqOCP;d86 z6r;*NVWEUDKI3?j+aO6D9EN+dI%#<0ZQ_yCtOYlRKDM6O+zW5~ zqqiEWInO75Pndh8f^|rGmf?35zWcqBX!T0ib)<%P!USD7lyTz3bIJaeP9D5bs-%@M z4(&3QGnYdvwW;%1hU$_jBQw~gHB{RPTO0p(Dd^09Nv0Z_^VY)}agSYyI=mj(ZZ16C z(H@BFDW;SI>MQ`j5LvLzS|Z+asW0Jc9L#Lh$=TlfEK?@HjJ zs=ohwZ&n5v;IW7bIHD%T_69ToK{gjiaRUTRGlUUQ5Cufh%o$A6GSb}31#K}kQ!}^J zOifG6Y%^1HUveq8EHzXA-}Bx)W(J|`|Nr&x|NH#@qrBxV=bn4+Ip>~p-h21{DYmWZ z!{dQg6Kj|J%WbtK2sA1-dj2_v;KXPf-`eC;;vLz9CE7~(5KW}9M$If+O+%e=1)1u9 zk!luGODprXtaA|Tl^CgyRIse%L&*)MiKHkNSr~y*s0OlL$gZP_$%KET{vUIPNDD*i3M4W5~Dk|CoB4vfK`m83utPRf-KYnsrzJo*k*odph%c$ zz$7Lo;ieu)*im4G$W4L79N<(4IMiE50iZlm#{+RDWmFf_+6)4sD+N4S0utL(@~z~F zns6XW$T*dYkR_!`mL1VJPo#qs*p#iUXNxh|sv1T%8D2qTSY7wO*RhY-HrO7pSwS_hvtx`};o{(+a zMiw8nPt+cU{!_msKa9qgC`txWfv7x5@j1fzYi&vvdu>CER3E8knGUu2rgoc*d0t)d zNiv-!4Jc~`GUaOr2Wrm&_Ok}fE3&}Y2wPhSh+ws$NJ9e66W<$c+DB{U!IGKTW>m}C z(AE;_m)2MRkLr>2N{$vmEQ1IUhVp!3KTq2t&5{TefSn<3uo#LVD7Lw)?%olL%J#bh z&fan#Lq%sv5@dE139KBhw7ET!q9KuXjHS}x4+8c?y}DF|q;#Z~$cjh>quP35>o1co z3xO8$ukUb6w}i-^OCZa{2od1{1J4rc1fKRCibF=aqjciAwDDr z#b=>c_DV+Xk&P2OC`5GD~=@aQp=Ed_kE+w3p;?p3N=H6D zza|&J7SNVWRr+^P|1vv0~rtI$ljae@<;rs z%P(mNGDjrkMXzVb9vyjKk+SzS;$PX8J&V}FdIlJ&b}fptvlMV*TBAz8eiNnF6&-$Ucee2}tvWVF}DRb|74ViZr}=~O=`UPeXgmr>wZn)Rua!#he&<>)y@ z6PW1QQ~D@aETgQ7TM~~jk$dvtWY9Za1vr;eTSjRVB_DtShSJkDdT4APQ6cxr8es^J zM{TmY@gX|e#wr{lClNQ<9IiM}m;$GmUYpe2f((yo`N#QGE&?i>ez(syzIpxDGfCU@ zs(_BsquVkH1H&o}EUQ)F;NeY|dNmHb`6py?YH!}WnAIx{SWOuBekyN1n$h)O1Sg+T+X_UN|H{X%fbKV}Qtk%t)W$88m)uM4!=vX}|h z&rz12FYnHBa-)iDbtRbo3TeFJw6=%7<#2dFJ-C4g1xIF()tl86Ko$>OKdfUM6_+j2^z`JwlEXN`*Q!-w+y^?VLdi0@DER2qimEz$le zw1|=Ou*7N6IX_%-N*&9GIs=wW2L;1mn9xEZVddwiWH97nlO2g@7)XEx{Q$d2O<+?+ zhVZbYX*CLd1Yg9D010q00t;1hbS4rNi4{hOfHOq~vSb22z&UADdcHp>$!Wx)@z<+# z97amK^VjPG-4zOO(;Hj>8{j|^BB@ABPOVd*Ak{!Iy&iqTfV+FL;!yDYRUos!3i}HI ze-v}VJ{%IC>40#Bx5qeOp))8!D-5ER(}H`E2Hq00oQP$`QNp^tdfq&RdS{*@k)()j zECu3?`9&9v8t?(eJe|+c5V1Tg6<`yN&k-p#P7h!lZ=Qw!-WXvC3;Ux;XA9&-s}-AB zpwMZw9Pad5g#v_^lW7nXS{LANULcAZdT#*a1q!X326TYv;D#zH2&8#|M#G9yBeB08 z?5D@ptSsv<54%#sg60y-Yn>r17&-Gw-n>jl{O)0y=#Ft^6nbz34J9N=qBdVd9reVX zuj1HF(IL~Dx4eiXHBrtV`@}OI=5-(di<2IrZ=T8bkWj=D$Vj!!qZ4mgK#UScheRDv zvyumh@j1kVT9rnj*Gjw@E%J_Eu!iT&bAiY%l+o*Hcs6;M_wccNtd{r1jre~b$7f?a zti=dT^CnOQ1tBr6#I=LzpR2}6tf&PGXi46*dTKjXr%^!HtF=!F!ww1Hpkh zhPEXK=P}6$Qus`oBYMs|bc?1o7MU7@T zTB9&zl}2I<5<%EJEGIP#)GdBK53sqYWkHloj;O8Hi6_!Ru_T^atxlsvE*Ka?ZQ#K8 zYSP@I+JWjP6}g&bodZxxbn~8g+$bKm&=?$5*GwtS1YJ9_^9kLKd%V!G|G)MK813 zyR;NNq1P43HkPeos$&a1OK(%yY#Zs(oAiu83NK5}Il-WJX~;E{-m4<(P~QdzBh!YV z*Mh?eC_kaTGt{^)!kNk1A?9Z@_ zLd}OL)E><_HK)d$fvJ#Am|B!--fW@6EKaRO8u=3_EI8530uz!iqRdT5N|17OVvabC zBhjQ(V>-b_HvTg3mqNwO8q_A=LOQF&R;F4V4%zd-FNSOj}kiK@IWTrhm& zM>b6eW>H{-OONJs>Cs$6-XQSO;!eVf5@>=K6L8@KSiWKwLG?v@WWG++5)v7(YOtG) zm@Ap#m{+yZmDqXn0xc)@&%6MD6r8(OG=mwm1<){QVa;QB#m4Bu&7g&CM8=}ze8SCx zm*NgfSDe!^P(%VG6k(D<9~kNbdIu{FQ@+0++JJ>)UWblR0~nkiylikO!|c{SsJ!shLIS3z>QfpP$YNCC)% zV(`l73c$$uhG_>VWXIwXlr?~|Ipmg!!3NxdG~^z^W}+quGZ;|HAaEZJ7_A_N(*#Le zC!WCwNYm3bv4B!bg)q)Y)KawsYmN>Z^~uy!p^*6y<(lY_O@|CRq@b3cmc_n=^b24a z7F+B1(0W{0Afsk^GORF(1u|6neI9eo&;n9g7u zK_)%XkSDK`Twy2@_cJIlU_A*#ShtQDhEZ6b%1|mTwI-%^8;MVQ4fuGO7Ar0_U}0hd z7Kbq4bAMXw9IFbNN)gy}VHr)EFk_p@FuX*T$})`zSj}puA=Yp6}4*f7@T|Z5!&n>Dpksx4%lUD~A{BvBWaI#TOTf6gS;4nZoi43&jfe zTQG(M`>Ov(uQ}{!CwA9N+e!7nQ&~quNo*M=s*ZFjXQqS0Pbxq7fh>Z;Fus^8rUBw) zazw1Z$%@vv>WvTHYTL;J@Isch z0^Bm`Uu(R=1TDdQ2p^HfR|NF35XJlH^D3w@ylDFG;Bhjbz9;aP``ZCMD1{eDJ}G?z zZKIRTm->V6xY2I`vw;nsqu)jJc64#6ecEe}MvR{9&;x6FUepaoq9y|@Y_5L&4@|9( zEm0m59^iFF-Fy)ejSRi{NIjBXK4UO4#EsN$cWXM0I<+g)f$si$?S~-P$BNG>=mR@? z;ik;4Hza>@e;7PqCR&j*YAaitVzucNi;u%ta2LJ8WB=vstL0Run`D~$^rSu!j}T$VqlG_sHwMx~T`!IyZ>oP3Xd!&?LJrm$*!g3=8M6o?I%M+ol*{{Qbkhyqt( z%c8r3qyK~Y{Qq68p+FGr5z29lQ0eWbc6xMD%A}jFtcI(u^mav(6UVYfXGC~Z!FmPP zNW}6O%6Ink9gKZNV#32mjT#j;5^L>=Dl!bylF?siOhpu)UYQx)LJ5Sp z-e0J+RH6{jz}48s7!hd{#9v?BMhk6)Xk%1sA@Z@lg5_BmRp8w@$=FzENZ_=dymdu> zLmJk)#3Hy@In(Ga=qXds zYR$vefT2bME%a@`!gW}IcUZn59lNcVN`y)_(4L}r`lzU6-7xs9j;my`v+jks;|JSn z_XI?}+bcb(DDc{vkJQSc3-4Bz^++DKyLxkzZnwD+kF2?p{N049DZl^VHfPK$m*yXP z^EG`tzYe}5t46=kpx|Dr@9U>F_v?1A>d}lbJ+2=3^|R?e%&RzftYYTD*^&436Fvys zmg^Jp+R>oKtKwE%ob%PSZA$ka;!--^Z8F%jeSDvJ1s?_)T?P(Y+Rwx`U7h<;pl{2| z=YIc+iR&Ep*2YP_`zycqY|vtu-|-G^-upHjc_XVlshAmDIq$2}+mBs+VP;m>AGOm0 zn|>Y`Jl7@ZT+)o0b7x$+t3DLJ<%w4_Vhw995Baw9m|ZK(7lc=iU3)z~Gfn5z`uUNq zzA9Kb$F0Y?jw~5o7bAwDn9xRs$Fj;+ zLQA2Ad@rz*8d|{>=avq4glEqf5H&Cc%e)`iJRxD~(?_xwt$k|lyT5#BymzU|upYna zPMkSsS^3CwOOD@Nd-z7_&&-`xji)sBZhvHGuNlD~y&Y{i7@MEshzLaoQEjVxV>GJ)REtyXDcem%m%GZAXdD4~JasV2+C z;-9D7yi>aJy&tw6sw!UY+`Yxm8&4iMI&$t{%dO=ferewE(MQo!w*R_kVd25D+lS`d z>b~O@-M%MZy4CQ)i8mH~boJ$?=Rzx5>hqSu10FZsg8%_wWD3ZlO~3HWbuM zNjbT9loVECAVd}BkXdlYeUamQ{Wd8JqnaOWbEAu<%o?{Oi8vUDzqSRi=kq7Vbt zyEBy-9x-4w(K09>Lx+Olg<+wo!}7y|k`h~mOSf4CC1sR2D9oBbmohBHzW~;s>b!Na zUY+mVA9%Xw#O24n=pLOi{q3k1g{9q&_EvuVOK3uDs;YeVOI=P27bko+{lICd=ua{=1JD(5VTTuDC!bS7VJEr_Esyr_J(yn}eY4XR<6(4=q5;rxkdh!R_ zyD2RK-#46apC1^Q_EvV!y-^+?$1mQOJmST+75&ezzLtDrZL%)@gQ0VdEc$8Wpha%l zsc&v**M7tJQ`fFH8q;}9GmpGpaRX*mct+gp>9ug+kJr}EZ`JAj`#D!Tn)8}<-x43) z?D&oWjiT2zT{+0PL~@Brs&QCYYA@1Bj6bY3O93Y1#mp!Hf!f9n48X}?{%{pOI3`){A?vNiQ{-cIYq znZ~NlUA*hj_R6}Z7Yj?<-<}b3#!>5O%(b+hCpg5vg@ejd2p(#urzWMalWrwJUqM$Y z-Gxq6&Y+AJ;)Hf;7t!E&*T{0Lf)j#;R9mQ+07(ao8|ZS$J}f zbRn7GG*QM1F+x=JW7VxEMc8RmscdczRSK8H3Q|QvMYAPjDmhV9r)6?`KyR=xNN6wL z3!ELiGHcs^2CqzLUQ?f)BpV!}I<`khFc9h7=QmzI z_WZl?Yfo)w-hF%2;oZX4xf@Ic_m8wr$(%i+lWzT-a8s)>cS4WsZ@KNvdmCF%Ff3g6$q{r~DhkccD=c(YYn_Zc3UOldyUwLMD zc9YizY7EH>*P9N9wsem1Z#BJdh<`V?_?Lby{$cm5^xNy*w=DT(aoKx=K7X6HbUc4I z@}f&8uh4u$3sc+CmuCO`uJIk{>k}|0Ke6iTu&1BYYHTtjJG%zcE#+D~eFA8WL;n8yFmY&m>?q9gD z#o7Uuw|w3F0}O)xPR`g#PHRu!T{3uqU&w-OC8y7ftUlYOS=FBBFE?_@`}n)0#bej? zQgn$~UDd2hm)sM9Guw_mP%%yC<=Zpl+`aAmRloS09Np9<-~YN(SiUdFcVx=;ioV)? zo2O<@z4=Y~w3x_FJxb^HyD{F1*Pky`g?y~R?Tl{i+^uZSgxbNtY89Oc3*y+>Z z?`W3kPOsX|7Ef!`?9_m$BfGWzJFlIPcr}b^>$QnrUh#6Teb2d#{cd2Z*Pju#HeNTi zpdt2=(Yu6f`Jx0?MhCxFl~4Nlla;g=8VII=(t? zQoBFbfA&0D!=j=h93d+%C_OVRb8)b=y|dy zv-`PU3opBOD9;*l?RfUkrpr^mdAe=4t@qcD%t-KkEGyq*Uw7`zy`K;NKC;1)A2-}I zIW*mCcnpI;8TAHS{N_gS;*qENtQ{QSbykcchl3~ey zmqNwVuKP+gGk@q?6{CEA$>OJ*e3~2Mz4ROJ#!Gv3j#zeMTVCfcmp4i879o`GDBdu- zazVfQoi+~*^q=f}tMT&IZ~i{@m!soNQ>PlUj9)zVW9P;DKYih?D}KJ&yVRrhc6qhu zs;=6{$GmjvwO*&Hsy=(<%)8&6joR_nPrEJi+YDWno%6VE&U;;w)@LsGVBQbIi~8Iu zdemin!>0zgyfV2^c)OR=G@r)zgBKk6!mxMB#h_;*su~_2n-Upt&~)paJ+~%!%_tw2 z_eIs`AG8^Fzr>ifXyMj?!tl3Va#8oVGqvT~@;x`s9o*Ua)YRviPRhBrEwk)o(@_fD z;KI#k_AEQMzfX%xPyg6aUomL#`M`Y}ugsm8HrpfC>G?0lZwU(Wyfb8P#)~ia+qc6s zSH1A_lqbGf*LFsy#HTe!_y3lB<^BAe`{PniY!=4#GoL=^6WwL0u~G>~RymAgS-~>> zAGW!<2Ymutu%vpp;BFTjaWRtP*RUp_;iNFS*kvmbq_D+SoJH&0cJD1TvsF|Y;dJ)v zJ7;zExjwF+=gzqsqHv85e*D@w`w0%ty|NMy*OqMg_}l@_n_qWy{rK$Ot|y;=IsNuh zW!r7;k35}y#y9k_?fKoRiaw}%ef?{y`G+c_=H!R5T&oLd@88L4IrYMtedqIDI=t`Y zyi3z7c6R^ag!fOMcD^+0;=R3}9z5*Vv0GIGRjk{<=C8vlTC(eH{{cbk&PMcEv$%cr z6C=(Az0*9f=c(pP3a?LI7yNb6JH0kMJ~e3bCttWdlQcK{NcG@rBc7R9HDt`MAKXcp z_1+I7I}P(R^?CHA-s^LJ|7~)Twp073jn9r4d9CO>L&@BoFCAYnYqz@V(zx(zJ1(<_ zXLj?oG)n*ab@!54v*vFeHN$OU==t66&UiM$;H+c^E=pgqIR8{>z_+K{%^bczWN{^z zEL3vwHtMO3m7IX25RrqH{a=kKJs1nK0+Bm*XylkrZ)Z3sNAC$B#-`r5G(F0aTg z$n;5{vR{uiJ22#y)9Eh!igHDnF(iA+{DCR$gS-Add(W(Vzb>CgoV~s=Y{$l;k~#kc D1$sm2 literal 0 HcmV?d00001 diff --git a/build.fsx b/build.fsx index 648564c..1cdab8d 100644 --- a/build.fsx +++ b/build.fsx @@ -1,5 +1,5 @@ // include Fake libs -#r "./packages/build/FAKE/tools/FakeLib.dll" +#r "packages/build/FAKE/tools/FakeLib.dll" #r "System.IO.Compression.FileSystem" open System @@ -40,7 +40,7 @@ Target "Clean" (fun _ -> // NpmFilePath = yarn // }) // projects -// |> Seq.iter (fun s -> +// |> Seq.iter (fun s -> // let dir = IO.Path.GetDirectoryName s // runDotnet dir "restore" // ) @@ -66,7 +66,7 @@ Target "Meta" (fun _ -> "https://raw.githubusercontent.com/prolucid/fable-react-toolbox/master/LICENSE" "https://github.com/Prolucid/fable-react-toolbox.git" "material;design;react;fsharp;fable" - "Justin Sacks" + "Justin Sacks" sprintf "%s" (string release.SemVer) "" ""] @@ -139,7 +139,7 @@ Target "Publish" DoNothing "Package" "PublishNuget" "Release" ] - - + + // start build RunTargetOrDefault "Build" diff --git a/paket.dependencies b/paket.dependencies index f32adfd..edab4f1 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -1,4 +1,5 @@ source https://www.nuget.org/api/v2 +storage:none nuget FSharp.Core nuget Fable.Core diff --git a/paket.lock b/paket.lock index 94df0e3..c4651e8 100644 --- a/paket.lock +++ b/paket.lock @@ -1,6 +1,7 @@ +STORAGE: NONE NUGET remote: https://www.nuget.org/api/v2 - Fable.Core (1.3.11) + Fable.Core (1.3.12) FSharp.Core (>= 4.2.3) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 Fable.Import.Browser (1.1.1) From cee4f1cee29c7a082b7215acfb17a84300c352ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1cs=20=C3=81kos?= Date: Fri, 23 Mar 2018 16:50:23 +0100 Subject: [PATCH 14/22] Autocomplete fixes --- src/Fable.Helpers.ReactToolbox.fs | 70 +++++++++++++++++++++++++++---- 1 file changed, 62 insertions(+), 8 deletions(-) diff --git a/src/Fable.Helpers.ReactToolbox.fs b/src/Fable.Helpers.ReactToolbox.fs index e8db70a..e2af287 100644 --- a/src/Fable.Helpers.ReactToolbox.fs +++ b/src/Fable.Helpers.ReactToolbox.fs @@ -74,33 +74,87 @@ let inline appBar b c = rtEl AppBar b c type AutocompleteTheme = + /// Used for a suggestion when it's active. | Active of string + /// Used for the root element. | Autocomplete of string + /// Used when the input is focused. | Focus of string + /// Used to style the Input component. | Input of string - | Label of string + /// Used to style each suggestion. | Suggestion of string + /// Used to style the suggestions container. | Suggestions of string + /// Used for the suggestions when it's opening to the top. | Up of string + /// Classname used for a single value. | Value of string + /// Classname used for the values container. | Values of string +[] +type AutocompleteDirection = | Auto | Up | Down + +[] +type SelectedPosition = | Above | Below | None + +[] +type SuggestionMatch = | Start | Anywhere | Word + type AutocompleteProps = + /// Determines if user can create a new option with the current typed value. + /// default: `false` | AllowCreate of bool - | Direction of (* TODO StringEnum auto | up | down *) string + /// Determines the opening direction. It can be auto, up or down. + /// default: `auto` + | Direction of AutocompleteDirection + /// If true, component will be disabled. + /// default: `false` | Disabled of bool - | Error of string - | Label of string + /// Sets the error string for the internal input element. + | Error of U2 + /// Whether component should keep focus after value change. + /// default: `false` + | KeepFocusOnChange of bool + /// The text string to use for the floating label element. + | Label of U2 + /// If true, component can hold multiple values. + /// default: `true` | Multiple of bool - | OnChange of Function - | SelectedPosition of (* TODO StringEnum above | below *) string + /// Callback function that is fired when component is blurred. + /// The first argument is event + /// The second argument is the currently selected value in the dropdown + | OnBlur of ((obj * string) -> unit) + /// Callback function that is fired when the components's value changes. + /// First argument is the current value of the autocomplete + /// Second argument is the event + | OnChange of ((U2 * obj) -> unit) + /// Callback function that is fired when component is focused. + /// The argument is event + | OnFocus of (obj -> unit) + /// Callback function that is fired when the components's query input value changes. + /// First argument is the typed text + /// Second argument is event + | OnQueryChange of ((string * obj) -> unit) + /// Determines if the selected list is shown above or below input. It can be above or below. + /// default: `above` + | SelectedPosition of SelectedPosition + /// Determines if the selected list is shown if the `value` keys don't exist in the source. Only works if passing the `value` prop as an Object. + /// default: `false` + | ShowSelectedWhenNotInSource of bool /// If true, the list of suggestions will not be filtered when a value is selected, until the query is modified. /// default: `false` | ShowSuggestionsWhenValueIsSet of bool + /// Object of key/values or array representing all items suggested. | Source of obj - | SuggestionMatch of (* TODO StringEnum start | anywhere | word *) string + /// Determines how suggestions are supplied. + /// default: `start` + | SuggestionMatch of SuggestionMatch | Theme of AutocompleteTheme - | Value of obj + /// Value or array of values currently selected component. + /// Either the key of the selected element (as string), or an array of string, if multiple selection is enabled + | Value of U2 interface IReactToolboxProp let Autocomplete = importDefault> "react-toolbox/lib/autocomplete" let inline autocomplete b c = rtEl Autocomplete b c From d4aa9c214dbb3765257da3b08681be699c7705fa Mon Sep 17 00:00:00 2001 From: Justin Sacks Date: Fri, 23 Mar 2018 16:15:02 -0400 Subject: [PATCH 15/22] Bump version to 2.1.1 --- RELEASE_NOTES.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 5a59403..4d88c71 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,8 @@ +### 2.1.1 + +* Fix Typo in AutocompleteProps.ShowSuggestionsWhenValueIsSet +* Removed paket storage + ### 2.1.0 * Release version targeting Fable.React 2.1.0 From c0c13c06a826bfc04a1d0d93dbed336a51c29f77 Mon Sep 17 00:00:00 2001 From: Justin Sacks Date: Fri, 23 Mar 2018 16:16:37 -0400 Subject: [PATCH 16/22] Updating release notes --- RELEASE_NOTES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 4d88c71..c9c9459 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,6 @@ ### 2.1.1 -* Fix Typo in AutocompleteProps.ShowSuggestionsWhenValueIsSet +* AutocompleteProps fixes * Removed paket storage ### 2.1.0 From b50e44f43e965f4a13d669e3086f5a1af0e15ca5 Mon Sep 17 00:00:00 2001 From: Justin Sacks Date: Tue, 1 May 2018 12:53:52 -0400 Subject: [PATCH 17/22] Bump version to 2.1.2 --- RELEASE_NOTES.md | 4 ++++ src/Fable.Helpers.ReactToolbox.fs | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index c9c9459..178ad69 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,7 @@ +### 2.1.2 + +* Fixing RadioButton and RadioGroup import statements + ### 2.1.1 * AutocompleteProps fixes diff --git a/src/Fable.Helpers.ReactToolbox.fs b/src/Fable.Helpers.ReactToolbox.fs index e2af287..3c00dc7 100644 --- a/src/Fable.Helpers.ReactToolbox.fs +++ b/src/Fable.Helpers.ReactToolbox.fs @@ -819,7 +819,7 @@ type RadioGroupProps = | OnChange of Function | Value of obj interface IReactToolboxProp -let RadioGroup = importDefault> "react-toolbox/lib/radio" +let RadioGroup = importMember> "react-toolbox/lib/radio" let inline radioGroup b c = rtEl RadioGroup b c type RadioButtonTheme = @@ -842,7 +842,7 @@ type RadioButtonProps = | Theme of RadioButtonTheme | Value of obj interface IReactToolboxProp -let RadioButton = importDefault> "react-toolbox/lib/radio" +let RadioButton = importMember> "react-toolbox/lib/radio" let inline radioButton b c = rtEl RadioButton b c From dc61611f6f9389c5bea9f0983208dd02dc0d7c0a Mon Sep 17 00:00:00 2001 From: Justin Sacks Date: Tue, 1 May 2018 13:48:38 -0400 Subject: [PATCH 18/22] Bump version to 2.1.3 --- RELEASE_NOTES.md | 4 ++++ src/Fable.Helpers.ReactToolbox.fs | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 178ad69..5d0df59 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,7 @@ +### 2.1.3 + +* Renaming SelectedPosition "None" case + ### 2.1.2 * Fixing RadioButton and RadioGroup import statements diff --git a/src/Fable.Helpers.ReactToolbox.fs b/src/Fable.Helpers.ReactToolbox.fs index 3c00dc7..8ed8bf1 100644 --- a/src/Fable.Helpers.ReactToolbox.fs +++ b/src/Fable.Helpers.ReactToolbox.fs @@ -97,7 +97,7 @@ type AutocompleteTheme = type AutocompleteDirection = | Auto | Up | Down [] -type SelectedPosition = | Above | Below | None +type SelectedPosition = | Above | Below | [] None' [] type SuggestionMatch = | Start | Anywhere | Word From 8d46d1f43afb82adff330ae65afde20d3ad66188 Mon Sep 17 00:00:00 2001 From: Justin Sacks Date: Tue, 1 May 2018 14:35:45 -0400 Subject: [PATCH 19/22] Bump version to 2.1.4 --- .paket/Paket.Restore.targets | 13 +++++++------ RELEASE_NOTES.md | 4 ++++ paket.lock | 2 +- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/.paket/Paket.Restore.targets b/.paket/Paket.Restore.targets index e7c1bc0..1a8920f 100644 --- a/.paket/Paket.Restore.targets +++ b/.paket/Paket.Restore.targets @@ -48,16 +48,16 @@ - /usr/bin/shasum $(PaketRestoreCacheFile) | /usr/bin/awk '{ print $1 }' - /usr/bin/shasum $(PaketLockFilePath) | /usr/bin/awk '{ print $1 }' + /usr/bin/shasum "$(PaketRestoreCacheFile)" | /usr/bin/awk '{ print $1 }' + /usr/bin/shasum "$(PaketLockFilePath)" | /usr/bin/awk '{ print $1 }' - + - + @@ -127,6 +127,7 @@ %(PaketReferencesFileLinesInfo.PackageVersion) All + runtime @@ -183,8 +184,8 @@ - - + + = 4.2.3) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 Fable.Import.Browser (1.1.1) From 922094e5f948b0f84755b74dea8f8b49231b184f Mon Sep 17 00:00:00 2001 From: Justin Sacks Date: Thu, 24 May 2018 09:22:11 -0400 Subject: [PATCH 20/22] Fixing tooltip factory --- src/Fable.Helpers.ReactToolbox.fs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Fable.Helpers.ReactToolbox.fs b/src/Fable.Helpers.ReactToolbox.fs index 8ed8bf1..cc604b2 100644 --- a/src/Fable.Helpers.ReactToolbox.fs +++ b/src/Fable.Helpers.ReactToolbox.fs @@ -1050,5 +1050,5 @@ type TooltipProps = | TooltipDelay of float | TooltipHideOnClick of bool interface IReactToolboxProp -let Tooltip = importDefault> "react-toolbox/lib/tooltip" -let inline tooltip b c = rtEl Tooltip b c +let Tooltip : ComponentClass -> ComponentClass = importDefault -> ComponentClass> "react-toolbox/lib/tooltip" +let inline tooltip com b c = rtEl (Tooltip com) b c From 88b7244cb2e8d8e71ebe27566410d68067fc11ae Mon Sep 17 00:00:00 2001 From: Justin Sacks Date: Thu, 24 May 2018 09:27:10 -0400 Subject: [PATCH 21/22] Bump version to 2.1.5 --- RELEASE_NOTES.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 6d1dde4..29dbe57 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,7 @@ +### 2.1.5 + +* Fixing tooltip factory + ### 2.1.4 * Downgrading Fable.Core to 1.3.11 From 9014983af4d4e06c15e3cba7792effd733fdbbed Mon Sep 17 00:00:00 2001 From: Eugene Tolmachev Date: Tue, 23 Oct 2018 14:25:34 -0400 Subject: [PATCH 22/22] fable2 --- .paket/Paket.Restore.targets | 43 +++- RELEASE_NOTES.md | 4 + build.fsx | 2 +- build.sh | 0 paket.dependencies | 2 +- paket.lock | 390 ++++++++++-------------------- src/Fable.Helpers.ReactToolbox.fs | 5 +- src/Fable.ReactToolbox.fsproj | 2 +- 8 files changed, 171 insertions(+), 277 deletions(-) mode change 100644 => 100755 build.sh diff --git a/.paket/Paket.Restore.targets b/.paket/Paket.Restore.targets index 1a8920f..305e736 100644 --- a/.paket/Paket.Restore.targets +++ b/.paket/Paket.Restore.targets @@ -43,7 +43,7 @@ true - $(NoWarn);NU1603 + $(NoWarn);NU1603;NU1604;NU1605;NU1608 @@ -60,6 +60,9 @@ + + + $([System.IO.File]::ReadAllText('$(PaketRestoreCacheFile)')) @@ -69,11 +72,22 @@ true + + true + + + + + + + + + $(MSBuildProjectDirectory)\obj\$(MSBuildProjectFile).paket.references.cached @@ -82,7 +96,9 @@ $(MSBuildProjectDirectory)\$(MSBuildProjectName).paket.references $(MSBuildProjectDirectory)\paket.references - $(MSBuildProjectDirectory)\obj\$(MSBuildProjectFile).$(TargetFramework).paket.resolved + + false + true true references-file-or-cache-not-found @@ -101,33 +117,40 @@ - + true - target-framework '$(TargetFramework)' + target-framework '$(TargetFramework)' or '$(TargetFrameworks)' files @(PaketResolvedFilePaths) - + + - + + false + true + + - + - + $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[0]) $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[1]) $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[4]) + $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[5]) %(PaketReferencesFileLinesInfo.PackageVersion) - All - runtime + All + runtime + true diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 29dbe57..c41a68a 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,7 @@ +### 3.0.0-beta-1 + +* Fable2 release + ### 2.1.5 * Fixing tooltip factory diff --git a/build.fsx b/build.fsx index 1cdab8d..dcfe046 100644 --- a/build.fsx +++ b/build.fsx @@ -16,7 +16,7 @@ let yarn = ProcessHelper.tryFindFileOnPath (if isWindows then "yarn.cmd" else "y let projects = !! "src/**.fsproj" -let dotnetcliVersion = "2.1.100" +let dotnetcliVersion = "2.1.402" let mutable dotnetExePath = "dotnet" let runDotnet workingDir = diff --git a/build.sh b/build.sh old mode 100644 new mode 100755 diff --git a/paket.dependencies b/paket.dependencies index edab4f1..f3ecfbb 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -4,7 +4,7 @@ storage:none nuget FSharp.Core nuget Fable.Core nuget Fable.Import.Browser -nuget Fable.React 2.1.0 +nuget Fable.React group Build framework: net46 diff --git a/paket.lock b/paket.lock index bde2fe5..4cb35f2 100644 --- a/paket.lock +++ b/paket.lock @@ -1,17 +1,15 @@ STORAGE: NONE NUGET remote: https://www.nuget.org/api/v2 - Fable.Core (1.3.11) - FSharp.Core (>= 4.2.3) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fable.Import.Browser (1.1.1) - Fable.Core (>= 1.3.7) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.2.3) - restriction: >= netstandard1.6 - Fable.React (2.1) - Fable.Core (>= 1.3.7) - restriction: >= netstandard1.6 - Fable.Import.Browser (>= 0.1) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.2.3) - restriction: >= netstandard1.6 - FSharp.Core (4.3.4) + Fable.Core (2.0) + FSharp.Core (>= 4.5.2) - restriction: >= netstandard2.0 + Fable.Import.Browser (1.3) + Fable.Core (>= 1.3.17) - restriction: >= netstandard1.6 + Fable.React (4.1.1) + Fable.Core (>= 2.0) - restriction: >= netstandard2.0 + Fable.Import.Browser (>= 1.3) - restriction: >= netstandard2.0 + FSharp.Core (>= 4.5.2) - restriction: >= netstandard2.0 + FSharp.Core (4.5.2) System.Collections (>= 4.0.11) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) System.Console (>= 4.0) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) System.Diagnostics.Debug (>= 4.0.11) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) @@ -35,103 +33,53 @@ NUGET System.Threading.Thread (>= 4.0) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) System.Threading.ThreadPool (>= 4.0.10) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) System.Threading.Timer (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - Microsoft.NETCore.Platforms (1.1) - restriction: >= netstandard1.6 - Microsoft.NETCore.Targets (1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) - Microsoft.Win32.Primitives (4.3) - restriction: >= netstandard1.6 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - NETStandard.Library (1.6.1) - restriction: >= netstandard1.6 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: >= netstandard1.0 - Microsoft.Win32.Primitives (>= 4.3) - restriction: >= netstandard1.3 - System.AppContext (>= 4.3) - restriction: >= netstandard1.3 - System.Collections (>= 4.3) - restriction: >= netstandard1.0 - System.Collections.Concurrent (>= 4.3) - restriction: >= netstandard1.1 - System.Console (>= 4.3) - restriction: >= netstandard1.3 - System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard1.0 - System.Diagnostics.Tools (>= 4.3) - restriction: >= netstandard1.0 - System.Diagnostics.Tracing (>= 4.3) - restriction: >= netstandard1.1 - System.Globalization (>= 4.3) - restriction: >= netstandard1.0 - System.Globalization.Calendars (>= 4.3) - restriction: >= netstandard1.3 - System.IO (>= 4.3) - restriction: >= netstandard1.0 - System.IO.Compression (>= 4.3) - restriction: >= netstandard1.1 - System.IO.Compression.ZipFile (>= 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.0 - System.Linq.Expressions (>= 4.3) - restriction: >= netstandard1.0 - System.Net.Http (>= 4.3) - restriction: >= netstandard1.1 - System.Net.Primitives (>= 4.3) - restriction: >= netstandard1.0 - System.Net.Sockets (>= 4.3) - restriction: >= netstandard1.3 - System.ObjectModel (>= 4.3) - restriction: >= netstandard1.0 - System.Reflection (>= 4.3) - restriction: >= netstandard1.0 - System.Reflection.Extensions (>= 4.3) - restriction: >= netstandard1.0 - System.Reflection.Primitives (>= 4.3) - restriction: >= netstandard1.0 - System.Resources.ResourceManager (>= 4.3) - restriction: >= netstandard1.0 - System.Runtime (>= 4.3) - restriction: >= netstandard1.0 - System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard1.0 - System.Runtime.Handles (>= 4.3) - restriction: >= netstandard1.3 - System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.1 - System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: >= netstandard1.1 - System.Runtime.Numerics (>= 4.3) - restriction: >= netstandard1.1 - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.3 - System.Security.Cryptography.Encoding (>= 4.3) - restriction: >= netstandard1.3 - System.Security.Cryptography.Primitives (>= 4.3) - restriction: >= netstandard1.3 - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: >= netstandard1.3 - System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.0 - System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard1.0 - System.Text.RegularExpressions (>= 4.3) - restriction: >= netstandard1.0 - System.Threading (>= 4.3) - restriction: >= netstandard1.0 - System.Threading.Tasks (>= 4.3) - restriction: >= netstandard1.0 - System.Threading.Timer (>= 4.3) - restriction: >= netstandard1.2 - System.Xml.ReaderWriter (>= 4.3) - restriction: >= netstandard1.0 - System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.0 - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System (4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - Microsoft.NETCore.Platforms (>= 1.1) - Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.IO.Compression (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Net.Http (4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - Microsoft.NETCore.Platforms (>= 1.1) - Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Security.Cryptography.Apple (4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.AppContext (4.3) - restriction: >= netstandard1.6 - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3)) - System.Buffers (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Tracing (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + Microsoft.NETCore.Platforms (2.1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + Microsoft.NETCore.Targets (2.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + runtime.native.System (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + Microsoft.NETCore.Platforms (>= 1.1.1) + Microsoft.NETCore.Targets (>= 1.1.3) + runtime.native.System.Net.Http (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + Microsoft.NETCore.Platforms (>= 1.1.1) + Microsoft.NETCore.Targets (>= 1.1.3) + runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + System.Collections (4.3) - restriction: || (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) - System.Collections.Concurrent (4.3) - restriction: >= netstandard1.6 + System.Collections.Concurrent (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) @@ -142,79 +90,55 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) - System.Console (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Console (4.3.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1.2) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Debug (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Diagnostics.Debug (4.3) - restriction: || (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) - System.Diagnostics.DiagnosticSource (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) + System.Diagnostics.DiagnosticSource (4.5.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81)) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81)) + System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81)) System.Diagnostics.Tools (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Diagnostics.Tracing (4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Tracing (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) - System.Globalization (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Globalization (4.3) - restriction: || (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) - System.Globalization.Calendars (4.3) - restriction: >= netstandard1.6 + System.Globalization.Calendars (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Globalization.Extensions (4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization.Extensions (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.IO (4.3) - restriction: || (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) - System.IO.Compression (4.3) - restriction: >= netstandard1.6 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.IO.Compression (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) - System.Buffers (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) - System.IO.Compression.ZipFile (4.3) - restriction: >= netstandard1.6 - System.Buffers (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.Compression (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem (4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -223,15 +147,15 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem.Primitives (4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Linq (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Linq (4.3) - restriction: || (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Linq.Expressions (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Linq.Expressions (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) @@ -258,11 +182,11 @@ NUGET System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) - System.Net.Http (4.3.2) - restriction: >= netstandard1.6 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) + System.Net.Http (4.3.4) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) @@ -285,7 +209,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) - System.Net.Primitives (4.3) - restriction: >= netstandard1.6 + System.Net.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6) (< win8)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (< portable-net45+win8+wp8+wpa81) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (< portable-net45+win8+wp8+wpa81) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (< portable-net45+win8+wp8+wpa81) @@ -304,98 +228,84 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (< portable-net45+win8+wp8+wpa81) System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) - System.Net.Sockets (4.3) - restriction: >= netstandard1.6 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Net.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Net.WebHeaderCollection (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + System.Net.WebHeaderCollection (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.ObjectModel (4.3) - restriction: >= netstandard1.6 + System.ObjectModel (4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Reflection (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Reflection (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) - System.Reflection.Emit (4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit (4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Extensions (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Reflection.Extensions (4.3) - restriction: || (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Reflection.Primitives (4.3) - restriction: >= netstandard1.6 + System.Reflection.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Reflection.TypeExtensions (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid) (< netstandard1.3)) (>= net462) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid) (< netstandard1.3)) - System.Resources.ResourceManager (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Reflection.TypeExtensions (4.5.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5) (< uap10.1)) (&& (< monoandroid) (< netstandard1.3)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5) (< uap10.1)) (&& (< monoandroid) (< netstandard1.3)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5) (< uap10.1)) (&& (< monoandroid) (< netstandard1.3)) + System.Resources.ResourceManager (4.3) - restriction: || (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Runtime (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Runtime (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) - System.Runtime.Extensions (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Runtime.Extensions (4.3) - restriction: || (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) - System.Runtime.Handles (4.3) - restriction: >= netstandard1.6 + System.Runtime.Handles (4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.InteropServices (4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) (< portable-net45+win8+wpa81) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) (< portable-net45+win8+wpa81) System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) (< portable-net45+win8+wpa81) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) (< portable-net45+win8+wpa81) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= net462) (>= netcoreapp1.1) (< portable-net45+win8+wpa81) System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) (< portable-net45+win8+wpa81) - System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: >= netstandard1.6 - runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (< win8)) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (< win8)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (< win8)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (< win8)) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (< win8)) - System.Runtime.Numerics (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Runtime.Numerics (4.3) - restriction: || (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) - System.Security.Cryptography.Algorithms (4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Algorithms (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) - runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3)) (>= net463) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) @@ -407,19 +317,18 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) (>= net463) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.6)) (>= net463) System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) - System.Security.Cryptography.Cng (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) - System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) (&& (>= net461) (< netstandard1.6)) (>= net463) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) (&& (>= net461) (< netstandard1.6)) (>= net463) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net46) (>= netstandard1.6)) - System.Security.Cryptography.Csp (4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Cng (4.5) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) (&& (>= net46) (< netstandard1.4)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) (&& (>= net46) (< netstandard1.4)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) + System.Security.Cryptography.Csp (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -433,7 +342,7 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -446,21 +355,20 @@ NUGET System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.OpenSsl (4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (>= monoandroid) (>= net463) (>= netstandard1.6) - System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net463) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net463) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net463) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net463) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Numerics (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net463) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net463) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Primitives (4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.OpenSsl (4.5) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) + System.Collections (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.IO (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Runtime (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Runtime.Numerics (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -468,11 +376,11 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.X509Certificates (4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.X509Certificates (4.3.2) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) @@ -494,15 +402,10 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3)) - System.Text.Encoding (4.3) - restriction: >= netstandard1.6 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) - System.Text.Encoding.Extensions (4.3) - restriction: >= netstandard1.6 + System.Text.Encoding (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Text.RegularExpressions (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) @@ -510,17 +413,13 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (>= netcoreapp1.1) (< portable-net45+win8+wp8+wpa81) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Threading (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Threading (4.3) - restriction: || (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) - System.Threading.Tasks (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Threading.Tasks (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) - System.Threading.Tasks.Extensions (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) - System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks.Parallel (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (< portable-net45+win8+wpa81) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wpa81) @@ -539,35 +438,6 @@ NUGET Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net451+win81+wpa81) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net451+win81+wpa81) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net451+win81+wpa81) - System.Xml.ReaderWriter (4.3) - restriction: >= netstandard1.6 - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) - System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Xml.XDocument (4.3) - restriction: >= netstandard1.6 - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (< portable-net45+win8+wp8+wpa81) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (< portable-net45+win8+wp8+wpa81) GROUP Build RESTRICTION: == net46 diff --git a/src/Fable.Helpers.ReactToolbox.fs b/src/Fable.Helpers.ReactToolbox.fs index cc604b2..cc8a336 100644 --- a/src/Fable.Helpers.ReactToolbox.fs +++ b/src/Fable.Helpers.ReactToolbox.fs @@ -38,17 +38,15 @@ module Props = | OnTouchStart of Function | Style of CSSProperties interface Fable.Helpers.React.Props.IHTMLProp - interface Fable.Helpers.React.Props.ICSSProp type internal IReactToolboxProp = inherit Fable.Helpers.React.Props.IHTMLProp - inherit Fable.Helpers.React.Props.ICSSProp open Props let styles = JsInterop.importAll "react-toolbox/lib/commons.scss" -let inline rtEl<[]'P when 'P :> IHTMLProp> (a:ComponentClass<'P>) (b:IHTMLProp list) c = Fable.Helpers.React.from a (keyValueList CaseRules.LowerFirst b |> unbox) c +let inline rtEl<'P when 'P :> IHTMLProp> (a:ComponentClass<'P>) (b:IHTMLProp list) c = Fable.Helpers.React.from a (keyValueList CaseRules.LowerFirst b |> unbox) c type AppBarTheme = | AppBar of string @@ -395,7 +393,6 @@ type DialogTheme = | Navigation of string | Title of string -[] type DialogActionProp = { label: string onClick: unit -> unit } diff --git a/src/Fable.ReactToolbox.fsproj b/src/Fable.ReactToolbox.fsproj index 7d55d75..a0ae2b9 100644 --- a/src/Fable.ReactToolbox.fsproj +++ b/src/Fable.ReactToolbox.fsproj @@ -1,6 +1,6 @@ - netstandard1.6 + netstandard2.0 true