From 9f8a5309c4605288441da6148e2aa801bb4253e7 Mon Sep 17 00:00:00 2001 From: "Sean.Amos" Date: Fri, 29 Sep 2017 00:51:13 +0200 Subject: [PATCH 01/43] Added WarnAsErrors to MSBuild options --- src/app/Fake.DotNet.MsBuild/MsBuild.fs | 15 +++++++++++---- src/app/FakeLib/MSBuildHelper.fs | 15 +++++++++++---- 2 files changed, 22 insertions(+), 8 deletions(-) diff --git a/src/app/Fake.DotNet.MsBuild/MsBuild.fs b/src/app/Fake.DotNet.MsBuild/MsBuild.fs index 35d3889edad..e7603c696ec 100644 --- a/src/app/Fake.DotNet.MsBuild/MsBuild.fs +++ b/src/app/Fake.DotNet.MsBuild/MsBuild.fs @@ -242,6 +242,7 @@ type MSBuildParams = ToolsVersion : string option Verbosity : MSBuildVerbosity option NoConsoleLogger : bool + WarnAsErrors: string list option FileLoggers : MSBuildFileLoggerConfig list option BinaryLoggers : string list option DistributedLoggers : (MSBuildDistributedLoggerConfig * MSBuildDistributedLoggerConfig option) list option } @@ -256,15 +257,16 @@ let mutable MSBuildDefaults = ToolsVersion = None Verbosity = None NoConsoleLogger = false + WarnAsErrors = None RestorePackagesFlag = false FileLoggers = None BinaryLoggers = None DistributedLoggers = None } /// [omit] -let getAllParameters targets maxcpu noLogo nodeReuse tools verbosity noconsolelogger fileLoggers binaryLoggers distributedFileLoggers properties = - if Environment.isUnix then [ targets; tools; verbosity; noconsolelogger ] @ fileLoggers @ binaryLoggers @ distributedFileLoggers @ properties - else [ targets; maxcpu; noLogo; nodeReuse; tools; verbosity; noconsolelogger ] @ fileLoggers @ binaryLoggers @ distributedFileLoggers @ properties +let getAllParameters targets maxcpu noLogo nodeReuse tools verbosity noconsolelogger warnAsErrors fileLoggers binaryLoggers distributedFileLoggers properties = + if Environment.isUnix then [ targets; tools; verbosity; noconsolelogger; warnAsErrors ] @ fileLoggers @ binaryLoggers @ distributedFileLoggers @ properties + else [ targets; maxcpu; noLogo; nodeReuse; tools; verbosity; noconsolelogger; warnAsErrors ] @ fileLoggers @ binaryLoggers @ distributedFileLoggers @ properties let private serializeArgs args = args @@ -325,6 +327,11 @@ let serializeMSBuildParams (p : MSBuildParams) = if p.NoConsoleLogger then Some("noconlog", "") else None + let warnAsErrors = + match p.WarnAsErrors with + | None -> None + | Some w -> Some("warnaserror", w |> String.concat ";") + let fileLoggers = let serializeLogger fl = let logParams param = @@ -394,7 +401,7 @@ let serializeMSBuildParams (p : MSBuildParams) = dfls |> List.map(fun (cl, fl) -> Some("dl", createLoggerString cl fl)) - getAllParameters targets maxcpu noLogo nodeReuse tools verbosity noconsolelogger fileLoggers binaryLoggers distributedFileLoggers properties + getAllParameters targets maxcpu noLogo nodeReuse tools verbosity noconsolelogger warnAsErrors fileLoggers binaryLoggers distributedFileLoggers properties |> serializeArgs #if !NO_MSBUILD_AVAILABLE diff --git a/src/app/FakeLib/MSBuildHelper.fs b/src/app/FakeLib/MSBuildHelper.fs index 75adfd7e8f0..700d990684e 100644 --- a/src/app/FakeLib/MSBuildHelper.fs +++ b/src/app/FakeLib/MSBuildHelper.fs @@ -226,6 +226,7 @@ type MSBuildParams = ToolsVersion : string option Verbosity : MSBuildVerbosity option NoConsoleLogger : bool + WarnAsErrors: string list option FileLoggers : MSBuildFileLoggerConfig list option BinaryLoggers : string list option DistributedLoggers : (MSBuildDistributedLoggerConfig * MSBuildDistributedLoggerConfig option) list option } @@ -240,15 +241,16 @@ let mutable MSBuildDefaults = ToolsVersion = None Verbosity = None NoConsoleLogger = false + WarnAsErrors = None RestorePackagesFlag = false FileLoggers = None BinaryLoggers = None DistributedLoggers = None } /// [omit] -let getAllParameters targets maxcpu noLogo nodeReuse tools verbosity noconsolelogger fileLoggers binaryLoggers distributedFileLoggers properties = - if isUnix then [ targets; tools; verbosity; noconsolelogger ] @ fileLoggers @ binaryLoggers @ distributedFileLoggers @ properties - else [ targets; maxcpu; noLogo; nodeReuse; tools; verbosity; noconsolelogger ] @ fileLoggers @ binaryLoggers @ distributedFileLoggers @ properties +let getAllParameters targets maxcpu noLogo nodeReuse tools verbosity noconsolelogger warnAsErrors fileLoggers binaryLoggers distributedFileLoggers properties = + if isUnix then [ targets; tools; verbosity; noconsolelogger; warnAsErrors ] @ fileLoggers @ binaryLoggers @ distributedFileLoggers @ properties + else [ targets; maxcpu; noLogo; nodeReuse; tools; verbosity; noconsolelogger; warnAsErrors ] @ fileLoggers @ binaryLoggers @ distributedFileLoggers @ properties let private serializeArgs args = args @@ -307,6 +309,11 @@ let serializeMSBuildParams (p : MSBuildParams) = if p.NoConsoleLogger then Some("noconlog", "") else None + let warnAsErrors = + match p.WarnAsErrors with + | None -> None + | Some w -> Some("warnaserror", w |> String.concat ";") + let fileLoggers = let serializeLogger fl = let logParams param = @@ -376,7 +383,7 @@ let serializeMSBuildParams (p : MSBuildParams) = dfls |> List.map(fun (cl, fl) -> Some("dl", createLoggerString cl fl)) - getAllParameters targets maxcpu noLogo nodeReuse tools verbosity noconsolelogger fileLoggers binaryLoggers distributedFileLoggers properties + getAllParameters targets maxcpu noLogo nodeReuse tools verbosity noconsolelogger warnAsErrors fileLoggers binaryLoggers distributedFileLoggers properties |> serializeArgs /// [omit] From 499d3023413c4bc5cf873562aec11b22ea87ba06 Mon Sep 17 00:00:00 2001 From: "Sean.Amos" Date: Fri, 29 Sep 2017 01:04:22 +0200 Subject: [PATCH 02/43] Changed "WarnAsErrors" to "WarnAsError" to match msbuild param name --- src/app/Fake.DotNet.MsBuild/MsBuild.fs | 16 ++++++++-------- src/app/FakeLib/MSBuildHelper.fs | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/app/Fake.DotNet.MsBuild/MsBuild.fs b/src/app/Fake.DotNet.MsBuild/MsBuild.fs index e7603c696ec..8d3e070d0ef 100644 --- a/src/app/Fake.DotNet.MsBuild/MsBuild.fs +++ b/src/app/Fake.DotNet.MsBuild/MsBuild.fs @@ -242,7 +242,7 @@ type MSBuildParams = ToolsVersion : string option Verbosity : MSBuildVerbosity option NoConsoleLogger : bool - WarnAsErrors: string list option + WarnAsError: string list option FileLoggers : MSBuildFileLoggerConfig list option BinaryLoggers : string list option DistributedLoggers : (MSBuildDistributedLoggerConfig * MSBuildDistributedLoggerConfig option) list option } @@ -257,16 +257,16 @@ let mutable MSBuildDefaults = ToolsVersion = None Verbosity = None NoConsoleLogger = false - WarnAsErrors = None + WarnAsError = None RestorePackagesFlag = false FileLoggers = None BinaryLoggers = None DistributedLoggers = None } /// [omit] -let getAllParameters targets maxcpu noLogo nodeReuse tools verbosity noconsolelogger warnAsErrors fileLoggers binaryLoggers distributedFileLoggers properties = - if Environment.isUnix then [ targets; tools; verbosity; noconsolelogger; warnAsErrors ] @ fileLoggers @ binaryLoggers @ distributedFileLoggers @ properties - else [ targets; maxcpu; noLogo; nodeReuse; tools; verbosity; noconsolelogger; warnAsErrors ] @ fileLoggers @ binaryLoggers @ distributedFileLoggers @ properties +let getAllParameters targets maxcpu noLogo nodeReuse tools verbosity noconsolelogger warnAsError fileLoggers binaryLoggers distributedFileLoggers properties = + if Environment.isUnix then [ targets; tools; verbosity; noconsolelogger; warnAsError ] @ fileLoggers @ binaryLoggers @ distributedFileLoggers @ properties + else [ targets; maxcpu; noLogo; nodeReuse; tools; verbosity; noconsolelogger; warnAsError ] @ fileLoggers @ binaryLoggers @ distributedFileLoggers @ properties let private serializeArgs args = args @@ -327,8 +327,8 @@ let serializeMSBuildParams (p : MSBuildParams) = if p.NoConsoleLogger then Some("noconlog", "") else None - let warnAsErrors = - match p.WarnAsErrors with + let warnAsError = + match p.WarnAsError with | None -> None | Some w -> Some("warnaserror", w |> String.concat ";") @@ -401,7 +401,7 @@ let serializeMSBuildParams (p : MSBuildParams) = dfls |> List.map(fun (cl, fl) -> Some("dl", createLoggerString cl fl)) - getAllParameters targets maxcpu noLogo nodeReuse tools verbosity noconsolelogger warnAsErrors fileLoggers binaryLoggers distributedFileLoggers properties + getAllParameters targets maxcpu noLogo nodeReuse tools verbosity noconsolelogger warnAsError fileLoggers binaryLoggers distributedFileLoggers properties |> serializeArgs #if !NO_MSBUILD_AVAILABLE diff --git a/src/app/FakeLib/MSBuildHelper.fs b/src/app/FakeLib/MSBuildHelper.fs index 700d990684e..e7100595112 100644 --- a/src/app/FakeLib/MSBuildHelper.fs +++ b/src/app/FakeLib/MSBuildHelper.fs @@ -226,7 +226,7 @@ type MSBuildParams = ToolsVersion : string option Verbosity : MSBuildVerbosity option NoConsoleLogger : bool - WarnAsErrors: string list option + WarnAsError: string list option FileLoggers : MSBuildFileLoggerConfig list option BinaryLoggers : string list option DistributedLoggers : (MSBuildDistributedLoggerConfig * MSBuildDistributedLoggerConfig option) list option } @@ -241,16 +241,16 @@ let mutable MSBuildDefaults = ToolsVersion = None Verbosity = None NoConsoleLogger = false - WarnAsErrors = None + WarnAsError = None RestorePackagesFlag = false FileLoggers = None BinaryLoggers = None DistributedLoggers = None } /// [omit] -let getAllParameters targets maxcpu noLogo nodeReuse tools verbosity noconsolelogger warnAsErrors fileLoggers binaryLoggers distributedFileLoggers properties = - if isUnix then [ targets; tools; verbosity; noconsolelogger; warnAsErrors ] @ fileLoggers @ binaryLoggers @ distributedFileLoggers @ properties - else [ targets; maxcpu; noLogo; nodeReuse; tools; verbosity; noconsolelogger; warnAsErrors ] @ fileLoggers @ binaryLoggers @ distributedFileLoggers @ properties +let getAllParameters targets maxcpu noLogo nodeReuse tools verbosity noconsolelogger warnAsError fileLoggers binaryLoggers distributedFileLoggers properties = + if isUnix then [ targets; tools; verbosity; noconsolelogger; warnAsError ] @ fileLoggers @ binaryLoggers @ distributedFileLoggers @ properties + else [ targets; maxcpu; noLogo; nodeReuse; tools; verbosity; noconsolelogger; warnAsError ] @ fileLoggers @ binaryLoggers @ distributedFileLoggers @ properties let private serializeArgs args = args @@ -309,8 +309,8 @@ let serializeMSBuildParams (p : MSBuildParams) = if p.NoConsoleLogger then Some("noconlog", "") else None - let warnAsErrors = - match p.WarnAsErrors with + let warnAsError = + match p.WarnAsError with | None -> None | Some w -> Some("warnaserror", w |> String.concat ";") @@ -383,7 +383,7 @@ let serializeMSBuildParams (p : MSBuildParams) = dfls |> List.map(fun (cl, fl) -> Some("dl", createLoggerString cl fl)) - getAllParameters targets maxcpu noLogo nodeReuse tools verbosity noconsolelogger warnAsErrors fileLoggers binaryLoggers distributedFileLoggers properties + getAllParameters targets maxcpu noLogo nodeReuse tools verbosity noconsolelogger warnAsError fileLoggers binaryLoggers distributedFileLoggers properties |> serializeArgs /// [omit] From b8aa93ac19c4c06ba3f1ce1b5d981981e6c9c36a Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Mon, 2 Oct 2017 18:25:27 +0200 Subject: [PATCH 03/43] travis -> beta005 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5c298fc4a23..f55eac88881 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ addons: - libunwind8 before_script: - - wget https://github.com/fsharp/FAKE/releases/download/5.0.0-alpha018/fake-dotnetcore-ubuntu.14.04-x64.zip -O /tmp/fake-dotnetcore-ubuntu.14.04-x64.zip + - wget https://github.com/fsharp/FAKE/releases/download/5.0.0-beta005/fake-dotnetcore-ubuntu.14.04-x64.zip -O /tmp/fake-dotnetcore-ubuntu.14.04-x64.zip - mkdir fake-dotnetcore - unzip /tmp/fake-dotnetcore-ubuntu.14.04-x64.zip -d fake-dotnetcore || echo unzip returned $? - export PATH=$PATH:$PWD/fake-dotnetcore/ From 85dcc87d1aa369c83de72d83308079d67ed2d58f Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Mon, 2 Oct 2017 18:51:18 +0200 Subject: [PATCH 04/43] update packages --- paket.lock | 330 ++++++++++++++++++++++++++--------------------------- 1 file changed, 165 insertions(+), 165 deletions(-) diff --git a/paket.lock b/paket.lock index 844641a51e9..36678605ced 100644 --- a/paket.lock +++ b/paket.lock @@ -2493,90 +2493,90 @@ NUGET FSharp.Core - restriction: < netstandard1.6 FSharp.Core (>= 4.0.1.7-alpha) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6) - restriction: >= netstandard1.6 - Fake.Api.GitHub (5.0.0-beta004) + Fake.Api.GitHub (5.0.0-beta005) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Octokit (>= 0.26) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.BuildServer (5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.BuildServer (5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.Core.Context (5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.Core.Environment (5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.Core.Globbing (5.0.0-beta004) + Fake.Core.Globbing (5.0.0-beta005) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.Core.Process (5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.BuildServer (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Tracing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 System.Diagnostics.Process (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.ReleaseNotes (5.0.0-beta004) - Fake.Core.SemVer (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.ReleaseNotes (5.0.0-beta005) + Fake.Core.SemVer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.Core.SemVer (5.0.0-beta004) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.SemVer (5.0.0-beta005) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.Core.String (5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.Core.Target (5.0.0-beta004) - Fake.Core.BuildServer (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Tracing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Target (5.0.0-beta005) + Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.Core.Tasks (5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.BuildServer (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Tracing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tasks (5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.Core.Tracing (5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.BuildServer (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.Core.Xml (5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.BuildServer (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Tracing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 @@ -2585,170 +2585,170 @@ NUGET System.Xml.XPath (>= 4.3) - restriction: >= netstandard1.6 System.Xml.XPath.XDocument (>= 4.3) - restriction: >= netstandard1.6 System.Xml.XPath.XmlDocument (>= 4.3) - restriction: >= netstandard1.6 - Fake.DotNet.AssemblyInfoFile (5.0.0-beta004) - Fake.Core.BuildServer (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Tracing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.AssemblyInfoFile (5.0.0-beta005) + Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.DotNet.Cli (5.0.0-beta004) - Fake.Core.BuildServer (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Tracing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.Cli (5.0.0-beta005) + Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.DotNet.FSFormatting (5.0.0-beta004) - Fake.Core.BuildServer (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Globbing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Tracing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.FSFormatting (5.0.0-beta005) + Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Globbing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.DotNet.MsBuild (5.0.0-beta004) - Fake.Core.BuildServer (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Globbing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Tracing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.MsBuild (5.0.0-beta005) + Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Globbing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.DotNet.NuGet (5.0.0-beta004) - Fake.Core.BuildServer (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Globbing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.SemVer (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Tasks (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Tracing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.NuGet (5.0.0-beta005) + Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Globbing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.SemVer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tasks (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Newtonsoft.Json (>= 10.0.3) - restriction: || (>= net46) (>= netstandard1.6) System.Net.Http (>= 4.3.3) - restriction: || (>= net46) (>= netstandard1.6) - Fake.DotNet.Paket (5.0.0-beta004) - Fake.Core.BuildServer (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Globbing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Tracing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.Paket (5.0.0-beta005) + Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Globbing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.DotNet.Testing.MSpec (5.0.0-beta004) - Fake.Core.BuildServer (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Globbing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Tracing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Testing.Common (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.Testing.MSpec (5.0.0-beta005) + Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Globbing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Testing.Common (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.DotNet.Testing.NUnit (5.0.0-beta004) - Fake.Core.BuildServer (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Globbing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Tracing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Testing.Common (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.Testing.NUnit (5.0.0-beta005) + Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Globbing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Testing.Common (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 System.Linq.Parallel (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.6 - Fake.DotNet.Testing.XUnit2 (5.0.0-beta004) - Fake.Core.BuildServer (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Globbing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Tracing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Testing.Common (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.Testing.XUnit2 (5.0.0-beta005) + Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Globbing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Testing.Common (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.IO.FileSystem (5.0.0-beta004) - Fake.Core.Globbing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (5.0.0-beta005) + Fake.Core.Globbing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.Zip (5.0.0-beta004) - Fake.Core.Globbing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.Zip (5.0.0-beta005) + Fake.Core.Globbing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 System.IO.Compression (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) System.IO.Compression.ZipFile (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Testing.Common (5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.BuildServer (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Tracing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Testing.Common (5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.Tools.Git (5.0.0-beta004) - Fake.Core.BuildServer (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Globbing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.SemVer (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Tracing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Tools.Git (5.0.0-beta005) + Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Globbing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.SemVer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - Fake.Windows.Chocolatey (5.0.0-beta004) - Fake.Core.BuildServer (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Globbing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Tracing (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.DotNet.NuGet (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-beta004) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Windows.Chocolatey (5.0.0-beta005) + Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Globbing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.NuGet (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 @@ -2855,7 +2855,7 @@ NUGET System.Xml.XmlDocument (>= 4.3) - restriction: && (< net20) (>= netstandard1.3) Octokit (0.26) NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.1) - Paket.Core (5.102) + Paket.Core (5.103) Chessie (>= 0.6) FSharp.Compiler.Tools - restriction: < netstandard1.6 FSharp.Core - restriction: < netstandard1.6 From f45c5c72a48aba141f0f45f88ca2200d04afd43f Mon Sep 17 00:00:00 2001 From: Kent Boogaart Date: Thu, 5 Oct 2017 16:19:47 +1030 Subject: [PATCH 05/43] Provide full fidelity of build options in Xamarin helpers --- src/app/FakeLib/XamarinHelper.fs | 152 +++++++++++++++++++++++++------ 1 file changed, 122 insertions(+), 30 deletions(-) diff --git a/src/app/FakeLib/XamarinHelper.fs b/src/app/FakeLib/XamarinHelper.fs index c0ba9c433c9..771df9b4df9 100644 --- a/src/app/FakeLib/XamarinHelper.fs +++ b/src/app/FakeLib/XamarinHelper.fs @@ -58,6 +58,16 @@ type iOSBuildParams = { BuildIpa: bool /// Additional MSBuild properties, defaults to empty list Properties: (string * string) list + MaxCpuCount : int option option + NoLogo : bool + NodeReuse : bool + RestorePackagesFlag : bool + ToolsVersion : string option + Verbosity : MSBuildVerbosity option + NoConsoleLogger : bool + FileLoggers : MSBuildFileLoggerConfig list option + BinaryLoggers : string list option + DistributedLoggers : (MSBuildDistributedLoggerConfig * MSBuildDistributedLoggerConfig option) list option } /// The default iOS build parameters @@ -69,6 +79,16 @@ let iOSBuildDefaults = { OutputPath = "" BuildIpa = false Properties = [] + MaxCpuCount = Some None + NoLogo = false + NodeReuse = false + ToolsVersion = None + Verbosity = None + NoConsoleLogger = false + RestorePackagesFlag = false + FileLoggers = None + BinaryLoggers = None + DistributedLoggers = None } @@ -76,7 +96,7 @@ type AndroidAbiTargetConfig = { SuffixAndExtension: string } -type AndroidAbiTarget = +type AndroidAbiTarget = | X86 of AndroidAbiTargetConfig | ArmEabi of AndroidAbiTargetConfig | ArmEabiV7a of AndroidAbiTargetConfig @@ -84,11 +104,11 @@ type AndroidAbiTarget = | X86And64 of AndroidAbiTargetConfig | AllAbi -type AndroidPackageAbiParam = +type AndroidPackageAbiParam = | OneApkForAll | SpecificAbis of AndroidAbiTarget list -let AllAndroidAbiTargets = +let AllAndroidAbiTargets = AndroidPackageAbiParam.SpecificAbis ( [ AndroidAbiTarget.X86({ SuffixAndExtension="-x86.apk"; }) AndroidAbiTarget.ArmEabi({ SuffixAndExtension="-armeabi.apk"; }) @@ -113,11 +133,32 @@ let iOSBuild setParams = param - let buildProject param = - let properties = [ "Configuration", param.Configuration; "Platform" , param.Platform; "BuildIpa" , param.BuildIpa.ToString().ToLower(); ] - let effectiveProperties = properties @ param.Properties + let applyiOSBuildParamsToMSBuildParams iOSBuildParams buildParams = + let msBuildParams = { buildParams with + Targets = [ iOSBuildParams.Target ] + Properties = [ "Configuration", iOSBuildParams.Configuration; "Platform", iOSBuildParams.Platform; "BuildIpa", iOSBuildParams.BuildIpa.ToString() ] @ iOSBuildParams.Properties + MaxCpuCount = iOSBuildParams.MaxCpuCount + NoLogo = iOSBuildParams.NoLogo + NodeReuse = iOSBuildParams.NodeReuse + ToolsVersion = iOSBuildParams.ToolsVersion + Verbosity = iOSBuildParams.Verbosity + NoConsoleLogger = iOSBuildParams.NoConsoleLogger + RestorePackagesFlag = iOSBuildParams.RestorePackagesFlag + FileLoggers = iOSBuildParams.FileLoggers + BinaryLoggers = iOSBuildParams.BinaryLoggers + DistributedLoggers = iOSBuildParams.DistributedLoggers + } + + let msBuildParams = + if isNullOrEmpty iOSBuildParams.OutputPath then msBuildParams + else { msBuildParams with + Properties = [ "OutputPath", FullName iOSBuildParams.OutputPath ] @ msBuildParams.Properties + } + + msBuildParams - MSBuild param.OutputPath param.Target effectiveProperties [ param.ProjectPath ] |> ignore + let buildProject param = + build (fun msbuildParam -> applyiOSBuildParamsToMSBuildParams param msbuildParam) param.ProjectPath |> ignore iOSBuildDefaults |> setParams @@ -139,6 +180,16 @@ type AndroidPackageParams = { PackageAbiTargets: AndroidPackageAbiParam /// Used for multiple APK packaging to set different version code par ABI VersionStepper:IncrementerVersion option + MaxCpuCount : int option option + NoLogo : bool + NodeReuse : bool + RestorePackagesFlag : bool + ToolsVersion : string option + Verbosity : MSBuildVerbosity option + NoConsoleLogger : bool + FileLoggers : MSBuildFileLoggerConfig list option + BinaryLoggers : string list option + DistributedLoggers : (MSBuildDistributedLoggerConfig * MSBuildDistributedLoggerConfig option) list option } /// The default Android packaging parameters @@ -149,6 +200,16 @@ let AndroidPackageDefaults = { Properties = [] PackageAbiTargets = AndroidPackageAbiParam.OneApkForAll VersionStepper = None + MaxCpuCount = Some None + NoLogo = false + NodeReuse = false + ToolsVersion = None + Verbosity = None + NoConsoleLogger = false + RestorePackagesFlag = false + FileLoggers = None + BinaryLoggers = None + DistributedLoggers = None } /// Packages a Xamarin.Android app, returning a multiple FileInfo objects for the unsigned APK files @@ -157,22 +218,53 @@ let AndroidPackageDefaults = { let AndroidBuildPackages setParams = let validateParams param = if param.ProjectPath = "" then failwith "You must specify a project to package" - if param.Properties + if param.Properties |> List.exists (fun (key, _) -> key.Equals("Configuration", StringComparison.OrdinalIgnoreCase)) then failwith "Cannot specify build configuration via additional parameters. Use Configuration field instead." param - let buildPackages param (abi:string option) (manifestFile:string option) = - let options = match (abi,manifestFile) with - | Some a, Some m -> let manifest = @"Properties" @@ System.IO.Path.GetFileName(m) - [ "Configuration", param.Configuration - "AndroidSupportedAbis", a - "AndroidManifest", manifest ] - | Some a, None -> [ "Configuration", param.Configuration - "AndroidSupportedAbis", a] - | _, _ -> [ "Configuration", param.Configuration ] - MSBuild param.OutputPath "PackageForAndroid" options [ param.ProjectPath ] |> ignore + let applyAndroidBuildParamsToMSBuildParams androidBuildParams buildParams = + let msBuildParams = { buildParams with + Targets = [ "PackageForAndroid" ] + Properties = [ "Configuration", androidBuildParams.Configuration ] @ androidBuildParams.Properties + MaxCpuCount = androidBuildParams.MaxCpuCount + NoLogo = androidBuildParams.NoLogo + NodeReuse = androidBuildParams.NodeReuse + ToolsVersion = androidBuildParams.ToolsVersion + Verbosity = androidBuildParams.Verbosity + NoConsoleLogger = androidBuildParams.NoConsoleLogger + RestorePackagesFlag = androidBuildParams.RestorePackagesFlag + FileLoggers = androidBuildParams.FileLoggers + BinaryLoggers = androidBuildParams.BinaryLoggers + DistributedLoggers = androidBuildParams.DistributedLoggers + } + + let msBuildParams = + if isNullOrEmpty androidBuildParams.OutputPath then msBuildParams + else { msBuildParams with + Properties = [ "OutputPath", FullName androidBuildParams.OutputPath ] @ msBuildParams.Properties + } + + msBuildParams + + let buildPackages param (abi:string option) (manifestFile:string option) = + let applyBuildParams msbuildParam = + let result = applyAndroidBuildParamsToMSBuildParams param msbuildParam + + result = { result with + Properties = + match (abi, manifestFile) with + | Some a, Some m -> let manifest = @"Properties" @@ System.IO.Path.GetFileName(m) + [ "AndroidSupportedAbis", a + "AndroidManifest", manifest ] @ result.Properties + | Some a, None -> [ "AndroidSupportedAbis", a ] @ result.Properties + | _, _ -> result.Properties + } + + result + + build (fun msbuildParam -> applyBuildParams msbuildParam) param.ProjectPath |> ignore let rewriteManifestFile (manifestFile:string) outfile (transformVersion:IncrementerVersion) target = let manifest = XDocument.Load(manifestFile) @@ -184,15 +276,15 @@ let AndroidBuildPackages setParams = wr.Formatting <- Formatting.Indented manifest.Save(wr) - let mostRecentFileInDirMatching path = + let mostRecentFileInDirMatching path = directoryInfo path |> filesInDirMatching "*.apk" |> Seq.sortBy (fun file -> file.LastWriteTime) |> Seq.last let createPackage param = - let effectiveProperties = [ "Configuration", param.Configuration ] @ param.Properties - MSBuild param.OutputPath "PackageForAndroid" effectiveProperties [ param.ProjectPath ] |> ignore + build (fun msbuildParam -> applyAndroidBuildParamsToMSBuildParams param msbuildParam) param.ProjectPath |> ignore + [ mostRecentFileInDirMatching param.OutputPath ] let buildSpecificApk param manifestFile name transformVersion target = @@ -216,7 +308,7 @@ let AndroidBuildPackages setParams = | AndroidAbiTarget.X86And64 _ -> "X86_64" | _ -> "" - let createTargetPackage param (manifestFile:string) (target:AndroidAbiTarget) transformVersion = + let createTargetPackage param (manifestFile:string) (target:AndroidAbiTarget) transformVersion = let name = target |> translateAbi match target with | AndroidAbiTarget.X86 c @@ -232,7 +324,7 @@ let AndroidBuildPackages setParams = createTargetPackage param manifestPath t transformVersion let apk = mostRecentFileInDirMatching param.OutputPath let name = t |> translateAbi - if name.Length > 0 then + if name.Length > 0 then let apkname = Path.GetFileNameWithoutExtension(apk.Name) + "-" + name + ".apk" yield apk.CopyTo (param.OutputPath @@ apkname) else @@ -273,7 +365,7 @@ type AndroidSignAndAlignParams = { KeystoreAlias: string /// Specifies the name of the signature algorithm to use to sign the JAR file. SignatureAlgorithm: string - /// Specifies the name of the message digest algorithm to use when digesting the entries of a JAR file. + /// Specifies the name of the message digest algorithm to use when digesting the entries of a JAR file. MessageDigestAlgorithm: string /// Path to jarsigner tool, defaults to assuming it is in your path JarsignerPath: string @@ -303,14 +395,14 @@ let AndroidSignAndAlign setParams apkFile = if param.KeystoreAlias = "" then failwith "You must provide the keystore's alias" param - + let quotesSurround (s:string) = if EnvironmentHelper.isMono then sprintf "'%s'" s else sprintf "\"%s\"" s - + let signAndAlign (file:FileInfo) (param:AndroidSignAndAlignParams) = let fullSignedFilePath = Regex.Replace(file.FullName, ".apk$", "-Signed.apk") - let jarsignerArgs = String.Format("-sigalg {0} -digestalg {1} -keystore {2} -storepass {3} -signedjar {4} {5} {6}", + let jarsignerArgs = String.Format("-sigalg {0} -digestalg {1} -keystore {2} -storepass {3} -signedjar {4} {5} {6}", param.SignatureAlgorithm, param.MessageDigestAlgorithm, quotesSurround(param.KeystorePath), param.KeystorePassword, quotesSurround(fullSignedFilePath), quotesSurround(file.FullName), param.KeystoreAlias) - + executeCommand param.JarsignerPath jarsignerArgs let fullAlignedFilePath = Regex.Replace(fullSignedFilePath, "-Signed.apk$", "-SignedAndAligned.apk") @@ -322,7 +414,7 @@ let AndroidSignAndAlign setParams apkFile = AndroidSignAndAlignDefaults |> setParams |> validateParams - |> signAndAlign apkFile + |> signAndAlign apkFile /// Signs and aligns multiple Xamarin.Android packages, returning multiple FileInfo objects for the signed APK file /// ## Parameters @@ -352,7 +444,7 @@ let iOSArchiveDefaults = { Configuration = "Debug|iPhoneSimulator" MDToolPath = "/Applications/Xamarin Studio.app/Contents/MacOS/mdtool" } - + /// Archive a project using Xamarin's iOS archive tools /// ## Parameters /// - `setParams` - Function used to override the default archive parameters From 1a5206a04b1758fae3b2fb0b258ec266dce136ba Mon Sep 17 00:00:00 2001 From: Kent Boogaart Date: Thu, 5 Oct 2017 17:01:28 +1030 Subject: [PATCH 06/43] Fix warnings --- src/app/FakeLib/XamarinHelper.fs | 91 +++++++++++++++++--------------- 1 file changed, 48 insertions(+), 43 deletions(-) diff --git a/src/app/FakeLib/XamarinHelper.fs b/src/app/FakeLib/XamarinHelper.fs index 771df9b4df9..57f041fa656 100644 --- a/src/app/FakeLib/XamarinHelper.fs +++ b/src/app/FakeLib/XamarinHelper.fs @@ -134,26 +134,28 @@ let iOSBuild setParams = param let applyiOSBuildParamsToMSBuildParams iOSBuildParams buildParams = - let msBuildParams = { buildParams with - Targets = [ iOSBuildParams.Target ] - Properties = [ "Configuration", iOSBuildParams.Configuration; "Platform", iOSBuildParams.Platform; "BuildIpa", iOSBuildParams.BuildIpa.ToString() ] @ iOSBuildParams.Properties - MaxCpuCount = iOSBuildParams.MaxCpuCount - NoLogo = iOSBuildParams.NoLogo - NodeReuse = iOSBuildParams.NodeReuse - ToolsVersion = iOSBuildParams.ToolsVersion - Verbosity = iOSBuildParams.Verbosity - NoConsoleLogger = iOSBuildParams.NoConsoleLogger - RestorePackagesFlag = iOSBuildParams.RestorePackagesFlag - FileLoggers = iOSBuildParams.FileLoggers - BinaryLoggers = iOSBuildParams.BinaryLoggers - DistributedLoggers = iOSBuildParams.DistributedLoggers - } + let msBuildParams = + { buildParams with + Targets = [ iOSBuildParams.Target ] + Properties = [ "Configuration", iOSBuildParams.Configuration; "Platform", iOSBuildParams.Platform; "BuildIpa", iOSBuildParams.BuildIpa.ToString() ] @ iOSBuildParams.Properties + MaxCpuCount = iOSBuildParams.MaxCpuCount + NoLogo = iOSBuildParams.NoLogo + NodeReuse = iOSBuildParams.NodeReuse + ToolsVersion = iOSBuildParams.ToolsVersion + Verbosity = iOSBuildParams.Verbosity + NoConsoleLogger = iOSBuildParams.NoConsoleLogger + RestorePackagesFlag = iOSBuildParams.RestorePackagesFlag + FileLoggers = iOSBuildParams.FileLoggers + BinaryLoggers = iOSBuildParams.BinaryLoggers + DistributedLoggers = iOSBuildParams.DistributedLoggers + } let msBuildParams = if isNullOrEmpty iOSBuildParams.OutputPath then msBuildParams - else { msBuildParams with - Properties = [ "OutputPath", FullName iOSBuildParams.OutputPath ] @ msBuildParams.Properties - } + else + { msBuildParams with + Properties = [ "OutputPath", FullName iOSBuildParams.OutputPath ] @ msBuildParams.Properties + } msBuildParams @@ -225,26 +227,28 @@ let AndroidBuildPackages setParams = param let applyAndroidBuildParamsToMSBuildParams androidBuildParams buildParams = - let msBuildParams = { buildParams with - Targets = [ "PackageForAndroid" ] - Properties = [ "Configuration", androidBuildParams.Configuration ] @ androidBuildParams.Properties - MaxCpuCount = androidBuildParams.MaxCpuCount - NoLogo = androidBuildParams.NoLogo - NodeReuse = androidBuildParams.NodeReuse - ToolsVersion = androidBuildParams.ToolsVersion - Verbosity = androidBuildParams.Verbosity - NoConsoleLogger = androidBuildParams.NoConsoleLogger - RestorePackagesFlag = androidBuildParams.RestorePackagesFlag - FileLoggers = androidBuildParams.FileLoggers - BinaryLoggers = androidBuildParams.BinaryLoggers - DistributedLoggers = androidBuildParams.DistributedLoggers - } + let msBuildParams = + { buildParams with + Targets = [ "PackageForAndroid" ] + Properties = [ "Configuration", androidBuildParams.Configuration ] @ androidBuildParams.Properties + MaxCpuCount = androidBuildParams.MaxCpuCount + NoLogo = androidBuildParams.NoLogo + NodeReuse = androidBuildParams.NodeReuse + ToolsVersion = androidBuildParams.ToolsVersion + Verbosity = androidBuildParams.Verbosity + NoConsoleLogger = androidBuildParams.NoConsoleLogger + RestorePackagesFlag = androidBuildParams.RestorePackagesFlag + FileLoggers = androidBuildParams.FileLoggers + BinaryLoggers = androidBuildParams.BinaryLoggers + DistributedLoggers = androidBuildParams.DistributedLoggers + } let msBuildParams = if isNullOrEmpty androidBuildParams.OutputPath then msBuildParams - else { msBuildParams with - Properties = [ "OutputPath", FullName androidBuildParams.OutputPath ] @ msBuildParams.Properties - } + else + { msBuildParams with + Properties = [ "OutputPath", FullName androidBuildParams.OutputPath ] @ msBuildParams.Properties + } msBuildParams @@ -252,15 +256,16 @@ let AndroidBuildPackages setParams = let applyBuildParams msbuildParam = let result = applyAndroidBuildParamsToMSBuildParams param msbuildParam - result = { result with - Properties = - match (abi, manifestFile) with - | Some a, Some m -> let manifest = @"Properties" @@ System.IO.Path.GetFileName(m) - [ "AndroidSupportedAbis", a - "AndroidManifest", manifest ] @ result.Properties - | Some a, None -> [ "AndroidSupportedAbis", a ] @ result.Properties - | _, _ -> result.Properties - } + let result = + { result with + Properties = + match (abi, manifestFile) with + | Some a, Some m -> let manifest = @"Properties" @@ System.IO.Path.GetFileName(m) + [ "AndroidSupportedAbis", a + "AndroidManifest", manifest ] @ result.Properties + | Some a, None -> [ "AndroidSupportedAbis", a ] @ result.Properties + | _, _ -> result.Properties + } result From 43677e9f004a6c9fa53366bc2abbbcb131279ed0 Mon Sep 17 00:00:00 2001 From: Volodymyr Lukashevych Date: Sun, 8 Oct 2017 14:34:03 -0700 Subject: [PATCH 07/43] Add Slack API documentation for FAKE 5 --- FAKE.sln | 1 + help/markdown/api-slack.md | 52 ++++++++++++++++++++++++++++++++++ help/templates/template.cshtml | 6 ++++ 3 files changed, 59 insertions(+) create mode 100644 help/markdown/api-slack.md diff --git a/FAKE.sln b/FAKE.sln index c8eb76f317d..4c2132162ef 100644 --- a/FAKE.sln +++ b/FAKE.sln @@ -65,6 +65,7 @@ EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "markdown", "markdown", "{B9222464-CAAC-4E5F-81A0-408C7BEFDBF3}" ProjectSection(SolutionItems) = preProject help\markdown\404.md = help\markdown\404.md + help\markdown\api-slack.md = help\markdown\api-slack.md help\markdown\contributing.md = help\markdown\contributing.md help\markdown\core-targets.md = help\markdown\core-targets.md help\markdown\dotnet-assemblyinfo.md = help\markdown\dotnet-assemblyinfo.md diff --git a/help/markdown/api-slack.md b/help/markdown/api-slack.md new file mode 100644 index 00000000000..0bdf6c9f2e6 --- /dev/null +++ b/help/markdown/api-slack.md @@ -0,0 +1,52 @@ +# Sending Notifications to a Slack Webhook + +In this article you will learn how to create a [Slack](https://slack.com) webhook integration and send a notification to it. This article assumes that you already have a Slack team setup. + +**Note: This documentation is for FAKE 5. The old documentation can be found [here](todo-slacknotification.html)! ** + +[API-Reference](apidocs/fake-api-slack.html) + +## Adding a Webhook Integration to a Channel + +Follow the [instructions](https://my.slack.com/services/new/incoming-webhook/) for setting up an incoming webhook integration. When finished, you should have a Webhook URL that looks like "https://hooks.slack.com/services/some/random/text". + +## Sending a Notification to the Webhook + + open Fake.Api + + // The webhook URL from the integration you set up + let webhookUrl = "https://hooks.slack.com/services/some/random/text" + + Slack.SendNotification webhookUrl (fun p -> + {p with + Text = "My Slack Notification!\n!" + Channel = "@SomeoneImportant" + IconEmoji = ":ghost:" + Attachments = [| + {Slack.NotificationAttachmentDefaults with + Fallback = "Attachment Plain" + Text = "Attachment Rich" + Pretext = "Attachment Pretext" + Color = "danger" + Fields = [| + {Slack.NotificationAttachmentFieldDefaults with + Title = "Field Title 1" + Value = "Field Value 2"} + {Slack.NotificationAttachmentFieldDefaults with + Title = "Field Title 1" + Value = "Field Value 2"}|] + } + {Slack.NotificationAttachmentDefaults with + Fallback = "Attachment 2 Plain" + Text = "Attachment 2 Rich" + Pretext = "Attachment 2 Pretext" + Color = "#FFCCDD" + }|] + }) + |> printfn "Result: %s" + +The result should look something like this: + +![alt text](pics/slacknotification/slacknotification.png "Slack Notification Result") + +For additional information on the parameters, check out Slack's [Webhook Documentation](https://api.slack.com/incoming-webhooks) diff --git a/help/templates/template.cshtml b/help/templates/template.cshtml index 40c5cfc3544..77b208a7d34 100644 --- a/help/templates/template.cshtml +++ b/help/templates/template.cshtml @@ -70,6 +70,12 @@
  • Modules
      +
    • + API + +
    • Core
        From 0686fff756f5f045337d2b4bcffa78d06b32bf29 Mon Sep 17 00:00:00 2001 From: Volodymyr Lukashevych Date: Sun, 8 Oct 2017 14:49:45 -0700 Subject: [PATCH 08/43] Rename todo-slacknotification -> legacy-slacknotification --- FAKE.sln | 2 +- ...{todo-slacknotification.md => legacy-slacknotification.md} | 0 help/redirects/slacknotification.md | 4 ++-- help/templates/template.cshtml | 1 - 4 files changed, 3 insertions(+), 4 deletions(-) rename help/markdown/{todo-slacknotification.md => legacy-slacknotification.md} (100%) diff --git a/FAKE.sln b/FAKE.sln index 4c2132162ef..44050341d27 100644 --- a/FAKE.sln +++ b/FAKE.sln @@ -98,7 +98,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "markdown", "markdown", "{B9 help\markdown\todo-iis.md = help\markdown\todo-iis.md help\markdown\todo-msteamsnotification.md = help\markdown\todo-msteamsnotification.md help\markdown\todo-octopusdeploy.md = help\markdown\todo-octopusdeploy.md - help\markdown\todo-slacknotification.md = help\markdown\todo-slacknotification.md + help\markdown\legacy-slacknotification.md = help\markdown\legacy-slacknotification.md help\markdown\todo-stylecop.md = help\markdown\todo-stylecop.md help\markdown\todo-teamcity.md = help\markdown\todo-teamcity.md help\markdown\todo-teamcityadvanced.md = help\markdown\todo-teamcityadvanced.md diff --git a/help/markdown/todo-slacknotification.md b/help/markdown/legacy-slacknotification.md similarity index 100% rename from help/markdown/todo-slacknotification.md rename to help/markdown/legacy-slacknotification.md diff --git a/help/redirects/slacknotification.md b/help/redirects/slacknotification.md index 72f39f86b63..40c61001f63 100644 --- a/help/redirects/slacknotification.md +++ b/help/redirects/slacknotification.md @@ -2,6 +2,6 @@ This page moved to: -- Not jet migrated to FAKE 5 -- [here for FAKE 4](todo-slacknotification.html) (Final location not decided jet) +- [here for FAKE 5](api-slack.html) +- [here for FAKE 4](legacy-slacknotification.html) (Final location not decided yet) diff --git a/help/templates/template.cshtml b/help/templates/template.cshtml index 77b208a7d34..94735bf52d4 100644 --- a/help/templates/template.cshtml +++ b/help/templates/template.cshtml @@ -137,7 +137,6 @@
      • ?.?.AndroidPublisher
      • IO.FileWatcher
      • Windows.WiX
      • -
      • API.Slack
      • API.MsTeams
      • DotNet.StyleCop
      • Fake.Deploy
      • From 3caec3be76868efb90e036cfbfbbfa2f786fe8c1 Mon Sep 17 00:00:00 2001 From: Volodymyr Lukashevych Date: Sun, 8 Oct 2017 14:57:26 -0700 Subject: [PATCH 09/43] Fix legacy Slack API doc link --- help/markdown/api-slack.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/help/markdown/api-slack.md b/help/markdown/api-slack.md index 0bdf6c9f2e6..b2635791c87 100644 --- a/help/markdown/api-slack.md +++ b/help/markdown/api-slack.md @@ -2,7 +2,7 @@ In this article you will learn how to create a [Slack](https://slack.com) webhook integration and send a notification to it. This article assumes that you already have a Slack team setup. -**Note: This documentation is for FAKE 5. The old documentation can be found [here](todo-slacknotification.html)! ** +**Note: This documentation is for FAKE 5. The old documentation can be found [here](legacy-slacknotification.html)! ** [API-Reference](apidocs/fake-api-slack.html) From f4607038ae644817582e0aac06b5decdcef540c8 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 15 Oct 2017 23:43:33 +0200 Subject: [PATCH 10/43] redesign process api to use an internal record (to be able to use >>). This is required to add to all places where a process needs to be started with mono on unix platforms. --- .../Fake.Core.Environment.fsproj | 1 + src/app/Fake.Core.Environment/Operators.fs | 5 + src/app/Fake.Core.Process/Mono.fs | 23 +-- src/app/Fake.Core.Process/Process.fs | 155 +++++++++++++++--- src/app/Fake.DotNet.Cli/Dotnet.fs | 35 ++-- .../Fake.DotNet.FSFormatting/FSFormatting.fs | 7 +- src/app/Fake.DotNet.MsBuild/MsBuild.fs | 5 +- src/app/Fake.DotNet.NuGet/NuGet.fs | 27 +-- src/app/Fake.DotNet.NuGet/Restore.fs | 7 +- src/app/Fake.DotNet.Paket/Paket.fs | 45 +++-- src/app/Fake.DotNet.Testing.MSTest/MSTest.fs | 9 +- src/app/Fake.DotNet.Testing.MSpec/MSpec.fs | 9 +- src/app/Fake.DotNet.Testing.NUnit/NUnit3.fs | 9 +- src/app/Fake.DotNet.Testing.NUnit/Parallel.fs | 9 +- .../Fake.DotNet.Testing.NUnit/Sequential.fs | 9 +- .../OpenCover.fs | 17 +- src/app/Fake.DotNet.Testing.XUnit2/XUnit2.fs | 13 +- src/app/Fake.Testing.SonarQube/SonarQube.fs | 7 +- src/app/Fake.Tools.Git/CommandHelper.fs | 21 +-- .../ServiceControl.fs | 7 +- src/app/Fake.Windows.Chocolatey/Chocolatey.fs | 7 +- 21 files changed, 274 insertions(+), 153 deletions(-) create mode 100644 src/app/Fake.Core.Environment/Operators.fs diff --git a/src/app/Fake.Core.Environment/Fake.Core.Environment.fsproj b/src/app/Fake.Core.Environment/Fake.Core.Environment.fsproj index 0b50edc70a3..a7fce25cd72 100644 --- a/src/app/Fake.Core.Environment/Fake.Core.Environment.fsproj +++ b/src/app/Fake.Core.Environment/Fake.Core.Environment.fsproj @@ -17,6 +17,7 @@ + \ No newline at end of file diff --git a/src/app/Fake.Core.Environment/Operators.fs b/src/app/Fake.Core.Environment/Operators.fs new file mode 100644 index 00000000000..12d50f54bad --- /dev/null +++ b/src/app/Fake.Core.Environment/Operators.fs @@ -0,0 +1,5 @@ +namespace Fake.Core + +module Operators = + let inline (>!>) func1 func2 x = func1 x; func2 x + diff --git a/src/app/Fake.Core.Process/Mono.fs b/src/app/Fake.Core.Process/Mono.fs index 25bfac8a408..728b08d6f38 100644 --- a/src/app/Fake.Core.Process/Mono.fs +++ b/src/app/Fake.Core.Process/Mono.fs @@ -4,25 +4,4 @@ open Fake.Core open System open Fake.Core.Process -let monoPath, monoVersion = - match Process.tryFindTool "MONO" "mono" with - | Some path -> - let success, messages = - try Process.ExecProcessRedirected (fun proc -> - proc.FileName <- path - proc.Arguments <- "--version") (TimeSpan.FromMinutes 1.) - with e -> - false, - [{ ConsoleMessage.IsError = true; ConsoleMessage.Message = e.ToString(); ConsoleMessage.Timestamp = DateTimeOffset.Now }] - |> List.toSeq - let out = - let outStr = String.Join("\n", messages |> Seq.map (fun m -> m.Message)) - sprintf "Success: %b, Out: %s" success outStr - let ver = - match success, messages |> Seq.tryHead with - | true, Some firstLine -> - Some (out, Environment.Internal.parseMonoDisplayName firstLine.Message) - | _ -> - Some (out, None) - Some path, ver - | None -> None, None +let monoPath, monoVersion = Process.monoPath, Process.monoVersion diff --git a/src/app/Fake.Core.Process/Process.fs b/src/app/Fake.Core.Process/Process.fs index c82d8800e92..d89690f111a 100644 --- a/src/app/Fake.Core.Process/Process.fs +++ b/src/app/Fake.Core.Process/Process.fs @@ -146,7 +146,91 @@ type ProcessResult = Messages = messages Errors = errors } - +type ProcStartInfo = + { Arguments : string + CreateNoWindow : bool + Domain : string + Environment : Map option + ErrorDialog : bool + ErrorDialogParentHandle : IntPtr + FileName : string + /// true if the Windows user profile should be loaded; otherwise, false. The default is false. + LoadUserProfile : bool + /// The user password to use when starting the process. + Password : System.Security.SecureString + /// true if error output should be written to Process.StandardError; otherwise, false. The default is false. + RedirectStandardError : bool + /// true if input should be read from Process.StandardInput; otherwise, false. The default is false. + RedirectStandardInput : bool + /// true if output should be written to Process.StandardOutput; otherwise, false. The default is false. + RedirectStandardOutput : bool + /// An object that represents the preferred encoding for error output. The default is null. + StandardErrorEncoding : System.Text.Encoding + /// An object that represents the preferred encoding for standard output. The default is null. + StandardOutputEncoding : System.Text.Encoding + /// The user name to use when starting the process. If you use the UPN format, user@DNS_domain_name, the Domain property must be null. + UserName : string + /// true if the shell should be used when starting the process; false if the process should be created directly from the executable file. The default is true. + UseShellExecute : bool + /// The action to take with the file that the process opens. The default is an empty string (""), which signifies no action. + Verb : string + /// One of the enumeration values that indicates whether the process is started in a window that is maximized, minimized, normal (neither maximized nor minimized), or not visible. The default is Normal. + WindowStyle : ProcessWindowStyle + /// When UseShellExecute is true, the fully qualified name of the directory that contains the process to be started. When the UseShellExecute property is false, the working directory for the process to be started. The default is an empty string (""). + WorkingDirectory : string + } + static member Empty = + { Arguments = null + CreateNoWindow = false + Domain = null + Environment = None + ErrorDialog = false + ErrorDialogParentHandle = IntPtr.Zero + FileName = "" + LoadUserProfile = false + Password = null + RedirectStandardError = false + RedirectStandardInput = false + RedirectStandardOutput = false + StandardErrorEncoding = null + StandardOutputEncoding = null + UserName = null + UseShellExecute = true + Verb = "" + WindowStyle = ProcessWindowStyle.Normal + WorkingDirectory = "" } + member x.AsStartInfo = + let p = new ProcessStartInfo(x.FileName, x.Arguments) + p.CreateNoWindow <- x.CreateNoWindow + p.Domain <- x.Domain + match x.Environment with + | Some env -> + env |> Map.iter (fun var key -> + p.Environment.[var] <- key) + //p.Environment = None + | _ -> () + p.ErrorDialog <- x.ErrorDialog + p.ErrorDialogParentHandle <- x.ErrorDialogParentHandle + p.LoadUserProfile <- x.LoadUserProfile + p.Password <- x.Password + p.RedirectStandardError <- x.RedirectStandardError + p.RedirectStandardInput <- x.RedirectStandardInput + p.RedirectStandardOutput <- x.RedirectStandardOutput + p.StandardErrorEncoding <- x.StandardErrorEncoding + p.StandardOutputEncoding <- x.StandardOutputEncoding + p.UserName <- x.UserName + p.UseShellExecute <- x.UseShellExecute + p.Verb <- x.Verb + p.WindowStyle <- x.WindowStyle + p.WorkingDirectory <- x.WorkingDirectory + p + +let inline getProc config = + let startInfo : ProcStartInfo = + config { ProcStartInfo.Empty with UseShellExecute = false } + let proc = new Process() + proc.StartInfo <- startInfo.AsStartInfo + proc /// Runs the given process and returns the exit code. /// ## Parameters /// @@ -155,10 +239,9 @@ type ProcessResult = /// - `silent` - If this flag is set then the process output is redirected to the given output functions `errorF` and `messageF`. /// - `errorF` - A function which will be called with the error log. /// - `messageF` - A function which will be called with the message log. -let ExecProcessWithLambdas configProcessStartInfoF (timeOut : TimeSpan) silent errorF messageF = - use proc = new Process() - proc.StartInfo.UseShellExecute <- false - configProcessStartInfoF proc.StartInfo +let ExecProcessWithLambdas configProcessStartInfoF (timeOut : TimeSpan) silent errorF messageF = + use proc = getProc configProcessStartInfoF + //platformInfoAction proc.StartInfo if String.isNullOrEmpty proc.StartInfo.WorkingDirectory |> not then if Directory.Exists proc.StartInfo.WorkingDirectory |> not then @@ -252,12 +335,13 @@ let ExecProcess configProcessStartInfoF timeOut = [] let ExecProcessElevated cmd args timeOut = ExecProcess (fun si -> + { si with #if !NETSTANDARD - si.Verb <- "runas" + Verb = "runas" #endif - si.Arguments <- args - si.FileName <- cmd - si.UseShellExecute <- true) timeOut + Arguments = args + FileName = cmd + UseShellExecute = true }) timeOut /// Sets the environment Settings for the given startInfo. /// Existing values will be overriden. @@ -277,19 +361,15 @@ let setEnvironmentVariables (startInfo : ProcessStartInfo) environmentSettings = let execProcess configProcessStartInfoF timeOut = ExecProcess configProcessStartInfoF timeOut = 0 /// Starts the given process and returns immediatly. -let fireAndForget configProcessStartInfoF = - use proc = new Process() - proc.StartInfo.UseShellExecute <- false - configProcessStartInfoF proc.StartInfo +let fireAndForget configProcessStartInfoF = + use proc = getProc configProcessStartInfoF try start proc with ex -> raise <| exn(sprintf "Start of process %s failed." proc.StartInfo.FileName, ex) /// Runs the given process, waits for its completion and returns if it succeeded. let directExec configProcessStartInfoF = - use proc = new Process() - proc.StartInfo.UseShellExecute <- false - configProcessStartInfoF proc.StartInfo + use proc = getProc configProcessStartInfoF try start proc with ex -> raise <| exn(sprintf "Start of process %s failed." proc.StartInfo.FileName, ex) @@ -298,9 +378,7 @@ let directExec configProcessStartInfoF = /// Starts the given process and forgets about it. let StartProcess configProcessStartInfoF = - use proc = new Process() - proc.StartInfo.UseShellExecute <- false - configProcessStartInfoF proc.StartInfo + use proc = getProc configProcessStartInfoF start proc /// Adds quotes around the string @@ -574,3 +652,42 @@ type Shell() = /// - `args` - The process arguments (optional). /// - `directory` - The working directory (optional). static member AsyncExec(cmd, ?args, ?dir) = asyncShellExec (Shell.GetParams(cmd, ?args = args, ?dir = dir)) + + + +let internal monoPath, monoVersion = + match tryFindTool "MONO" "mono" with + | Some path -> + let success, messages = + try ExecProcessRedirected(fun proc -> + { proc with + FileName = path + Arguments = "--version" }) (TimeSpan.FromMinutes 1.) + with e -> + false, + [{ ConsoleMessage.IsError = true; ConsoleMessage.Message = e.ToString(); ConsoleMessage.Timestamp = DateTimeOffset.Now }] + |> List.toSeq + let out = + let outStr = String.Join("\n", messages |> Seq.map (fun m -> m.Message)) + sprintf "Success: %b, Out: %s" success outStr + let ver = + match success, messages |> Seq.tryHead with + | true, Some firstLine -> + Some (out, Environment.Internal.parseMonoDisplayName firstLine.Message) + | _ -> + Some (out, None) + Some path, ver + | None -> None, None + +/// Ensures the executable is run with the full framework. On non-windows platforms that means running the tool by invoking 'mono'. +let withFramework (proc:ProcStartInfo) = + match Environment.isWindows, proc.FileName.ToLowerInvariant().EndsWith(".exe"), monoPath with + | false, true, Some monoPath -> + { proc with + Arguments = "--debug \"" + proc.FileName + "\" " + proc.Arguments + FileName = monoPath } + | false, true, _ -> + failwithf "trying to start a .NET process on a non-windows platform, but mono could not be found. Try to set the MONO environment variable or add mono to the PATH." + | _ -> proc + + diff --git a/src/app/Fake.DotNet.Cli/Dotnet.fs b/src/app/Fake.DotNet.Cli/Dotnet.fs index e1bf08f071c..5398b1b0b38 100644 --- a/src/app/Fake.DotNet.Cli/Dotnet.fs +++ b/src/app/Fake.DotNet.Cli/Dotnet.fs @@ -312,9 +312,10 @@ let DotnetCliInstall setParams = (buildDotnetCliInstallArgs '\'' param) args, "powershell" Process.ExecProcess (fun info -> - info.FileName <- fileName - info.WorkingDirectory <- Path.GetTempPath() - info.Arguments <- args + { info with + FileName = fileName + WorkingDirectory = Path.GetTempPath() + Arguments = args } ) TimeSpan.MaxValue if exitCode <> 0 then @@ -368,24 +369,16 @@ let Dotnet (options: DotnetOptions) args = let result = Process.ExecProcessWithLambdas (fun info -> - info.FileName <- options.DotnetCliPath - info.WorkingDirectory <- options.WorkingDirectory - info.Arguments <- cmdArgs - // Add dotnet to PATH... -#if NO_DOTNETCORE_BOOTSTRAP -#if NETSTANDARD - let envDict = info.Environment -#else - let envDict = info.EnvironmentVariables -#endif -#else - let envDict = info.Environment -#endif - let dir = System.IO.Path.GetDirectoryName options.DotnetCliPath - let oldPath = System.Environment.GetEnvironmentVariable "PATH" - let key, value = "PATH", sprintf "%s%c%s" dir System.IO.Path.PathSeparator oldPath - if envDict.ContainsKey key then envDict.[key] <- value - else envDict.Add(key, value) + { info with + FileName = options.DotnetCliPath + WorkingDirectory = options.WorkingDirectory + Arguments = cmdArgs + Environment = + let dir = System.IO.Path.GetDirectoryName options.DotnetCliPath + let oldPath = System.Environment.GetEnvironmentVariable "PATH" + [ "PATH", sprintf "%s%c%s" dir System.IO.Path.PathSeparator oldPath ] + |> Map.ofSeq + |> Some } ) timeout true errorF messageF #if NO_DOTNETCORE_BOOTSTRAP Process.ProcessResult.New result messages errors diff --git a/src/app/Fake.DotNet.FSFormatting/FSFormatting.fs b/src/app/Fake.DotNet.FSFormatting/FSFormatting.fs index 5b6acd5c4c4..0d13fd25560 100644 --- a/src/app/Fake.DotNet.FSFormatting/FSFormatting.fs +++ b/src/app/Fake.DotNet.FSFormatting/FSFormatting.fs @@ -17,9 +17,10 @@ let mutable toolPath = /// Runs fsformatting.exe with the given command in the given repository directory. let private run toolPath command = - if 0 <> ExecProcess (fun info -> - info.FileName <- toolPath - info.Arguments <- command) System.TimeSpan.MaxValue + if 0 <> ExecProcess ((fun info -> + { info with + FileName = toolPath + Arguments = command }) >> Process.withFramework) System.TimeSpan.MaxValue then failwithf "FSharp.Formatting %s failed." command type LiterateArguments = diff --git a/src/app/Fake.DotNet.MsBuild/MsBuild.fs b/src/app/Fake.DotNet.MsBuild/MsBuild.fs index 7fdbf6e7b7b..2b3af1a26dc 100644 --- a/src/app/Fake.DotNet.MsBuild/MsBuild.fs +++ b/src/app/Fake.DotNet.MsBuild/MsBuild.fs @@ -454,8 +454,9 @@ let build setParams project = Trace.tracefn "Building project: %s\n %s %s" project msBuildExe args let exitCode = Process.ExecProcess (fun info -> - info.FileName <- msBuildExe - info.Arguments <- args) TimeSpan.MaxValue + { info with + FileName = msBuildExe + Arguments = args}) TimeSpan.MaxValue if exitCode <> 0 then let errors = System.Threading.Thread.Sleep(200) // wait for the file to write diff --git a/src/app/Fake.DotNet.NuGet/NuGet.fs b/src/app/Fake.DotNet.NuGet/NuGet.fs index f2dda583d00..5ef044535c9 100644 --- a/src/app/Fake.DotNet.NuGet/NuGet.fs +++ b/src/app/Fake.DotNet.NuGet/NuGet.fs @@ -285,10 +285,11 @@ let private pack parameters nuspecFile = let execute args = let result = - ExecProcessAndReturnMessages (fun info -> - info.FileName <- parameters.ToolPath - info.WorkingDirectory <- Path.getFullName parameters.WorkingDir - info.Arguments <- args) parameters.TimeOut + ExecProcessAndReturnMessages ((fun info -> + { info with + FileName = parameters.ToolPath + WorkingDirectory = Path.getFullName parameters.WorkingDir + Arguments = args }) >> Process.withFramework) parameters.TimeOut if result.ExitCode <> 0 || result.Errors.Count > 0 then failwithf "Error during NuGet package creation. %s %s\r\n%s" parameters.ToolPath args (toLines result.Errors) match parameters.SymbolPackage with @@ -329,10 +330,11 @@ let rec private publish parameters = let tracing = shouldEnableProcessTracing() try setEnableProcessTracing false - ExecProcess (fun info -> - info.FileName <- parameters.ToolPath - info.WorkingDirectory <- FullName parameters.WorkingDir - info.Arguments <- args) parameters.TimeOut + ExecProcess ((fun info -> + { info with + FileName = parameters.ToolPath + WorkingDirectory = FullName parameters.WorkingDir + Arguments = args }) >> Process.withFramework) parameters.TimeOut finally setEnableProcessTracing tracing if result <> 0 then failwithf "Error during NuGet push. %s %s" parameters.ToolPath args with exn when parameters.PublishTrials > 0 -> @@ -351,10 +353,11 @@ let rec private publishSymbols parameters = let tracing = shouldEnableProcessTracing() try setEnableProcessTracing false - ExecProcess (fun info -> - info.FileName <- parameters.ToolPath - info.WorkingDirectory <- FullName parameters.WorkingDir - info.Arguments <- args) parameters.TimeOut + ExecProcess ((fun info -> + { info with + FileName = parameters.ToolPath + WorkingDirectory = FullName parameters.WorkingDir + Arguments = args }) >> Process.withFramework) parameters.TimeOut finally setEnableProcessTracing tracing if result <> 0 then failwithf "Error during NuGet symbol push. %s %s" parameters.ToolPath args with exn when parameters.PublishTrials > 0-> diff --git a/src/app/Fake.DotNet.NuGet/Restore.fs b/src/app/Fake.DotNet.NuGet/Restore.fs index 8787e0d650c..75ee42bfc4c 100644 --- a/src/app/Fake.DotNet.NuGet/Restore.fs +++ b/src/app/Fake.DotNet.NuGet/Restore.fs @@ -95,9 +95,10 @@ let RestoreSinglePackageDefaults = /// [omit] let runNuGet toolPath timeOut args failWith = - if 0 <> ExecProcess (fun info -> - info.FileName <- toolPath |> Path.getFullName - info.Arguments <- args) timeOut + if 0 <> ExecProcess ((fun info -> + { info with + FileName = toolPath |> Path.getFullName + Arguments = args }) >> Process.withFramework) timeOut then failWith() diff --git a/src/app/Fake.DotNet.Paket/Paket.fs b/src/app/Fake.DotNet.Paket/Paket.fs index 5c591211b7b..c41236545d0 100644 --- a/src/app/Fake.DotNet.Paket/Paket.fs +++ b/src/app/Fake.DotNet.Paket/Paket.fs @@ -91,6 +91,14 @@ let PaketRestoreDefaults() : PaketRestoreParams = ReferenceFiles = [] Group = "" } + +let inline private startPaket toolPath workDir (info:Process.ProcStartInfo) = + { info with + FileName = toolPath + WorkingDirectory = workDir } +let inline private withArgs args (info:Process.ProcStartInfo) = + { info with Arguments = args } + /// Creates a new NuGet package by using Paket pack on all paket.template files in the working directory. /// ## Parameters /// @@ -122,11 +130,11 @@ let Pack setParams = sprintf "%s%s%s%s%s%s%s%s%s%s%s%s%s" version specificVersions releaseNotes buildConfig buildPlatform templateFile lockDependencies excludedTemplates symbols includeReferencedProjects minimumFromLockFile pinProjectReferences projectUrl - Process.ExecProcess - (fun info -> - info.FileName <- parameters.ToolPath - info.WorkingDirectory <- parameters.WorkingDir - info.Arguments <- sprintf "pack output \"%s\" %s" parameters.OutputPath cmdArgs) parameters.TimeOut + Process.ExecProcess + (startPaket parameters.ToolPath parameters.WorkingDir + >> withArgs (sprintf "pack output \"%s\" %s" parameters.OutputPath cmdArgs) + >> Process.withFramework) + parameters.TimeOut if packResult <> 0 then failwithf "Error during packing %s." parameters.WorkingDir @@ -164,10 +172,11 @@ let PushFiles setParams files = |> Seq.toArray |> Array.map (fun package -> async { let pushResult = - Process.ExecProcess (fun info -> - info.FileName <- parameters.ToolPath - info.WorkingDirectory <- parameters.WorkingDir - info.Arguments <- sprintf "push %s%s%s%s" url endpoint key (Process.toParam package)) parameters.TimeOut + Process.ExecProcess + (startPaket parameters.ToolPath parameters.WorkingDir + >> withArgs (sprintf "push %s%s%s%s" url endpoint key (Process.toParam package)) + >> Process.withFramework) + parameters.TimeOut if pushResult <> 0 then failwithf "Error during pushing %s." package }) Async.Parallel tasks @@ -177,10 +186,11 @@ let PushFiles setParams files = else for package in packages do let pushResult = - Process.ExecProcess (fun info -> - info.FileName <- parameters.ToolPath - info.WorkingDirectory <- parameters.WorkingDir - info.Arguments <- sprintf "push %s%s%s%s" url endpoint key (Process.toParam package)) parameters.TimeOut + Process.ExecProcess + (startPaket parameters.ToolPath parameters.WorkingDir + >> withArgs (sprintf "push %s%s%s%s" url endpoint key (Process.toParam package)) + >> Process.withFramework) + parameters.TimeOut if pushResult <> 0 then failwithf "Error during pushing %s." package /// Pushes all NuGet packages in the working dir to the server by using Paket push. @@ -246,9 +256,10 @@ let Restore setParams = use __ = Trace.traceTask "PaketRestore" parameters.WorkingDir let restoreResult = - Process.ExecProcess (fun info -> - info.FileName <- parameters.ToolPath - info.WorkingDirectory <- parameters.WorkingDir - info.Arguments <- sprintf "restore %s%s%s%s" forceRestore onlyReferenced groupArg referencedFiles) parameters.TimeOut + Process.ExecProcess + (startPaket parameters.ToolPath parameters.WorkingDir + >> withArgs (sprintf "restore %s%s%s%s" forceRestore onlyReferenced groupArg referencedFiles) + >> Process.withFramework) + parameters.TimeOut if restoreResult <> 0 then failwithf "Error during restore %s." parameters.WorkingDir diff --git a/src/app/Fake.DotNet.Testing.MSTest/MSTest.fs b/src/app/Fake.DotNet.Testing.MSTest/MSTest.fs index 86b0c4bcf7c..95c454ea451 100644 --- a/src/app/Fake.DotNet.Testing.MSTest/MSTest.fs +++ b/src/app/Fake.DotNet.Testing.MSTest/MSTest.fs @@ -112,8 +112,9 @@ let MSTest (setParams : MSTestParams -> MSTestParams) (assemblies : string seq) failwith message for assembly in assemblies do let args = buildMSTestArgs parameters assembly - ExecProcess (fun info -> - info.FileName <- parameters.ToolPath - info.WorkingDirectory <- parameters.WorkingDir - info.Arguments <- args) parameters.TimeOut + ExecProcess ((fun info -> + { info with + FileName = parameters.ToolPath + WorkingDirectory = parameters.WorkingDir + Arguments = args }) >> Process.withFramework) parameters.TimeOut |> failIfError assembly diff --git a/src/app/Fake.DotNet.Testing.MSpec/MSpec.fs b/src/app/Fake.DotNet.Testing.MSpec/MSpec.fs index a551f97f7b4..94406d2549e 100644 --- a/src/app/Fake.DotNet.Testing.MSpec/MSpec.fs +++ b/src/app/Fake.DotNet.Testing.MSpec/MSpec.fs @@ -93,10 +93,11 @@ let MSpec setParams assemblies = let parameters = setParams MSpecDefaults let args = buildMSpecArgs parameters assemblies Trace.trace (parameters.ToolPath + " " + args) - if 0 <> ExecProcess (fun info -> - info.FileName <- parameters.ToolPath - info.WorkingDirectory <- parameters.WorkingDir - info.Arguments <- args) parameters.TimeOut + if 0 <> ExecProcess ((fun info -> + { info with + FileName = parameters.ToolPath + WorkingDirectory = parameters.WorkingDir + Arguments = args}) >> Process.withFramework) parameters.TimeOut then sprintf "MSpec test failed on %s." details |> match parameters.ErrorLevel with | Error | FailOnFirstError -> failwith diff --git a/src/app/Fake.DotNet.Testing.NUnit/NUnit3.fs b/src/app/Fake.DotNet.Testing.NUnit/NUnit3.fs index a20d2a5ee8f..0958d768a82 100644 --- a/src/app/Fake.DotNet.Testing.NUnit/NUnit3.fs +++ b/src/app/Fake.DotNet.Testing.NUnit/NUnit3.fs @@ -322,10 +322,11 @@ let NUnit3 (setParams : NUnit3Params -> NUnit3Params) (assemblies : string seq) Trace.trace (tool + " " + args) let processTimeout = TimeSpan.MaxValue // Don't set a process timeout. The timeout is per test. let result = - ExecProcess (fun info -> - info.FileName <- tool - info.WorkingDirectory <- getWorkingDir parameters - info.Arguments <- args) processTimeout + ExecProcess ((fun info -> + { info with + FileName = tool + WorkingDirectory = getWorkingDir parameters + Arguments = args }) >> Process.withFramework) processTimeout let errorDescription error = match error with | OK -> "OK" diff --git a/src/app/Fake.DotNet.Testing.NUnit/Parallel.fs b/src/app/Fake.DotNet.Testing.NUnit/Parallel.fs index 205722652d5..f4c30a63d06 100644 --- a/src/app/Fake.DotNet.Testing.NUnit/Parallel.fs +++ b/src/app/Fake.DotNet.Testing.NUnit/Parallel.fs @@ -59,10 +59,11 @@ let NUnitParallel (setParams : NUnitParams -> NUnitParams) (assemblies : string let stopwatch = System.Diagnostics.Stopwatch.StartNew() let result = - ExecProcessWithLambdas (fun info -> - info.FileName <- tool - info.WorkingDirectory <- getWorkingDir parameters - info.Arguments <- args) parameters.TimeOut true (fun e -> errout.Append(e) |> ignore) + ExecProcessWithLambdas ((fun info -> + { info with + FileName = tool + WorkingDirectory = getWorkingDir parameters + Arguments = args }) >> Process.withFramework) parameters.TimeOut true (fun e -> errout.Append(e) |> ignore) (fun s -> stdout.Append(s) |> ignore) stopwatch.Stop() Trace.tracefn "NUnit tests from %s finished in %O with result code %d." name stopwatch.Elapsed result diff --git a/src/app/Fake.DotNet.Testing.NUnit/Sequential.fs b/src/app/Fake.DotNet.Testing.NUnit/Sequential.fs index e7154151ed0..49df7ff62b5 100644 --- a/src/app/Fake.DotNet.Testing.NUnit/Sequential.fs +++ b/src/app/Fake.DotNet.Testing.NUnit/Sequential.fs @@ -39,10 +39,11 @@ let NUnit (setParams : NUnitParams -> NUnitParams) (assemblies : string seq) = let args = buildNUnitdArgs parameters assemblies Trace.trace (tool + " " + args) let result = - ExecProcess (fun info -> - info.FileName <- tool - info.WorkingDirectory <- getWorkingDir parameters - info.Arguments <- args) parameters.TimeOut + ExecProcess ((fun info -> + { info with + FileName = tool + WorkingDirectory = getWorkingDir parameters + Arguments = args }) >> Process.withFramework) parameters.TimeOut //sendTeamCityNUnitImport parameters.OutputFile let errorDescription error = match error with diff --git a/src/app/Fake.DotNet.Testing.OpenCover/OpenCover.fs b/src/app/Fake.DotNet.Testing.OpenCover/OpenCover.fs index 40789df8177..f4ac5c616be 100644 --- a/src/app/Fake.DotNet.Testing.OpenCover/OpenCover.fs +++ b/src/app/Fake.DotNet.Testing.OpenCover/OpenCover.fs @@ -138,10 +138,12 @@ module Fake.DotNet.Testing.OpenCover let processArgs = buildOpenCoverArgs param targetArgs Trace.tracefn "OpenCover command\n%s %s" param.ExePath processArgs let ok = - execProcess (fun info -> - info.FileName <- param.ExePath - if param.WorkingDir <> String.Empty then info.WorkingDirectory <- param.WorkingDir - info.Arguments <- processArgs) param.TimeOut + execProcess ((fun info -> + { info with + FileName = param.ExePath + WorkingDirectory = + if param.WorkingDir <> String.Empty then param.WorkingDir else info.WorkingDirectory + Arguments = processArgs }) >> Process.withFramework) param.TimeOut if not ok then failwithf "OpenCover reported errors." /// Show version OpenCover @@ -159,6 +161,7 @@ module Fake.DotNet.Testing.OpenCover | Some setParams -> setParams OpenCoverDefaults | None -> OpenCoverDefaults - ExecProcess (fun info -> - info.FileName <- param.ExePath - info.Arguments <- "-version") param.TimeOut |> ignore + ExecProcess ((fun info -> + { info with + FileName = param.ExePath + Arguments = "-version" }) >> Process.withFramework) param.TimeOut |> ignore diff --git a/src/app/Fake.DotNet.Testing.XUnit2/XUnit2.fs b/src/app/Fake.DotNet.Testing.XUnit2/XUnit2.fs index 7fe229e00e8..e377166d145 100644 --- a/src/app/Fake.DotNet.Testing.XUnit2/XUnit2.fs +++ b/src/app/Fake.DotNet.Testing.XUnit2/XUnit2.fs @@ -228,8 +228,8 @@ let buildXUnit2Args assemblies parameters = /// so it does not interfere with older versions. let internal discoverNoAppDomainExists parameters = let helpText = - ExecProcessAndReturnMessages (fun info -> - info.FileName <- parameters.ToolPath ) (TimeSpan.FromMinutes 1.) + ExecProcessAndReturnMessages ((fun info -> + { info with FileName = parameters.ToolPath}) >> Process.withFramework) (TimeSpan.FromMinutes 1.) let canSetNoAppDomain = helpText.Messages.Any(fun msg -> msg.Contains("-noappdomain")) {parameters with NoAppDomain = canSetNoAppDomain} @@ -279,9 +279,10 @@ let xUnit2 setParams assemblies = else parametersFirst let result = - ExecProcess (fun info -> - info.FileName <- parameters.ToolPath - info.WorkingDirectory <- defaultArg parameters.WorkingDir "." - info.Arguments <- parameters |> buildXUnit2Args assemblies) parameters.TimeOut + ExecProcess ((fun info -> + { info with + FileName = parameters.ToolPath + WorkingDirectory = defaultArg parameters.WorkingDir "." + Arguments = parameters |> buildXUnit2Args assemblies}) >> Process.withFramework) parameters.TimeOut ResultHandling.failBuildIfXUnitReportedError parameters.ErrorLevel result diff --git a/src/app/Fake.Testing.SonarQube/SonarQube.fs b/src/app/Fake.Testing.SonarQube/SonarQube.fs index 907dec3e500..300ef004c42 100644 --- a/src/app/Fake.Testing.SonarQube/SonarQube.fs +++ b/src/app/Fake.Testing.SonarQube/SonarQube.fs @@ -53,9 +53,10 @@ module Fake.Testing.SonarQube | End -> "end " + setArgs + cfgArgs let result = - ExecProcess (fun info -> - info.FileName <- sonarPath - info.Arguments <- args) System.TimeSpan.MaxValue + ExecProcess ((fun info -> + { info with + FileName = sonarPath + Arguments = args }) >> Process.withFramework) System.TimeSpan.MaxValue if result <> 0 then failwithf "Error during sonar qube call %s" (call.ToString()) /// This task to can be used to run the begin command of [Sonar Qube](http://sonarqube.org/) on a project. diff --git a/src/app/Fake.Tools.Git/CommandHelper.fs b/src/app/Fake.Tools.Git/CommandHelper.fs index 4c941678f82..6b72def07fc 100644 --- a/src/app/Fake.Tools.Git/CommandHelper.fs +++ b/src/app/Fake.Tools.Git/CommandHelper.fs @@ -29,13 +29,16 @@ let gitPath = let ev = environVar "GIT" if not (isNullOrEmpty ev) then ev else findPath "GitPath" GitPath "git.exe" +let inline private setInfo gitPath repositoryDir command info = + { info with + FileName = gitPath + WorkingDirectory = repositoryDir + Arguments = command } + /// Runs git.exe with the given command in the given repository directory. let runGitCommand repositoryDir command = let processResult = - ExecProcessAndReturnMessages (fun info -> - info.FileName <- gitPath - info.WorkingDirectory <- repositoryDir - info.Arguments <- command) gitTimeOut + ExecProcessAndReturnMessages (setInfo gitPath repositoryDir command) gitTimeOut processResult.OK,processResult.Messages,toLines processResult.Errors @@ -49,17 +52,11 @@ let getGitResult repositoryDir command = /// Fires the given git command ind the given repository directory and returns immediatly. let fireAndForgetGitCommand repositoryDir command = - fireAndForget (fun info -> - info.FileName <- gitPath - info.WorkingDirectory <- repositoryDir - info.Arguments <- command) + fireAndForget (setInfo gitPath repositoryDir command) /// Runs the given git command, waits for its completion and returns whether it succeeded. let directRunGitCommand repositoryDir command = - directExec (fun info -> - info.FileName <- gitPath - info.WorkingDirectory <- repositoryDir - info.Arguments <- command) + directExec (setInfo gitPath repositoryDir command) /// Runs the given git command, waits for its completion and fails when it didn't succeeded. let directRunGitCommandAndFail repositoryDir command = diff --git a/src/app/Fake.Tools.ServiceControl/ServiceControl.fs b/src/app/Fake.Tools.ServiceControl/ServiceControl.fs index 671c15837a8..ad0cf1302dc 100644 --- a/src/app/Fake.Tools.ServiceControl/ServiceControl.fs +++ b/src/app/Fake.Tools.ServiceControl/ServiceControl.fs @@ -157,9 +157,10 @@ let RunRemoteService command host serviceName = | _ -> host, @"\\" + host Trace.tracefn "%s %s on %s" command serviceName host if not <| Process.directExec (fun p -> - p.FileName <- "sc" - p.Arguments <- sprintf @"%s %s %s" address command serviceName - p.RedirectStandardOutput <- true + { p with + FileName = "sc" + Arguments = sprintf @"%s %s %s" address command serviceName + RedirectStandardOutput = true } ) then failwith "Failed to send command to service." /// Sends a command to a local windows service. diff --git a/src/app/Fake.Windows.Chocolatey/Chocolatey.fs b/src/app/Fake.Windows.Chocolatey/Chocolatey.fs index 943fd1d7bff..38598244ef0 100644 --- a/src/app/Fake.Windows.Chocolatey/Chocolatey.fs +++ b/src/app/Fake.Windows.Chocolatey/Chocolatey.fs @@ -358,9 +358,10 @@ module Fake.Windows.Choco if found <> None then found.Value else failwith "Cannot find the choco executable." use __ = Trace.traceTask "choco" args - let setInfo (info:ProcessStartInfo) = - info.FileName <- chocoExe - info.Arguments <- args + let setInfo (info:ProcStartInfo) = + { info with + FileName = chocoExe + Arguments = args } let result = ExecProcess (setInfo) timeout if result <> 0 then failwithf "choco failed with exit code %i." result From 6f04c0ca4e6af254dee96a11cdf2beb821990d7a Mon Sep 17 00:00:00 2001 From: Kent Boogaart Date: Mon, 16 Oct 2017 10:04:35 +1030 Subject: [PATCH 11/43] netcore migration (WIP) --- build.fsx | 21 +- src/app/Fake.DotNet.Xamarin/AssemblyInfo.fs | 17 + .../Fake.DotNet.Xamarin.fsproj | 27 + src/app/Fake.DotNet.Xamarin/Xamarin.fs | 464 ++++++++++++++++++ src/app/Fake.DotNet.Xamarin/paket.references | 4 + src/app/FakeLib/FakeLib.fsproj | 4 +- 6 files changed, 526 insertions(+), 11 deletions(-) create mode 100644 src/app/Fake.DotNet.Xamarin/AssemblyInfo.fs create mode 100644 src/app/Fake.DotNet.Xamarin/Fake.DotNet.Xamarin.fsproj create mode 100644 src/app/Fake.DotNet.Xamarin/Xamarin.fs create mode 100644 src/app/Fake.DotNet.Xamarin/paket.references diff --git a/build.fsx b/build.fsx index c5cf009da99..66cf83aa205 100644 --- a/build.fsx +++ b/build.fsx @@ -202,6 +202,7 @@ let dotnetAssemblyInfos = "Fake.DotNet.Testing.NUnit", "Running nunit test runner" "Fake.DotNet.Testing.XUnit2", "Running xunit test runner" "Fake.DotNet.Testing.MSTest", "Running mstest test runner" + "Fake.DotNet.Xamarin", "Running Xamarin builds" "Fake.IO.FileSystem", "Core Filesystem utilities" "Fake.IO.Zip", "Core Zip functionality" "Fake.netcore", "Command line tool" @@ -212,7 +213,7 @@ let dotnetAssemblyInfos = "Fake.Windows.Chocolatey", "Running and packaging with Chocolatey" "Fake.Testing.SonarQube", "Analyzing your project with SonarQube" "Fake.DotNet.Testing.OpenCover", "Code coverage with OpenCover" ] - + let assemblyInfos = [ "./src/app/FAKE/AssemblyInfo.fs", [ AssemblyInfo.Title "FAKE - F# Make Command line tool" @@ -253,7 +254,7 @@ Target.Create "SetAssemblyInfo" (fun _ -> ) Target.Create "DownloadPaket" (fun _ -> - if 0 <> Process.ExecProcess (fun info -> + if 0 <> Process.ExecProcess (fun info -> info.FileName <- ".paket/paket.exe" info.Arguments <- "--version") (System.TimeSpan.FromMinutes 5.0) then failwith "paket failed to start" @@ -330,14 +331,14 @@ Target.Create "GenerateDocs" (fun _ -> Directory.ensure apidocsDir dllFiles - |> FSFormatting.CreateDocsForDlls (fun s -> - { s with + |> FSFormatting.CreateDocsForDlls (fun s -> + { s with OutputDirectory = apidocsDir - LayoutRoots = layoutroots + LayoutRoots = layoutroots LibDirs = [ "./build" ] // TODO: CurrentPage shouldn't be required as it's written in the template, but it is -> investigate ProjectParameters = ("CurrentPage", "APIReference") :: projInfo - SourceRepository = githubLink + "/blob/master" }) + SourceRepository = githubLink + "/blob/master" }) ) @@ -720,7 +721,7 @@ Target.Create "DotnetPackage_" (fun _ -> Framework = Some "netcoreapp2.0" OutputPath = Some outDir }) netcoreFsproj - + ) Target.Create "DotnetCoreCreateZipPackages" (fun _ -> @@ -884,7 +885,7 @@ Target.Create "ReleaseDocs" (fun _ -> ) Target.Create "FastRelease" (fun _ -> - + Git.Staging.StageAll "" Git.Commit.Commit "" (sprintf "Bump version to %s" release.NugetVersion) let branch = Git.Information.getBranchName "" @@ -892,12 +893,12 @@ Target.Create "FastRelease" (fun _ -> Git.Branches.tag "" release.NugetVersion Git.Branches.pushTag "" "origin" release.NugetVersion - + let token = match Environment.environVarOrDefault "github_token" "" with | s when not (System.String.IsNullOrWhiteSpace s) -> s | _ -> failwith "please set the github_token environment variable to a github personal access token with repro access." - + let draft = GitHub.createClientWithToken token |> GitHub.createDraft gitOwner gitName release.NugetVersion (release.SemVer.PreRelease <> None) release.Notes diff --git a/src/app/Fake.DotNet.Xamarin/AssemblyInfo.fs b/src/app/Fake.DotNet.Xamarin/AssemblyInfo.fs new file mode 100644 index 00000000000..9ed5e64d4f4 --- /dev/null +++ b/src/app/Fake.DotNet.Xamarin/AssemblyInfo.fs @@ -0,0 +1,17 @@ +// Auto-Generated by FAKE; do not edit +namespace System +open System.Reflection + +[] +[] +[] +[] +[] +do () + +module internal AssemblyVersionInformation = + let [] AssemblyTitle = "FAKE - F# Make Running msbuild" + let [] AssemblyProduct = "FAKE - F# Make" + let [] AssemblyVersion = "5.0.0" + let [] AssemblyInformationalVersion = "5.0.0" + let [] AssemblyFileVersion = "5.0.0" diff --git a/src/app/Fake.DotNet.Xamarin/Fake.DotNet.Xamarin.fsproj b/src/app/Fake.DotNet.Xamarin/Fake.DotNet.Xamarin.fsproj new file mode 100644 index 00000000000..b3b3cc8c48e --- /dev/null +++ b/src/app/Fake.DotNet.Xamarin/Fake.DotNet.Xamarin.fsproj @@ -0,0 +1,27 @@ + + + 1.0.0-alpha-10 + net46;netstandard1.6;netstandard2.0 + $(DefineConstants);DOTNETCORE + pdbonly + true + Fake.DotNet.Xamarin + Library + + + + + + + + true + + + + $(DefineConstants);FX_NO_SYSTEM_CONFIGURATION;NO_MSBUILD_AVAILABLE + + + $(DefineConstants);RELEASE + + + \ No newline at end of file diff --git a/src/app/Fake.DotNet.Xamarin/Xamarin.fs b/src/app/Fake.DotNet.Xamarin/Xamarin.fs new file mode 100644 index 00000000000..57f041fa656 --- /dev/null +++ b/src/app/Fake.DotNet.Xamarin/Xamarin.fs @@ -0,0 +1,464 @@ +/// Contains tasks for building Xamarin.iOS and Xamarin.Android apps +module Fake.XamarinHelper + +open System +open System.IO +open System.Text.RegularExpressions +open System.Xml.Linq +open System.Xml +open System.Text + +let private executeCommand command args = + ExecProcessAndReturnMessages (fun p -> + p.FileName <- command + p.Arguments <- args + ) TimeSpan.MaxValue + |> fun result -> + let output = String.Join (Environment.NewLine, result.Messages) + tracefn "Process output: \r\n%A" output + if result.ExitCode <> 0 then failwithf "%s exited with error %d" command result.ExitCode + +/// The package restore paramater type +[] +type XamarinComponentRestoreParams = { + /// Path to xamarin-component.exe, defaults to checking tools/xpkg + ToolPath: string +} + +/// The default package restore parameters +let XamarinComponentRestoreDefaults = { + ToolPath = findToolInSubPath "xamarin-component.exe" (currentDirectory @@ "tools" @@ "xpkg") +} + +/// Restores NuGet packages and Xamarin Components for a project or solution +/// ## Parameters +/// - `setParams` - Function used to override the default package restore parameters +let RestoreComponents setParams projectFile = + let restoreComponents project param = + executeCommand param.ToolPath ("restore " + project) + + XamarinComponentRestoreDefaults + |> setParams + |> restoreComponents projectFile + +/// The iOS build paramater type +[] +type iOSBuildParams = { + /// (Required) Path to solution or project file + ProjectPath: string + /// Build target, defaults to Build + Target: string + /// Build configuration, defaults to 'Debug' + Configuration: string + /// Build platform, defaults to 'iPhoneSimulator' + Platform: string + /// Output path for build, defaults to project settings + OutputPath: string + /// Indicates if an IPA file should be generated + BuildIpa: bool + /// Additional MSBuild properties, defaults to empty list + Properties: (string * string) list + MaxCpuCount : int option option + NoLogo : bool + NodeReuse : bool + RestorePackagesFlag : bool + ToolsVersion : string option + Verbosity : MSBuildVerbosity option + NoConsoleLogger : bool + FileLoggers : MSBuildFileLoggerConfig list option + BinaryLoggers : string list option + DistributedLoggers : (MSBuildDistributedLoggerConfig * MSBuildDistributedLoggerConfig option) list option +} + +/// The default iOS build parameters +let iOSBuildDefaults = { + ProjectPath = "" + Target = "Build" + Configuration = "Debug" + Platform = "iPhoneSimulator" + OutputPath = "" + BuildIpa = false + Properties = [] + MaxCpuCount = Some None + NoLogo = false + NodeReuse = false + ToolsVersion = None + Verbosity = None + NoConsoleLogger = false + RestorePackagesFlag = false + FileLoggers = None + BinaryLoggers = None + DistributedLoggers = None +} + + +type AndroidAbiTargetConfig = { + SuffixAndExtension: string +} + +type AndroidAbiTarget = + | X86 of AndroidAbiTargetConfig + | ArmEabi of AndroidAbiTargetConfig + | ArmEabiV7a of AndroidAbiTargetConfig + | Arm64V8a of AndroidAbiTargetConfig + | X86And64 of AndroidAbiTargetConfig + | AllAbi + +type AndroidPackageAbiParam = + | OneApkForAll + | SpecificAbis of AndroidAbiTarget list + +let AllAndroidAbiTargets = + AndroidPackageAbiParam.SpecificAbis + ( [ AndroidAbiTarget.X86({ SuffixAndExtension="-x86.apk"; }) + AndroidAbiTarget.ArmEabi({ SuffixAndExtension="-armeabi.apk"; }) + AndroidAbiTarget.ArmEabiV7a({ SuffixAndExtension="-armeabi-v7a.apk"; }) + AndroidAbiTarget.Arm64V8a({ SuffixAndExtension="-arm64-v8a.apk"; }) + AndroidAbiTarget.X86And64({ SuffixAndExtension="-x86_64.apk"; }) + ] ) + +type IncrementerVersion = int32 -> AndroidAbiTarget -> int32 + +/// Builds a project or solution using Xamarin's iOS build tools +/// ## Parameters +/// - `setParams` - Function used to override the default build parameters +let iOSBuild setParams = + let validateParams param = + if param.ProjectPath = "" then failwith "You must specify a project to package" + let exists parameter = param.Properties |> List.exists (fun (key, _) -> key.Equals(parameter, StringComparison.OrdinalIgnoreCase)) + + if exists("Configuration") then failwith "Cannot specify build configuration via additional parameters. Use Configuration field instead." + if exists("Platform") then failwith "Cannot specify build platform via additional parameters. Use Platform field instead." + if exists("BuildIpa") then failwith "Cannot specify build IPA via additional parameters. Use BuildIpa field instead." + + param + + let applyiOSBuildParamsToMSBuildParams iOSBuildParams buildParams = + let msBuildParams = + { buildParams with + Targets = [ iOSBuildParams.Target ] + Properties = [ "Configuration", iOSBuildParams.Configuration; "Platform", iOSBuildParams.Platform; "BuildIpa", iOSBuildParams.BuildIpa.ToString() ] @ iOSBuildParams.Properties + MaxCpuCount = iOSBuildParams.MaxCpuCount + NoLogo = iOSBuildParams.NoLogo + NodeReuse = iOSBuildParams.NodeReuse + ToolsVersion = iOSBuildParams.ToolsVersion + Verbosity = iOSBuildParams.Verbosity + NoConsoleLogger = iOSBuildParams.NoConsoleLogger + RestorePackagesFlag = iOSBuildParams.RestorePackagesFlag + FileLoggers = iOSBuildParams.FileLoggers + BinaryLoggers = iOSBuildParams.BinaryLoggers + DistributedLoggers = iOSBuildParams.DistributedLoggers + } + + let msBuildParams = + if isNullOrEmpty iOSBuildParams.OutputPath then msBuildParams + else + { msBuildParams with + Properties = [ "OutputPath", FullName iOSBuildParams.OutputPath ] @ msBuildParams.Properties + } + + msBuildParams + + let buildProject param = + build (fun msbuildParam -> applyiOSBuildParamsToMSBuildParams param msbuildParam) param.ProjectPath |> ignore + + iOSBuildDefaults + |> setParams + |> validateParams + |> buildProject + +/// The Android packaging parameter type +[] +type AndroidPackageParams = { + /// (Required) Path to the Android project file (not the solution file!) + ProjectPath: string + /// Build configuration, defaults to 'Release' + Configuration: string + /// Output path for build, defaults to 'bin/Release' + OutputPath: string + /// Additional MSBuild properties, defaults to empty list + Properties: (string * string) list + /// Build an APK Targetting One ABI (used to reduce the size of the APK and support different CPU architectures) + PackageAbiTargets: AndroidPackageAbiParam + /// Used for multiple APK packaging to set different version code par ABI + VersionStepper:IncrementerVersion option + MaxCpuCount : int option option + NoLogo : bool + NodeReuse : bool + RestorePackagesFlag : bool + ToolsVersion : string option + Verbosity : MSBuildVerbosity option + NoConsoleLogger : bool + FileLoggers : MSBuildFileLoggerConfig list option + BinaryLoggers : string list option + DistributedLoggers : (MSBuildDistributedLoggerConfig * MSBuildDistributedLoggerConfig option) list option +} + +/// The default Android packaging parameters +let AndroidPackageDefaults = { + ProjectPath = "" + Configuration = "Release" + OutputPath = "bin/Release" + Properties = [] + PackageAbiTargets = AndroidPackageAbiParam.OneApkForAll + VersionStepper = None + MaxCpuCount = Some None + NoLogo = false + NodeReuse = false + ToolsVersion = None + Verbosity = None + NoConsoleLogger = false + RestorePackagesFlag = false + FileLoggers = None + BinaryLoggers = None + DistributedLoggers = None +} + +/// Packages a Xamarin.Android app, returning a multiple FileInfo objects for the unsigned APK files +/// ## Parameters +/// - `setParams` - Function used to override the default build parameters +let AndroidBuildPackages setParams = + let validateParams param = + if param.ProjectPath = "" then failwith "You must specify a project to package" + if param.Properties + |> List.exists (fun (key, _) -> key.Equals("Configuration", StringComparison.OrdinalIgnoreCase)) + then failwith "Cannot specify build configuration via additional parameters. Use Configuration field instead." + + param + + let applyAndroidBuildParamsToMSBuildParams androidBuildParams buildParams = + let msBuildParams = + { buildParams with + Targets = [ "PackageForAndroid" ] + Properties = [ "Configuration", androidBuildParams.Configuration ] @ androidBuildParams.Properties + MaxCpuCount = androidBuildParams.MaxCpuCount + NoLogo = androidBuildParams.NoLogo + NodeReuse = androidBuildParams.NodeReuse + ToolsVersion = androidBuildParams.ToolsVersion + Verbosity = androidBuildParams.Verbosity + NoConsoleLogger = androidBuildParams.NoConsoleLogger + RestorePackagesFlag = androidBuildParams.RestorePackagesFlag + FileLoggers = androidBuildParams.FileLoggers + BinaryLoggers = androidBuildParams.BinaryLoggers + DistributedLoggers = androidBuildParams.DistributedLoggers + } + + let msBuildParams = + if isNullOrEmpty androidBuildParams.OutputPath then msBuildParams + else + { msBuildParams with + Properties = [ "OutputPath", FullName androidBuildParams.OutputPath ] @ msBuildParams.Properties + } + + msBuildParams + + let buildPackages param (abi:string option) (manifestFile:string option) = + let applyBuildParams msbuildParam = + let result = applyAndroidBuildParamsToMSBuildParams param msbuildParam + + let result = + { result with + Properties = + match (abi, manifestFile) with + | Some a, Some m -> let manifest = @"Properties" @@ System.IO.Path.GetFileName(m) + [ "AndroidSupportedAbis", a + "AndroidManifest", manifest ] @ result.Properties + | Some a, None -> [ "AndroidSupportedAbis", a ] @ result.Properties + | _, _ -> result.Properties + } + + result + + build (fun msbuildParam -> applyBuildParams msbuildParam) param.ProjectPath |> ignore + + let rewriteManifestFile (manifestFile:string) outfile (transformVersion:IncrementerVersion) target = + let manifest = XDocument.Load(manifestFile) + let vc = manifest.Element("manifest" |> XName.Get).Attributes() |> Seq.filter(fun a -> a.Name.LocalName = "versionCode") |> Seq.exactlyOne + let v = transformVersion (Convert.ToInt32(vc.Value)) target + vc.Value <- v.ToString() + use fs = new FileStream(outfile, FileMode.OpenOrCreate) + use wr = new XmlTextWriter(fs, Encoding.UTF8) + wr.Formatting <- Formatting.Indented + manifest.Save(wr) + + let mostRecentFileInDirMatching path = + directoryInfo path + |> filesInDirMatching "*.apk" + |> Seq.sortBy (fun file -> file.LastWriteTime) + |> Seq.last + + let createPackage param = + build (fun msbuildParam -> applyAndroidBuildParamsToMSBuildParams param msbuildParam) param.ProjectPath |> ignore + + [ mostRecentFileInDirMatching param.OutputPath ] + + let buildSpecificApk param manifestFile name transformVersion target = + let specificManifest = (manifestFile |> Path.GetDirectoryName) @@ ("AndroidManifest-" + name + ".xml") + rewriteManifestFile manifestFile specificManifest transformVersion target + // workaround for xamarin bug: https://bugzilla.xamarin.com/show_bug.cgi?id=30571 + let backupFn = (manifestFile |> Path.GetDirectoryName) @@ ("AndroidManifest-original.xml") + CopyFile backupFn manifestFile + CopyFile manifestFile specificManifest + try + //buildPackages param (Some name) (Some specificManifest) // to uncomment after xamarin fix there bug + buildPackages param (Some name) None + finally + CopyFile manifestFile backupFn + + let translateAbi = function + | AndroidAbiTarget.X86 _ -> "x86" + | AndroidAbiTarget.ArmEabi _ -> "armeabi" + | AndroidAbiTarget.ArmEabiV7a _ -> "armeabi-v7a" + | AndroidAbiTarget.Arm64V8a _ -> "arm64-v8a" + | AndroidAbiTarget.X86And64 _ -> "X86_64" + | _ -> "" + + let createTargetPackage param (manifestFile:string) (target:AndroidAbiTarget) transformVersion = + let name = target |> translateAbi + match target with + | AndroidAbiTarget.X86 c + | AndroidAbiTarget.ArmEabi c + | AndroidAbiTarget.ArmEabiV7a c + | AndroidAbiTarget.Arm64V8a c + | AndroidAbiTarget.X86And64 c -> buildSpecificApk param manifestFile name transformVersion target + | _ -> buildPackages param None None + + let createPackageAbiSpecificApk param (targets:AndroidAbiTarget list) transformVersion = + let manifestPath = (param.ProjectPath |> Path.GetDirectoryName) @@ @"Properties" @@ "AndroidManifest.xml" + seq { for t in targets do + createTargetPackage param manifestPath t transformVersion + let apk = mostRecentFileInDirMatching param.OutputPath + let name = t |> translateAbi + if name.Length > 0 then + let apkname = Path.GetFileNameWithoutExtension(apk.Name) + "-" + name + ".apk" + yield apk.CopyTo (param.OutputPath @@ apkname) + else + yield apk + } |> Seq.toList + + let param = AndroidPackageDefaults |> setParams |> validateParams + + let transformVersion = match param.VersionStepper with + | Some f -> f + | None -> (fun v t -> match t with + | AndroidAbiTarget.X86 c -> v + 1 + | AndroidAbiTarget.X86And64 c -> v + 2 + | AndroidAbiTarget.ArmEabi c -> v + 3 + | AndroidAbiTarget.ArmEabiV7a c -> v + 4 + | AndroidAbiTarget.Arm64V8a c -> v + 5 + | _ -> v) + + match param.PackageAbiTargets with + | AndroidPackageAbiParam.OneApkForAll -> param |> createPackage + | AndroidPackageAbiParam.SpecificAbis targets -> createPackageAbiSpecificApk param targets transformVersion + + +/// Packages a Xamarin.Android app, returning a FileInfo object for the unsigned APK file +/// ## Parameters +/// - `setParams` - Function used to override the default build parameters +let AndroidPackage setParams = + AndroidBuildPackages setParams |> Seq.exactlyOne + +// Parameters for signing and aligning an Android package +[] +type AndroidSignAndAlignParams = { + /// (Required) Path to keystore used to sign the app + KeystorePath: string + /// (Required) Password for keystore + KeystorePassword: string + /// (Required) Alias for keystore + KeystoreAlias: string + /// Specifies the name of the signature algorithm to use to sign the JAR file. + SignatureAlgorithm: string + /// Specifies the name of the message digest algorithm to use when digesting the entries of a JAR file. + MessageDigestAlgorithm: string + /// Path to jarsigner tool, defaults to assuming it is in your path + JarsignerPath: string + /// Path to zipalign tool, defaults to assuming it is in your path + ZipalignPath: string +} + +/// The default Android signing and aligning parameters +let AndroidSignAndAlignDefaults = { + KeystorePath = "" + KeystorePassword = "" + KeystoreAlias = "" + SignatureAlgorithm = "SHA1withRSA" + MessageDigestAlgorithm = "SHA1" + JarsignerPath = "jarsigner" + ZipalignPath = "zipalign" +} + +/// Signs and aligns a Xamarin.Android package, returning a FileInfo object for the signed APK file +/// ## Parameters +/// - `setParams` - Function used to override the default build parameters +/// - `apkFile` - FileInfo object for an unsigned APK file to sign and align +let AndroidSignAndAlign setParams apkFile = + let validateParams param = + if param.KeystorePath = "" then failwith "You must specify a keystore to use" + if param.KeystorePassword = "" then failwith "You must provide the keystore's password" + if param.KeystoreAlias = "" then failwith "You must provide the keystore's alias" + + param + + let quotesSurround (s:string) = if EnvironmentHelper.isMono then sprintf "'%s'" s else sprintf "\"%s\"" s + + let signAndAlign (file:FileInfo) (param:AndroidSignAndAlignParams) = + let fullSignedFilePath = Regex.Replace(file.FullName, ".apk$", "-Signed.apk") + let jarsignerArgs = String.Format("-sigalg {0} -digestalg {1} -keystore {2} -storepass {3} -signedjar {4} {5} {6}", + param.SignatureAlgorithm, param.MessageDigestAlgorithm, quotesSurround(param.KeystorePath), param.KeystorePassword, quotesSurround(fullSignedFilePath), quotesSurround(file.FullName), param.KeystoreAlias) + + executeCommand param.JarsignerPath jarsignerArgs + + let fullAlignedFilePath = Regex.Replace(fullSignedFilePath, "-Signed.apk$", "-SignedAndAligned.apk") + let zipalignArgs = String.Format("-f -v 4 {0} {1}", quotesSurround(fullSignedFilePath), quotesSurround(fullAlignedFilePath)) + executeCommand param.ZipalignPath zipalignArgs + + fileInfo fullAlignedFilePath + + AndroidSignAndAlignDefaults + |> setParams + |> validateParams + |> signAndAlign apkFile + +/// Signs and aligns multiple Xamarin.Android packages, returning multiple FileInfo objects for the signed APK file +/// ## Parameters +/// - `setParams` - Function used to override the default build parameters +/// - `apkFiles` - FileInfo object for an unsigned APK file to sign and align +let AndroidSignAndAlignPackages setParams apkFiles = + apkFiles |> Seq.map (fun f -> AndroidSignAndAlign setParams f) + +/// The iOS archive paramater type +[] +type iOSArchiveParams = { + /// Path to desired solution file. If not provided, mdtool finds the first solution in the current directory. + /// Although mdtool can take a project file, the archiving seems to fail to work without a solution. + SolutionPath: string + /// Project name within a solution file + ProjectName: string + /// Build configuration, defaults to 'Debug|iPhoneSimulator' + Configuration: string + /// Path to mdtool, defaults to Xamarin Studio's usual path + MDToolPath: string +} + +/// The default iOS archive parameters +let iOSArchiveDefaults = { + SolutionPath = "" + ProjectName = "" + Configuration = "Debug|iPhoneSimulator" + MDToolPath = "/Applications/Xamarin Studio.app/Contents/MacOS/mdtool" +} + +/// Archive a project using Xamarin's iOS archive tools +/// ## Parameters +/// - `setParams` - Function used to override the default archive parameters +let iOSArchive setParams = + let archiveProject param = + let projectNameArg = if param.ProjectName <> "" then String.Format("-p:{0} ", param.ProjectName) else "" + let args = String.Format(@"-v archive ""-c:{0}"" {1}{2}", param.Configuration, projectNameArg, param.SolutionPath) + executeCommand param.MDToolPath args + + iOSArchiveDefaults + |> setParams + |> archiveProject diff --git a/src/app/Fake.DotNet.Xamarin/paket.references b/src/app/Fake.DotNet.Xamarin/paket.references new file mode 100644 index 00000000000..2c8a7ddfd73 --- /dev/null +++ b/src/app/Fake.DotNet.Xamarin/paket.references @@ -0,0 +1,4 @@ +group netcore + +FSharp.Core +NETStandard.Library \ No newline at end of file diff --git a/src/app/FakeLib/FakeLib.fsproj b/src/app/FakeLib/FakeLib.fsproj index 0d6b7798a31..e1b8de8a64d 100644 --- a/src/app/FakeLib/FakeLib.fsproj +++ b/src/app/FakeLib/FakeLib.fsproj @@ -414,7 +414,9 @@ - + + Fake.DotNet.Xamarin/Xamarin.fs + From 1255379997c61b41c6cf2d7c463ad513e630c388 Mon Sep 17 00:00:00 2001 From: Kent Boogaart Date: Tue, 17 Oct 2017 14:16:44 +1030 Subject: [PATCH 12/43] Get netcore build working --- .../Fake.DotNet.Xamarin.fsproj | 11 ++++--- src/app/Fake.DotNet.Xamarin/Xamarin.fs | 31 ++++++++++++------- 2 files changed, 26 insertions(+), 16 deletions(-) diff --git a/src/app/Fake.DotNet.Xamarin/Fake.DotNet.Xamarin.fsproj b/src/app/Fake.DotNet.Xamarin/Fake.DotNet.Xamarin.fsproj index b3b3cc8c48e..f1291e73042 100644 --- a/src/app/Fake.DotNet.Xamarin/Fake.DotNet.Xamarin.fsproj +++ b/src/app/Fake.DotNet.Xamarin/Fake.DotNet.Xamarin.fsproj @@ -1,7 +1,7 @@ 1.0.0-alpha-10 - net46;netstandard1.6;netstandard2.0 + net46;netstandard2.0 $(DefineConstants);DOTNETCORE pdbonly true @@ -13,9 +13,12 @@ - - true - + + + + + + $(DefineConstants);FX_NO_SYSTEM_CONFIGURATION;NO_MSBUILD_AVAILABLE diff --git a/src/app/Fake.DotNet.Xamarin/Xamarin.fs b/src/app/Fake.DotNet.Xamarin/Xamarin.fs index 57f041fa656..dfb85c6545c 100644 --- a/src/app/Fake.DotNet.Xamarin/Xamarin.fs +++ b/src/app/Fake.DotNet.Xamarin/Xamarin.fs @@ -4,9 +4,16 @@ module Fake.XamarinHelper open System open System.IO open System.Text.RegularExpressions -open System.Xml.Linq open System.Xml +open System.Xml.Linq open System.Text +open Fake.Core +open Fake.Core.Globbing +open Fake.Core.Process +open Fake.Core.String +open Fake.IO +open Fake.IO.FileSystemOperators +open Fake.DotNet.MsBuild let private executeCommand command args = ExecProcessAndReturnMessages (fun p -> @@ -15,7 +22,7 @@ let private executeCommand command args = ) TimeSpan.MaxValue |> fun result -> let output = String.Join (Environment.NewLine, result.Messages) - tracefn "Process output: \r\n%A" output + Trace.logVerbosefn "Process output: \r\n%A" output if result.ExitCode <> 0 then failwithf "%s exited with error %d" command result.ExitCode /// The package restore paramater type @@ -27,7 +34,7 @@ type XamarinComponentRestoreParams = { /// The default package restore parameters let XamarinComponentRestoreDefaults = { - ToolPath = findToolInSubPath "xamarin-component.exe" (currentDirectory @@ "tools" @@ "xpkg") + ToolPath = Tools.findToolInSubPath "xamarin-component.exe" ((Path.GetFullPath ".") @@ "tools" @@ "xpkg") } /// Restores NuGet packages and Xamarin Components for a project or solution @@ -154,7 +161,7 @@ let iOSBuild setParams = if isNullOrEmpty iOSBuildParams.OutputPath then msBuildParams else { msBuildParams with - Properties = [ "OutputPath", FullName iOSBuildParams.OutputPath ] @ msBuildParams.Properties + Properties = [ "OutputPath", Path.getFullName iOSBuildParams.OutputPath ] @ msBuildParams.Properties } msBuildParams @@ -247,7 +254,7 @@ let AndroidBuildPackages setParams = if isNullOrEmpty androidBuildParams.OutputPath then msBuildParams else { msBuildParams with - Properties = [ "OutputPath", FullName androidBuildParams.OutputPath ] @ msBuildParams.Properties + Properties = [ "OutputPath", Path.getFullName androidBuildParams.OutputPath ] @ msBuildParams.Properties } msBuildParams @@ -282,8 +289,8 @@ let AndroidBuildPackages setParams = manifest.Save(wr) let mostRecentFileInDirMatching path = - directoryInfo path - |> filesInDirMatching "*.apk" + DirectoryInfo.ofPath path + |> DirectoryInfo.getMatchingFiles "*.apk" |> Seq.sortBy (fun file -> file.LastWriteTime) |> Seq.last @@ -297,13 +304,13 @@ let AndroidBuildPackages setParams = rewriteManifestFile manifestFile specificManifest transformVersion target // workaround for xamarin bug: https://bugzilla.xamarin.com/show_bug.cgi?id=30571 let backupFn = (manifestFile |> Path.GetDirectoryName) @@ ("AndroidManifest-original.xml") - CopyFile backupFn manifestFile - CopyFile manifestFile specificManifest + Shell.CopyFile backupFn manifestFile + Shell.CopyFile manifestFile specificManifest try //buildPackages param (Some name) (Some specificManifest) // to uncomment after xamarin fix there bug buildPackages param (Some name) None finally - CopyFile manifestFile backupFn + Shell.CopyFile manifestFile backupFn let translateAbi = function | AndroidAbiTarget.X86 _ -> "x86" @@ -401,7 +408,7 @@ let AndroidSignAndAlign setParams apkFile = param - let quotesSurround (s:string) = if EnvironmentHelper.isMono then sprintf "'%s'" s else sprintf "\"%s\"" s + let quotesSurround (s:string) = if Environment.isMono then sprintf "'%s'" s else sprintf "\"%s\"" s let signAndAlign (file:FileInfo) (param:AndroidSignAndAlignParams) = let fullSignedFilePath = Regex.Replace(file.FullName, ".apk$", "-Signed.apk") @@ -414,7 +421,7 @@ let AndroidSignAndAlign setParams apkFile = let zipalignArgs = String.Format("-f -v 4 {0} {1}", quotesSurround(fullSignedFilePath), quotesSurround(fullAlignedFilePath)) executeCommand param.ZipalignPath zipalignArgs - fileInfo fullAlignedFilePath + FileInfo.ofPath fullAlignedFilePath AndroidSignAndAlignDefaults |> setParams From 93bb007f1514ac5580640da0649d2a19dfaa7488 Mon Sep 17 00:00:00 2001 From: Kent Boogaart Date: Tue, 17 Oct 2017 15:01:56 +1030 Subject: [PATCH 13/43] Obsolete old APIs --- src/Fake-netcore.sln | 631 +++++++++++++------------ src/app/Fake.DotNet.Xamarin/Xamarin.fs | 2 +- src/app/FakeLib/FakeLib.fsproj | 7 +- src/app/FakeLib/XamarinHelper.fs | 6 + 4 files changed, 335 insertions(+), 311 deletions(-) diff --git a/src/Fake-netcore.sln b/src/Fake-netcore.sln index 0e1922b9a91..dc3cbc531f4 100644 --- a/src/Fake-netcore.sln +++ b/src/Fake-netcore.sln @@ -1,75 +1,76 @@ - Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 -VisualStudioVersion = 15.0.26124.0 +VisualStudioVersion = 15.0.27004.2002 MinimumVisualStudioVersion = 15.0.26124.0 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "app", "app", "{7BFFAE76-DEE9-417A-A79B-6A6644C4553A}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.BuildServer", "app\Fake.Core.BuildServer\Fake.Core.BuildServer.fsproj", "{E2CF8635-E7C4-4470-92DD-F706F052BF7B}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.BuildServer", "app\Fake.Core.BuildServer\Fake.Core.BuildServer.fsproj", "{E2CF8635-E7C4-4470-92DD-F706F052BF7B}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.Context", "app\Fake.Core.Context\Fake.Core.Context.fsproj", "{D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.Context", "app\Fake.Core.Context\Fake.Core.Context.fsproj", "{D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.Environment", "app\Fake.Core.Environment\Fake.Core.Environment.fsproj", "{A2C4A85F-24C4-4FFA-B165-4807B1127C4E}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.Environment", "app\Fake.Core.Environment\Fake.Core.Environment.fsproj", "{A2C4A85F-24C4-4FFA-B165-4807B1127C4E}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.Globbing", "app\Fake.Core.Globbing\Fake.Core.Globbing.fsproj", "{20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.Globbing", "app\Fake.Core.Globbing\Fake.Core.Globbing.fsproj", "{20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.Process", "app\Fake.Core.Process\Fake.Core.Process.fsproj", "{DB09FF66-8750-40B8-9E25-70FADD9CF0BD}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.Process", "app\Fake.Core.Process\Fake.Core.Process.fsproj", "{DB09FF66-8750-40B8-9E25-70FADD9CF0BD}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.ReleaseNotes", "app\Fake.Core.ReleaseNotes\Fake.Core.ReleaseNotes.fsproj", "{FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.ReleaseNotes", "app\Fake.Core.ReleaseNotes\Fake.Core.ReleaseNotes.fsproj", "{FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.SemVer", "app\Fake.Core.SemVer\Fake.Core.SemVer.fsproj", "{AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.SemVer", "app\Fake.Core.SemVer\Fake.Core.SemVer.fsproj", "{AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.String", "app\Fake.Core.String\Fake.Core.String.fsproj", "{D5B2FEB2-BA3A-492D-B83D-414835043D86}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.String", "app\Fake.Core.String\Fake.Core.String.fsproj", "{D5B2FEB2-BA3A-492D-B83D-414835043D86}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.Tracing", "app\Fake.Core.Tracing\Fake.Core.Tracing.fsproj", "{9430365D-C956-4290-A006-A87F9083DC4B}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.Tracing", "app\Fake.Core.Tracing\Fake.Core.Tracing.fsproj", "{9430365D-C956-4290-A006-A87F9083DC4B}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.Target", "app\Fake.Core.Target\Fake.Core.Target.fsproj", "{0C28F2FB-2B12-4893-AAA4-2C2548926847}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.Target", "app\Fake.Core.Target\Fake.Core.Target.fsproj", "{0C28F2FB-2B12-4893-AAA4-2C2548926847}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.Tasks", "app\Fake.Core.Tasks\Fake.Core.Tasks.fsproj", "{83860B89-4A95-49A5-B4D6-B8F3345498E9}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.Tasks", "app\Fake.Core.Tasks\Fake.Core.Tasks.fsproj", "{83860B89-4A95-49A5-B4D6-B8F3345498E9}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.Xml", "app\Fake.Core.Xml\Fake.Core.Xml.fsproj", "{C3C12DCE-7AC4-4E97-A7FC-49189D218885}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.Xml", "app\Fake.Core.Xml\Fake.Core.Xml.fsproj", "{C3C12DCE-7AC4-4E97-A7FC-49189D218885}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.AssemblyInfoFile", "app\Fake.DotNet.AssemblyInfoFile\Fake.DotNet.AssemblyInfoFile.fsproj", "{BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.AssemblyInfoFile", "app\Fake.DotNet.AssemblyInfoFile\Fake.DotNet.AssemblyInfoFile.fsproj", "{BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.Cli", "app\Fake.DotNet.Cli\Fake.DotNet.Cli.fsproj", "{B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.Cli", "app\Fake.DotNet.Cli\Fake.DotNet.Cli.fsproj", "{B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.MsBuild", "app\Fake.DotNet.MsBuild\Fake.DotNet.MsBuild.fsproj", "{64195C50-E138-4218-A7CE-13CD4565B87E}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.MsBuild", "app\Fake.DotNet.MsBuild\Fake.DotNet.MsBuild.fsproj", "{64195C50-E138-4218-A7CE-13CD4565B87E}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.NuGet", "app\Fake.DotNet.NuGet\Fake.DotNet.NuGet.fsproj", "{93F1A71E-54E2-4C65-BB1E-1D499890317F}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.NuGet", "app\Fake.DotNet.NuGet\Fake.DotNet.NuGet.fsproj", "{93F1A71E-54E2-4C65-BB1E-1D499890317F}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.Testing.MSpec", "app\Fake.DotNet.Testing.MSpec\Fake.DotNet.Testing.MSpec.fsproj", "{C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.Testing.MSpec", "app\Fake.DotNet.Testing.MSpec\Fake.DotNet.Testing.MSpec.fsproj", "{C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.Testing.NUnit", "app\Fake.DotNet.Testing.NUnit\Fake.DotNet.Testing.NUnit.fsproj", "{75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.Testing.NUnit", "app\Fake.DotNet.Testing.NUnit\Fake.DotNet.Testing.NUnit.fsproj", "{75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.Testing.XUnit2", "app\Fake.DotNet.Testing.XUnit2\Fake.DotNet.Testing.XUnit2.fsproj", "{21E2FE31-4E7C-489E-8215-9303108A2F39}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.Testing.XUnit2", "app\Fake.DotNet.Testing.XUnit2\Fake.DotNet.Testing.XUnit2.fsproj", "{21E2FE31-4E7C-489E-8215-9303108A2F39}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.Testing.MSTest", "app\Fake.DotNet.Testing.MSTest\Fake.DotNet.Testing.MSTest.fsproj", "{21E2FE31-4E7C-489E-8215-9303108A2F30}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.Testing.MSTest", "app\Fake.DotNet.Testing.MSTest\Fake.DotNet.Testing.MSTest.fsproj", "{21E2FE31-4E7C-489E-8215-9303108A2F30}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.IO.FileSystem", "app\Fake.IO.FileSystem\Fake.IO.FileSystem.fsproj", "{4B1416CD-C7CB-4670-8EFE-871ED316D51D}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.IO.FileSystem", "app\Fake.IO.FileSystem\Fake.IO.FileSystem.fsproj", "{4B1416CD-C7CB-4670-8EFE-871ED316D51D}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.IO.Zip", "app\Fake.IO.Zip\Fake.IO.Zip.fsproj", "{46ED6A9C-C5BF-4495-924E-478736FC280E}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.IO.Zip", "app\Fake.IO.Zip\Fake.IO.Zip.fsproj", "{46ED6A9C-C5BF-4495-924E-478736FC280E}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Runtime", "app\Fake.Runtime\Fake.Runtime.fsproj", "{44A3F022-D70A-422D-B850-824BB572F2AF}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Runtime", "app\Fake.Runtime\Fake.Runtime.fsproj", "{44A3F022-D70A-422D-B850-824BB572F2AF}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Testing.Common", "app\Fake.Testing.Common\Fake.Testing.Common.fsproj", "{7D629246-957C-4989-A1E6-29C673086925}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Testing.Common", "app\Fake.Testing.Common\Fake.Testing.Common.fsproj", "{7D629246-957C-4989-A1E6-29C673086925}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Windows.Chocolatey", "app\Fake.Windows.Chocolatey\Fake.Windows.Chocolatey.fsproj", "{A95B731B-5887-4EF5-A64D-B643FA8EBD92}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Windows.Chocolatey", "app\Fake.Windows.Chocolatey\Fake.Windows.Chocolatey.fsproj", "{A95B731B-5887-4EF5-A64D-B643FA8EBD92}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Tools.Git", "app\Fake.Tools.Git\Fake.Tools.Git.fsproj", "{E32B2631-476A-4C2D-AE18-275ED7A22F10}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Tools.Git", "app\Fake.Tools.Git\Fake.Tools.Git.fsproj", "{E32B2631-476A-4C2D-AE18-275ED7A22F10}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.FSFormatting", "app\Fake.DotNet.FSFormatting\Fake.DotNet.FSFormatting.fsproj", "{80314941-78D5-4928-B943-93FC945E050F}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.FSFormatting", "app\Fake.DotNet.FSFormatting\Fake.DotNet.FSFormatting.fsproj", "{80314941-78D5-4928-B943-93FC945E050F}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.Paket", "app\Fake.DotNet.Paket\Fake.DotNet.Paket.fsproj", "{CDFB2B10-050A-4188-8F72-2BCC61E9814F}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.Paket", "app\Fake.DotNet.Paket\Fake.DotNet.Paket.fsproj", "{CDFB2B10-050A-4188-8F72-2BCC61E9814F}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.netcore", "app\Fake.netcore\Fake.netcore.fsproj", "{6B339DA3-8DED-4262-A427-3C4CCDD00650}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.netcore", "app\Fake.netcore\Fake.netcore.fsproj", "{6B339DA3-8DED-4262-A427-3C4CCDD00650}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Testing.SonarQube", "app\Fake.Testing.SonarQube\Fake.Testing.SonarQube.fsproj", "{2A985028-4410-40F7-992C-5397DC1ED116}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Testing.SonarQube", "app\Fake.Testing.SonarQube\Fake.Testing.SonarQube.fsproj", "{2A985028-4410-40F7-992C-5397DC1ED116}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.Testing.OpenCover", "app\Fake.DotNet.Testing.OpenCover\Fake.DotNet.Testing.OpenCover.fsproj", "{A9AF015B-43C9-405E-BF74-CE936B8418F9}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.Testing.OpenCover", "app\Fake.DotNet.Testing.OpenCover\Fake.DotNet.Testing.OpenCover.fsproj", "{A9AF015B-43C9-405E-BF74-CE936B8418F9}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Api.Slack", "app\Fake.Api.Slack\Fake.Api.Slack.fsproj", "{58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Api.Slack", "app\Fake.Api.Slack\Fake.Api.Slack.fsproj", "{58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}" EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Api.GitHub", "app\Fake.Api.GitHub\Fake.Api.GitHub.fsproj", "{4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Api.GitHub", "app\Fake.Api.GitHub\Fake.Api.GitHub.fsproj", "{4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}" +EndProject +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.Xamarin", "app\Fake.DotNet.Xamarin\Fake.DotNet.Xamarin.fsproj", "{7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -80,406 +81,418 @@ Global Release|x64 = Release|x64 Release|x86 = Release|x86 EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Debug|x64.ActiveCfg = Debug|x64 - {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Debug|x64.Build.0 = Debug|x64 - {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Debug|x86.ActiveCfg = Debug|x86 - {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Debug|x86.Build.0 = Debug|x86 + {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Debug|x64.ActiveCfg = Debug|Any CPU + {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Debug|x64.Build.0 = Debug|Any CPU + {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Debug|x86.ActiveCfg = Debug|Any CPU + {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Debug|x86.Build.0 = Debug|Any CPU {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Release|Any CPU.ActiveCfg = Release|Any CPU {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Release|Any CPU.Build.0 = Release|Any CPU - {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Release|x64.ActiveCfg = Release|x64 - {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Release|x64.Build.0 = Release|x64 - {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Release|x86.ActiveCfg = Release|x86 - {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Release|x86.Build.0 = Release|x86 + {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Release|x64.ActiveCfg = Release|Any CPU + {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Release|x64.Build.0 = Release|Any CPU + {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Release|x86.ActiveCfg = Release|Any CPU + {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Release|x86.Build.0 = Release|Any CPU {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Debug|x64.ActiveCfg = Debug|x64 - {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Debug|x64.Build.0 = Debug|x64 - {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Debug|x86.ActiveCfg = Debug|x86 - {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Debug|x86.Build.0 = Debug|x86 + {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Debug|x64.ActiveCfg = Debug|Any CPU + {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Debug|x64.Build.0 = Debug|Any CPU + {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Debug|x86.ActiveCfg = Debug|Any CPU + {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Debug|x86.Build.0 = Debug|Any CPU {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Release|Any CPU.ActiveCfg = Release|Any CPU {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Release|Any CPU.Build.0 = Release|Any CPU - {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Release|x64.ActiveCfg = Release|x64 - {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Release|x64.Build.0 = Release|x64 - {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Release|x86.ActiveCfg = Release|x86 - {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Release|x86.Build.0 = Release|x86 + {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Release|x64.ActiveCfg = Release|Any CPU + {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Release|x64.Build.0 = Release|Any CPU + {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Release|x86.ActiveCfg = Release|Any CPU + {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Release|x86.Build.0 = Release|Any CPU {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Debug|x64.ActiveCfg = Debug|x64 - {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Debug|x64.Build.0 = Debug|x64 - {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Debug|x86.ActiveCfg = Debug|x86 - {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Debug|x86.Build.0 = Debug|x86 + {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Debug|x64.ActiveCfg = Debug|Any CPU + {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Debug|x64.Build.0 = Debug|Any CPU + {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Debug|x86.ActiveCfg = Debug|Any CPU + {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Debug|x86.Build.0 = Debug|Any CPU {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Release|Any CPU.ActiveCfg = Release|Any CPU {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Release|Any CPU.Build.0 = Release|Any CPU - {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Release|x64.ActiveCfg = Release|x64 - {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Release|x64.Build.0 = Release|x64 - {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Release|x86.ActiveCfg = Release|x86 - {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Release|x86.Build.0 = Release|x86 + {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Release|x64.ActiveCfg = Release|Any CPU + {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Release|x64.Build.0 = Release|Any CPU + {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Release|x86.ActiveCfg = Release|Any CPU + {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Release|x86.Build.0 = Release|Any CPU {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Debug|x64.ActiveCfg = Debug|x64 - {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Debug|x64.Build.0 = Debug|x64 - {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Debug|x86.ActiveCfg = Debug|x86 - {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Debug|x86.Build.0 = Debug|x86 + {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Debug|x64.ActiveCfg = Debug|Any CPU + {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Debug|x64.Build.0 = Debug|Any CPU + {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Debug|x86.ActiveCfg = Debug|Any CPU + {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Debug|x86.Build.0 = Debug|Any CPU {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Release|Any CPU.ActiveCfg = Release|Any CPU {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Release|Any CPU.Build.0 = Release|Any CPU - {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Release|x64.ActiveCfg = Release|x64 - {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Release|x64.Build.0 = Release|x64 - {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Release|x86.ActiveCfg = Release|x86 - {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Release|x86.Build.0 = Release|x86 + {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Release|x64.ActiveCfg = Release|Any CPU + {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Release|x64.Build.0 = Release|Any CPU + {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Release|x86.ActiveCfg = Release|Any CPU + {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Release|x86.Build.0 = Release|Any CPU {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Debug|Any CPU.Build.0 = Debug|Any CPU - {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Debug|x64.ActiveCfg = Debug|x64 - {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Debug|x64.Build.0 = Debug|x64 - {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Debug|x86.ActiveCfg = Debug|x86 - {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Debug|x86.Build.0 = Debug|x86 + {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Debug|x64.ActiveCfg = Debug|Any CPU + {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Debug|x64.Build.0 = Debug|Any CPU + {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Debug|x86.ActiveCfg = Debug|Any CPU + {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Debug|x86.Build.0 = Debug|Any CPU {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Release|Any CPU.ActiveCfg = Release|Any CPU {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Release|Any CPU.Build.0 = Release|Any CPU - {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Release|x64.ActiveCfg = Release|x64 - {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Release|x64.Build.0 = Release|x64 - {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Release|x86.ActiveCfg = Release|x86 - {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Release|x86.Build.0 = Release|x86 + {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Release|x64.ActiveCfg = Release|Any CPU + {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Release|x64.Build.0 = Release|Any CPU + {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Release|x86.ActiveCfg = Release|Any CPU + {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Release|x86.Build.0 = Release|Any CPU {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Debug|x64.ActiveCfg = Debug|x64 - {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Debug|x64.Build.0 = Debug|x64 - {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Debug|x86.ActiveCfg = Debug|x86 - {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Debug|x86.Build.0 = Debug|x86 + {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Debug|x64.ActiveCfg = Debug|Any CPU + {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Debug|x64.Build.0 = Debug|Any CPU + {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Debug|x86.ActiveCfg = Debug|Any CPU + {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Debug|x86.Build.0 = Debug|Any CPU {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Release|Any CPU.ActiveCfg = Release|Any CPU {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Release|Any CPU.Build.0 = Release|Any CPU - {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Release|x64.ActiveCfg = Release|x64 - {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Release|x64.Build.0 = Release|x64 - {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Release|x86.ActiveCfg = Release|x86 - {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Release|x86.Build.0 = Release|x86 + {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Release|x64.ActiveCfg = Release|Any CPU + {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Release|x64.Build.0 = Release|Any CPU + {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Release|x86.ActiveCfg = Release|Any CPU + {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Release|x86.Build.0 = Release|Any CPU {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Debug|x64.ActiveCfg = Debug|x64 - {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Debug|x64.Build.0 = Debug|x64 - {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Debug|x86.ActiveCfg = Debug|x86 - {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Debug|x86.Build.0 = Debug|x86 + {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Debug|x64.ActiveCfg = Debug|Any CPU + {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Debug|x64.Build.0 = Debug|Any CPU + {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Debug|x86.ActiveCfg = Debug|Any CPU + {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Debug|x86.Build.0 = Debug|Any CPU {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Release|Any CPU.ActiveCfg = Release|Any CPU {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Release|Any CPU.Build.0 = Release|Any CPU - {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Release|x64.ActiveCfg = Release|x64 - {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Release|x64.Build.0 = Release|x64 - {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Release|x86.ActiveCfg = Release|x86 - {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Release|x86.Build.0 = Release|x86 + {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Release|x64.ActiveCfg = Release|Any CPU + {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Release|x64.Build.0 = Release|Any CPU + {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Release|x86.ActiveCfg = Release|Any CPU + {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Release|x86.Build.0 = Release|Any CPU {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Debug|x64.ActiveCfg = Debug|x64 - {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Debug|x64.Build.0 = Debug|x64 - {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Debug|x86.ActiveCfg = Debug|x86 - {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Debug|x86.Build.0 = Debug|x86 + {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Debug|x64.ActiveCfg = Debug|Any CPU + {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Debug|x64.Build.0 = Debug|Any CPU + {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Debug|x86.ActiveCfg = Debug|Any CPU + {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Debug|x86.Build.0 = Debug|Any CPU {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Release|Any CPU.ActiveCfg = Release|Any CPU {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Release|Any CPU.Build.0 = Release|Any CPU - {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Release|x64.ActiveCfg = Release|x64 - {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Release|x64.Build.0 = Release|x64 - {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Release|x86.ActiveCfg = Release|x86 - {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Release|x86.Build.0 = Release|x86 + {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Release|x64.ActiveCfg = Release|Any CPU + {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Release|x64.Build.0 = Release|Any CPU + {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Release|x86.ActiveCfg = Release|Any CPU + {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Release|x86.Build.0 = Release|Any CPU {9430365D-C956-4290-A006-A87F9083DC4B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {9430365D-C956-4290-A006-A87F9083DC4B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {9430365D-C956-4290-A006-A87F9083DC4B}.Debug|x64.ActiveCfg = Debug|x64 - {9430365D-C956-4290-A006-A87F9083DC4B}.Debug|x64.Build.0 = Debug|x64 - {9430365D-C956-4290-A006-A87F9083DC4B}.Debug|x86.ActiveCfg = Debug|x86 - {9430365D-C956-4290-A006-A87F9083DC4B}.Debug|x86.Build.0 = Debug|x86 + {9430365D-C956-4290-A006-A87F9083DC4B}.Debug|x64.ActiveCfg = Debug|Any CPU + {9430365D-C956-4290-A006-A87F9083DC4B}.Debug|x64.Build.0 = Debug|Any CPU + {9430365D-C956-4290-A006-A87F9083DC4B}.Debug|x86.ActiveCfg = Debug|Any CPU + {9430365D-C956-4290-A006-A87F9083DC4B}.Debug|x86.Build.0 = Debug|Any CPU {9430365D-C956-4290-A006-A87F9083DC4B}.Release|Any CPU.ActiveCfg = Release|Any CPU {9430365D-C956-4290-A006-A87F9083DC4B}.Release|Any CPU.Build.0 = Release|Any CPU - {9430365D-C956-4290-A006-A87F9083DC4B}.Release|x64.ActiveCfg = Release|x64 - {9430365D-C956-4290-A006-A87F9083DC4B}.Release|x64.Build.0 = Release|x64 - {9430365D-C956-4290-A006-A87F9083DC4B}.Release|x86.ActiveCfg = Release|x86 - {9430365D-C956-4290-A006-A87F9083DC4B}.Release|x86.Build.0 = Release|x86 + {9430365D-C956-4290-A006-A87F9083DC4B}.Release|x64.ActiveCfg = Release|Any CPU + {9430365D-C956-4290-A006-A87F9083DC4B}.Release|x64.Build.0 = Release|Any CPU + {9430365D-C956-4290-A006-A87F9083DC4B}.Release|x86.ActiveCfg = Release|Any CPU + {9430365D-C956-4290-A006-A87F9083DC4B}.Release|x86.Build.0 = Release|Any CPU {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Debug|Any CPU.Build.0 = Debug|Any CPU - {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Debug|x64.ActiveCfg = Debug|x64 - {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Debug|x64.Build.0 = Debug|x64 - {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Debug|x86.ActiveCfg = Debug|x86 - {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Debug|x86.Build.0 = Debug|x86 + {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Debug|x64.ActiveCfg = Debug|Any CPU + {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Debug|x64.Build.0 = Debug|Any CPU + {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Debug|x86.ActiveCfg = Debug|Any CPU + {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Debug|x86.Build.0 = Debug|Any CPU {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Release|Any CPU.ActiveCfg = Release|Any CPU {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Release|Any CPU.Build.0 = Release|Any CPU - {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Release|x64.ActiveCfg = Release|x64 - {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Release|x64.Build.0 = Release|x64 - {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Release|x86.ActiveCfg = Release|x86 - {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Release|x86.Build.0 = Release|x86 + {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Release|x64.ActiveCfg = Release|Any CPU + {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Release|x64.Build.0 = Release|Any CPU + {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Release|x86.ActiveCfg = Release|Any CPU + {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Release|x86.Build.0 = Release|Any CPU {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Debug|Any CPU.Build.0 = Debug|Any CPU - {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Debug|x64.ActiveCfg = Debug|x64 - {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Debug|x64.Build.0 = Debug|x64 - {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Debug|x86.ActiveCfg = Debug|x86 - {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Debug|x86.Build.0 = Debug|x86 + {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Debug|x64.ActiveCfg = Debug|Any CPU + {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Debug|x64.Build.0 = Debug|Any CPU + {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Debug|x86.ActiveCfg = Debug|Any CPU + {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Debug|x86.Build.0 = Debug|Any CPU {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Release|Any CPU.ActiveCfg = Release|Any CPU {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Release|Any CPU.Build.0 = Release|Any CPU - {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Release|x64.ActiveCfg = Release|x64 - {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Release|x64.Build.0 = Release|x64 - {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Release|x86.ActiveCfg = Release|x86 - {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Release|x86.Build.0 = Release|x86 + {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Release|x64.ActiveCfg = Release|Any CPU + {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Release|x64.Build.0 = Release|Any CPU + {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Release|x86.ActiveCfg = Release|Any CPU + {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Release|x86.Build.0 = Release|Any CPU {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Debug|x64.ActiveCfg = Debug|x64 - {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Debug|x64.Build.0 = Debug|x64 - {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Debug|x86.ActiveCfg = Debug|x86 - {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Debug|x86.Build.0 = Debug|x86 + {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Debug|x64.ActiveCfg = Debug|Any CPU + {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Debug|x64.Build.0 = Debug|Any CPU + {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Debug|x86.ActiveCfg = Debug|Any CPU + {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Debug|x86.Build.0 = Debug|Any CPU {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Release|Any CPU.ActiveCfg = Release|Any CPU {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Release|Any CPU.Build.0 = Release|Any CPU - {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Release|x64.ActiveCfg = Release|x64 - {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Release|x64.Build.0 = Release|x64 - {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Release|x86.ActiveCfg = Release|x86 - {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Release|x86.Build.0 = Release|x86 + {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Release|x64.ActiveCfg = Release|Any CPU + {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Release|x64.Build.0 = Release|Any CPU + {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Release|x86.ActiveCfg = Release|Any CPU + {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Release|x86.Build.0 = Release|Any CPU {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Debug|Any CPU.Build.0 = Debug|Any CPU - {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Debug|x64.ActiveCfg = Debug|x64 - {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Debug|x64.Build.0 = Debug|x64 - {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Debug|x86.ActiveCfg = Debug|x86 - {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Debug|x86.Build.0 = Debug|x86 + {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Debug|x64.ActiveCfg = Debug|Any CPU + {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Debug|x64.Build.0 = Debug|Any CPU + {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Debug|x86.ActiveCfg = Debug|Any CPU + {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Debug|x86.Build.0 = Debug|Any CPU {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Release|Any CPU.ActiveCfg = Release|Any CPU {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Release|Any CPU.Build.0 = Release|Any CPU - {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Release|x64.ActiveCfg = Release|x64 - {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Release|x64.Build.0 = Release|x64 - {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Release|x86.ActiveCfg = Release|x86 - {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Release|x86.Build.0 = Release|x86 + {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Release|x64.ActiveCfg = Release|Any CPU + {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Release|x64.Build.0 = Release|Any CPU + {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Release|x86.ActiveCfg = Release|Any CPU + {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Release|x86.Build.0 = Release|Any CPU {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Debug|x64.ActiveCfg = Debug|x64 - {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Debug|x64.Build.0 = Debug|x64 - {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Debug|x86.ActiveCfg = Debug|x86 - {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Debug|x86.Build.0 = Debug|x86 + {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Debug|x64.ActiveCfg = Debug|Any CPU + {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Debug|x64.Build.0 = Debug|Any CPU + {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Debug|x86.ActiveCfg = Debug|Any CPU + {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Debug|x86.Build.0 = Debug|Any CPU {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Release|Any CPU.ActiveCfg = Release|Any CPU {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Release|Any CPU.Build.0 = Release|Any CPU - {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Release|x64.ActiveCfg = Release|x64 - {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Release|x64.Build.0 = Release|x64 - {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Release|x86.ActiveCfg = Release|x86 - {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Release|x86.Build.0 = Release|x86 + {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Release|x64.ActiveCfg = Release|Any CPU + {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Release|x64.Build.0 = Release|Any CPU + {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Release|x86.ActiveCfg = Release|Any CPU + {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Release|x86.Build.0 = Release|Any CPU {64195C50-E138-4218-A7CE-13CD4565B87E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {64195C50-E138-4218-A7CE-13CD4565B87E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {64195C50-E138-4218-A7CE-13CD4565B87E}.Debug|x64.ActiveCfg = Debug|x64 - {64195C50-E138-4218-A7CE-13CD4565B87E}.Debug|x64.Build.0 = Debug|x64 - {64195C50-E138-4218-A7CE-13CD4565B87E}.Debug|x86.ActiveCfg = Debug|x86 - {64195C50-E138-4218-A7CE-13CD4565B87E}.Debug|x86.Build.0 = Debug|x86 + {64195C50-E138-4218-A7CE-13CD4565B87E}.Debug|x64.ActiveCfg = Debug|Any CPU + {64195C50-E138-4218-A7CE-13CD4565B87E}.Debug|x64.Build.0 = Debug|Any CPU + {64195C50-E138-4218-A7CE-13CD4565B87E}.Debug|x86.ActiveCfg = Debug|Any CPU + {64195C50-E138-4218-A7CE-13CD4565B87E}.Debug|x86.Build.0 = Debug|Any CPU {64195C50-E138-4218-A7CE-13CD4565B87E}.Release|Any CPU.ActiveCfg = Release|Any CPU {64195C50-E138-4218-A7CE-13CD4565B87E}.Release|Any CPU.Build.0 = Release|Any CPU - {64195C50-E138-4218-A7CE-13CD4565B87E}.Release|x64.ActiveCfg = Release|x64 - {64195C50-E138-4218-A7CE-13CD4565B87E}.Release|x64.Build.0 = Release|x64 - {64195C50-E138-4218-A7CE-13CD4565B87E}.Release|x86.ActiveCfg = Release|x86 - {64195C50-E138-4218-A7CE-13CD4565B87E}.Release|x86.Build.0 = Release|x86 + {64195C50-E138-4218-A7CE-13CD4565B87E}.Release|x64.ActiveCfg = Release|Any CPU + {64195C50-E138-4218-A7CE-13CD4565B87E}.Release|x64.Build.0 = Release|Any CPU + {64195C50-E138-4218-A7CE-13CD4565B87E}.Release|x86.ActiveCfg = Release|Any CPU + {64195C50-E138-4218-A7CE-13CD4565B87E}.Release|x86.Build.0 = Release|Any CPU {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Debug|x64.ActiveCfg = Debug|x64 - {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Debug|x64.Build.0 = Debug|x64 - {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Debug|x86.ActiveCfg = Debug|x86 - {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Debug|x86.Build.0 = Debug|x86 + {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Debug|x64.ActiveCfg = Debug|Any CPU + {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Debug|x64.Build.0 = Debug|Any CPU + {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Debug|x86.ActiveCfg = Debug|Any CPU + {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Debug|x86.Build.0 = Debug|Any CPU {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Release|Any CPU.ActiveCfg = Release|Any CPU {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Release|Any CPU.Build.0 = Release|Any CPU - {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Release|x64.ActiveCfg = Release|x64 - {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Release|x64.Build.0 = Release|x64 - {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Release|x86.ActiveCfg = Release|x86 - {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Release|x86.Build.0 = Release|x86 + {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Release|x64.ActiveCfg = Release|Any CPU + {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Release|x64.Build.0 = Release|Any CPU + {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Release|x86.ActiveCfg = Release|Any CPU + {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Release|x86.Build.0 = Release|Any CPU {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Debug|x64.ActiveCfg = Debug|x64 - {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Debug|x64.Build.0 = Debug|x64 - {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Debug|x86.ActiveCfg = Debug|x86 - {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Debug|x86.Build.0 = Debug|x86 + {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Debug|x64.ActiveCfg = Debug|Any CPU + {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Debug|x64.Build.0 = Debug|Any CPU + {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Debug|x86.ActiveCfg = Debug|Any CPU + {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Debug|x86.Build.0 = Debug|Any CPU {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Release|Any CPU.ActiveCfg = Release|Any CPU {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Release|Any CPU.Build.0 = Release|Any CPU - {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Release|x64.ActiveCfg = Release|x64 - {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Release|x64.Build.0 = Release|x64 - {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Release|x86.ActiveCfg = Release|x86 - {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Release|x86.Build.0 = Release|x86 + {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Release|x64.ActiveCfg = Release|Any CPU + {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Release|x64.Build.0 = Release|Any CPU + {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Release|x86.ActiveCfg = Release|Any CPU + {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Release|x86.Build.0 = Release|Any CPU {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Debug|x64.ActiveCfg = Debug|x64 - {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Debug|x64.Build.0 = Debug|x64 - {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Debug|x86.ActiveCfg = Debug|x86 - {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Debug|x86.Build.0 = Debug|x86 + {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Debug|x64.ActiveCfg = Debug|Any CPU + {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Debug|x64.Build.0 = Debug|Any CPU + {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Debug|x86.ActiveCfg = Debug|Any CPU + {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Debug|x86.Build.0 = Debug|Any CPU {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Release|Any CPU.ActiveCfg = Release|Any CPU {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Release|Any CPU.Build.0 = Release|Any CPU - {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Release|x64.ActiveCfg = Release|x64 - {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Release|x64.Build.0 = Release|x64 - {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Release|x86.ActiveCfg = Release|x86 - {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Release|x86.Build.0 = Release|x86 + {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Release|x64.ActiveCfg = Release|Any CPU + {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Release|x64.Build.0 = Release|Any CPU + {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Release|x86.ActiveCfg = Release|Any CPU + {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Release|x86.Build.0 = Release|Any CPU {21E2FE31-4E7C-489E-8215-9303108A2F39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {21E2FE31-4E7C-489E-8215-9303108A2F39}.Debug|Any CPU.Build.0 = Debug|Any CPU - {21E2FE31-4E7C-489E-8215-9303108A2F39}.Debug|x64.ActiveCfg = Debug|x64 - {21E2FE31-4E7C-489E-8215-9303108A2F39}.Debug|x64.Build.0 = Debug|x64 - {21E2FE31-4E7C-489E-8215-9303108A2F39}.Debug|x86.ActiveCfg = Debug|x86 - {21E2FE31-4E7C-489E-8215-9303108A2F39}.Debug|x86.Build.0 = Debug|x86 + {21E2FE31-4E7C-489E-8215-9303108A2F39}.Debug|x64.ActiveCfg = Debug|Any CPU + {21E2FE31-4E7C-489E-8215-9303108A2F39}.Debug|x64.Build.0 = Debug|Any CPU + {21E2FE31-4E7C-489E-8215-9303108A2F39}.Debug|x86.ActiveCfg = Debug|Any CPU + {21E2FE31-4E7C-489E-8215-9303108A2F39}.Debug|x86.Build.0 = Debug|Any CPU {21E2FE31-4E7C-489E-8215-9303108A2F39}.Release|Any CPU.ActiveCfg = Release|Any CPU {21E2FE31-4E7C-489E-8215-9303108A2F39}.Release|Any CPU.Build.0 = Release|Any CPU - {21E2FE31-4E7C-489E-8215-9303108A2F39}.Release|x64.ActiveCfg = Release|x64 - {21E2FE31-4E7C-489E-8215-9303108A2F39}.Release|x64.Build.0 = Release|x64 - {21E2FE31-4E7C-489E-8215-9303108A2F39}.Release|x86.ActiveCfg = Release|x86 - {21E2FE31-4E7C-489E-8215-9303108A2F39}.Release|x86.Build.0 = Release|x86 + {21E2FE31-4E7C-489E-8215-9303108A2F39}.Release|x64.ActiveCfg = Release|Any CPU + {21E2FE31-4E7C-489E-8215-9303108A2F39}.Release|x64.Build.0 = Release|Any CPU + {21E2FE31-4E7C-489E-8215-9303108A2F39}.Release|x86.ActiveCfg = Release|Any CPU + {21E2FE31-4E7C-489E-8215-9303108A2F39}.Release|x86.Build.0 = Release|Any CPU {21E2FE31-4E7C-489E-8215-9303108A2F30}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {21E2FE31-4E7C-489E-8215-9303108A2F30}.Debug|Any CPU.Build.0 = Debug|Any CPU - {21E2FE31-4E7C-489E-8215-9303108A2F30}.Debug|x64.ActiveCfg = Debug|x64 - {21E2FE31-4E7C-489E-8215-9303108A2F30}.Debug|x64.Build.0 = Debug|x64 - {21E2FE31-4E7C-489E-8215-9303108A2F30}.Debug|x86.ActiveCfg = Debug|x86 - {21E2FE31-4E7C-489E-8215-9303108A2F30}.Debug|x86.Build.0 = Debug|x86 + {21E2FE31-4E7C-489E-8215-9303108A2F30}.Debug|x64.ActiveCfg = Debug|Any CPU + {21E2FE31-4E7C-489E-8215-9303108A2F30}.Debug|x64.Build.0 = Debug|Any CPU + {21E2FE31-4E7C-489E-8215-9303108A2F30}.Debug|x86.ActiveCfg = Debug|Any CPU + {21E2FE31-4E7C-489E-8215-9303108A2F30}.Debug|x86.Build.0 = Debug|Any CPU {21E2FE31-4E7C-489E-8215-9303108A2F30}.Release|Any CPU.ActiveCfg = Release|Any CPU {21E2FE31-4E7C-489E-8215-9303108A2F30}.Release|Any CPU.Build.0 = Release|Any CPU - {21E2FE31-4E7C-489E-8215-9303108A2F30}.Release|x64.ActiveCfg = Release|x64 - {21E2FE31-4E7C-489E-8215-9303108A2F30}.Release|x64.Build.0 = Release|x64 - {21E2FE31-4E7C-489E-8215-9303108A2F30}.Release|x86.ActiveCfg = Release|x86 - {21E2FE31-4E7C-489E-8215-9303108A2F30}.Release|x86.Build.0 = Release|x86 + {21E2FE31-4E7C-489E-8215-9303108A2F30}.Release|x64.ActiveCfg = Release|Any CPU + {21E2FE31-4E7C-489E-8215-9303108A2F30}.Release|x64.Build.0 = Release|Any CPU + {21E2FE31-4E7C-489E-8215-9303108A2F30}.Release|x86.ActiveCfg = Release|Any CPU + {21E2FE31-4E7C-489E-8215-9303108A2F30}.Release|x86.Build.0 = Release|Any CPU {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Debug|x64.ActiveCfg = Debug|x64 - {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Debug|x64.Build.0 = Debug|x64 - {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Debug|x86.ActiveCfg = Debug|x86 - {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Debug|x86.Build.0 = Debug|x86 + {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Debug|x64.ActiveCfg = Debug|Any CPU + {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Debug|x64.Build.0 = Debug|Any CPU + {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Debug|x86.ActiveCfg = Debug|Any CPU + {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Debug|x86.Build.0 = Debug|Any CPU {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Release|Any CPU.ActiveCfg = Release|Any CPU {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Release|Any CPU.Build.0 = Release|Any CPU - {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Release|x64.ActiveCfg = Release|x64 - {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Release|x64.Build.0 = Release|x64 - {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Release|x86.ActiveCfg = Release|x86 - {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Release|x86.Build.0 = Release|x86 + {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Release|x64.ActiveCfg = Release|Any CPU + {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Release|x64.Build.0 = Release|Any CPU + {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Release|x86.ActiveCfg = Release|Any CPU + {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Release|x86.Build.0 = Release|Any CPU {46ED6A9C-C5BF-4495-924E-478736FC280E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {46ED6A9C-C5BF-4495-924E-478736FC280E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {46ED6A9C-C5BF-4495-924E-478736FC280E}.Debug|x64.ActiveCfg = Debug|x64 - {46ED6A9C-C5BF-4495-924E-478736FC280E}.Debug|x64.Build.0 = Debug|x64 - {46ED6A9C-C5BF-4495-924E-478736FC280E}.Debug|x86.ActiveCfg = Debug|x86 - {46ED6A9C-C5BF-4495-924E-478736FC280E}.Debug|x86.Build.0 = Debug|x86 + {46ED6A9C-C5BF-4495-924E-478736FC280E}.Debug|x64.ActiveCfg = Debug|Any CPU + {46ED6A9C-C5BF-4495-924E-478736FC280E}.Debug|x64.Build.0 = Debug|Any CPU + {46ED6A9C-C5BF-4495-924E-478736FC280E}.Debug|x86.ActiveCfg = Debug|Any CPU + {46ED6A9C-C5BF-4495-924E-478736FC280E}.Debug|x86.Build.0 = Debug|Any CPU {46ED6A9C-C5BF-4495-924E-478736FC280E}.Release|Any CPU.ActiveCfg = Release|Any CPU {46ED6A9C-C5BF-4495-924E-478736FC280E}.Release|Any CPU.Build.0 = Release|Any CPU - {46ED6A9C-C5BF-4495-924E-478736FC280E}.Release|x64.ActiveCfg = Release|x64 - {46ED6A9C-C5BF-4495-924E-478736FC280E}.Release|x64.Build.0 = Release|x64 - {46ED6A9C-C5BF-4495-924E-478736FC280E}.Release|x86.ActiveCfg = Release|x86 - {46ED6A9C-C5BF-4495-924E-478736FC280E}.Release|x86.Build.0 = Release|x86 + {46ED6A9C-C5BF-4495-924E-478736FC280E}.Release|x64.ActiveCfg = Release|Any CPU + {46ED6A9C-C5BF-4495-924E-478736FC280E}.Release|x64.Build.0 = Release|Any CPU + {46ED6A9C-C5BF-4495-924E-478736FC280E}.Release|x86.ActiveCfg = Release|Any CPU + {46ED6A9C-C5BF-4495-924E-478736FC280E}.Release|x86.Build.0 = Release|Any CPU {44A3F022-D70A-422D-B850-824BB572F2AF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {44A3F022-D70A-422D-B850-824BB572F2AF}.Debug|Any CPU.Build.0 = Debug|Any CPU - {44A3F022-D70A-422D-B850-824BB572F2AF}.Debug|x64.ActiveCfg = Debug|x64 - {44A3F022-D70A-422D-B850-824BB572F2AF}.Debug|x64.Build.0 = Debug|x64 - {44A3F022-D70A-422D-B850-824BB572F2AF}.Debug|x86.ActiveCfg = Debug|x86 - {44A3F022-D70A-422D-B850-824BB572F2AF}.Debug|x86.Build.0 = Debug|x86 + {44A3F022-D70A-422D-B850-824BB572F2AF}.Debug|x64.ActiveCfg = Debug|Any CPU + {44A3F022-D70A-422D-B850-824BB572F2AF}.Debug|x64.Build.0 = Debug|Any CPU + {44A3F022-D70A-422D-B850-824BB572F2AF}.Debug|x86.ActiveCfg = Debug|Any CPU + {44A3F022-D70A-422D-B850-824BB572F2AF}.Debug|x86.Build.0 = Debug|Any CPU {44A3F022-D70A-422D-B850-824BB572F2AF}.Release|Any CPU.ActiveCfg = Release|Any CPU {44A3F022-D70A-422D-B850-824BB572F2AF}.Release|Any CPU.Build.0 = Release|Any CPU - {44A3F022-D70A-422D-B850-824BB572F2AF}.Release|x64.ActiveCfg = Release|x64 - {44A3F022-D70A-422D-B850-824BB572F2AF}.Release|x64.Build.0 = Release|x64 - {44A3F022-D70A-422D-B850-824BB572F2AF}.Release|x86.ActiveCfg = Release|x86 - {44A3F022-D70A-422D-B850-824BB572F2AF}.Release|x86.Build.0 = Release|x86 + {44A3F022-D70A-422D-B850-824BB572F2AF}.Release|x64.ActiveCfg = Release|Any CPU + {44A3F022-D70A-422D-B850-824BB572F2AF}.Release|x64.Build.0 = Release|Any CPU + {44A3F022-D70A-422D-B850-824BB572F2AF}.Release|x86.ActiveCfg = Release|Any CPU + {44A3F022-D70A-422D-B850-824BB572F2AF}.Release|x86.Build.0 = Release|Any CPU {7D629246-957C-4989-A1E6-29C673086925}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {7D629246-957C-4989-A1E6-29C673086925}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7D629246-957C-4989-A1E6-29C673086925}.Debug|x64.ActiveCfg = Debug|x64 - {7D629246-957C-4989-A1E6-29C673086925}.Debug|x64.Build.0 = Debug|x64 - {7D629246-957C-4989-A1E6-29C673086925}.Debug|x86.ActiveCfg = Debug|x86 - {7D629246-957C-4989-A1E6-29C673086925}.Debug|x86.Build.0 = Debug|x86 + {7D629246-957C-4989-A1E6-29C673086925}.Debug|x64.ActiveCfg = Debug|Any CPU + {7D629246-957C-4989-A1E6-29C673086925}.Debug|x64.Build.0 = Debug|Any CPU + {7D629246-957C-4989-A1E6-29C673086925}.Debug|x86.ActiveCfg = Debug|Any CPU + {7D629246-957C-4989-A1E6-29C673086925}.Debug|x86.Build.0 = Debug|Any CPU {7D629246-957C-4989-A1E6-29C673086925}.Release|Any CPU.ActiveCfg = Release|Any CPU {7D629246-957C-4989-A1E6-29C673086925}.Release|Any CPU.Build.0 = Release|Any CPU - {7D629246-957C-4989-A1E6-29C673086925}.Release|x64.ActiveCfg = Release|x64 - {7D629246-957C-4989-A1E6-29C673086925}.Release|x64.Build.0 = Release|x64 - {7D629246-957C-4989-A1E6-29C673086925}.Release|x86.ActiveCfg = Release|x86 - {7D629246-957C-4989-A1E6-29C673086925}.Release|x86.Build.0 = Release|x86 + {7D629246-957C-4989-A1E6-29C673086925}.Release|x64.ActiveCfg = Release|Any CPU + {7D629246-957C-4989-A1E6-29C673086925}.Release|x64.Build.0 = Release|Any CPU + {7D629246-957C-4989-A1E6-29C673086925}.Release|x86.ActiveCfg = Release|Any CPU + {7D629246-957C-4989-A1E6-29C673086925}.Release|x86.Build.0 = Release|Any CPU {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Debug|x64.ActiveCfg = Debug|x64 - {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Debug|x64.Build.0 = Debug|x64 - {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Debug|x86.ActiveCfg = Debug|x86 - {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Debug|x86.Build.0 = Debug|x86 + {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Debug|x64.ActiveCfg = Debug|Any CPU + {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Debug|x64.Build.0 = Debug|Any CPU + {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Debug|x86.ActiveCfg = Debug|Any CPU + {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Debug|x86.Build.0 = Debug|Any CPU {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Release|Any CPU.ActiveCfg = Release|Any CPU {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Release|Any CPU.Build.0 = Release|Any CPU - {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Release|x64.ActiveCfg = Release|x64 - {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Release|x64.Build.0 = Release|x64 - {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Release|x86.ActiveCfg = Release|x86 - {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Release|x86.Build.0 = Release|x86 - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|Any CPU.Build.0 = Debug|Any CPU - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|x64.ActiveCfg = Debug|x64 - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|x64.Build.0 = Debug|x64 - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|x86.ActiveCfg = Debug|x86 - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|x86.Build.0 = Debug|x86 - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|Any CPU.ActiveCfg = Release|Any CPU - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|Any CPU.Build.0 = Release|Any CPU - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|x64.ActiveCfg = Release|x64 - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|x64.Build.0 = Release|x64 - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|x86.ActiveCfg = Release|x86 - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|x86.Build.0 = Release|x86 + {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Release|x64.ActiveCfg = Release|Any CPU + {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Release|x64.Build.0 = Release|Any CPU + {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Release|x86.ActiveCfg = Release|Any CPU + {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Release|x86.Build.0 = Release|Any CPU {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Debug|x64.ActiveCfg = Debug|x64 - {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Debug|x64.Build.0 = Debug|x64 - {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Debug|x86.ActiveCfg = Debug|x86 - {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Debug|x86.Build.0 = Debug|x86 + {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Debug|x64.ActiveCfg = Debug|Any CPU + {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Debug|x64.Build.0 = Debug|Any CPU + {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Debug|x86.ActiveCfg = Debug|Any CPU + {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Debug|x86.Build.0 = Debug|Any CPU {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Release|Any CPU.ActiveCfg = Release|Any CPU {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Release|Any CPU.Build.0 = Release|Any CPU - {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Release|x64.ActiveCfg = Release|x64 - {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Release|x64.Build.0 = Release|x64 - {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Release|x86.ActiveCfg = Release|x86 - {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Release|x86.Build.0 = Release|x86 + {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Release|x64.ActiveCfg = Release|Any CPU + {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Release|x64.Build.0 = Release|Any CPU + {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Release|x86.ActiveCfg = Release|Any CPU + {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Release|x86.Build.0 = Release|Any CPU {80314941-78D5-4928-B943-93FC945E050F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {80314941-78D5-4928-B943-93FC945E050F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {80314941-78D5-4928-B943-93FC945E050F}.Debug|x64.ActiveCfg = Debug|x64 - {80314941-78D5-4928-B943-93FC945E050F}.Debug|x64.Build.0 = Debug|x64 - {80314941-78D5-4928-B943-93FC945E050F}.Debug|x86.ActiveCfg = Debug|x86 - {80314941-78D5-4928-B943-93FC945E050F}.Debug|x86.Build.0 = Debug|x86 + {80314941-78D5-4928-B943-93FC945E050F}.Debug|x64.ActiveCfg = Debug|Any CPU + {80314941-78D5-4928-B943-93FC945E050F}.Debug|x64.Build.0 = Debug|Any CPU + {80314941-78D5-4928-B943-93FC945E050F}.Debug|x86.ActiveCfg = Debug|Any CPU + {80314941-78D5-4928-B943-93FC945E050F}.Debug|x86.Build.0 = Debug|Any CPU {80314941-78D5-4928-B943-93FC945E050F}.Release|Any CPU.ActiveCfg = Release|Any CPU {80314941-78D5-4928-B943-93FC945E050F}.Release|Any CPU.Build.0 = Release|Any CPU - {80314941-78D5-4928-B943-93FC945E050F}.Release|x64.ActiveCfg = Release|x64 - {80314941-78D5-4928-B943-93FC945E050F}.Release|x64.Build.0 = Release|x64 - {80314941-78D5-4928-B943-93FC945E050F}.Release|x86.ActiveCfg = Release|x86 - {80314941-78D5-4928-B943-93FC945E050F}.Release|x86.Build.0 = Release|x86 + {80314941-78D5-4928-B943-93FC945E050F}.Release|x64.ActiveCfg = Release|Any CPU + {80314941-78D5-4928-B943-93FC945E050F}.Release|x64.Build.0 = Release|Any CPU + {80314941-78D5-4928-B943-93FC945E050F}.Release|x86.ActiveCfg = Release|Any CPU + {80314941-78D5-4928-B943-93FC945E050F}.Release|x86.Build.0 = Release|Any CPU {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Debug|x64.ActiveCfg = Debug|x64 - {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Debug|x64.Build.0 = Debug|x64 - {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Debug|x86.ActiveCfg = Debug|x86 - {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Debug|x86.Build.0 = Debug|x86 + {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Debug|x64.ActiveCfg = Debug|Any CPU + {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Debug|x64.Build.0 = Debug|Any CPU + {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Debug|x86.ActiveCfg = Debug|Any CPU + {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Debug|x86.Build.0 = Debug|Any CPU {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Release|Any CPU.ActiveCfg = Release|Any CPU {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Release|Any CPU.Build.0 = Release|Any CPU - {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Release|x64.ActiveCfg = Release|x64 - {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Release|x64.Build.0 = Release|x64 - {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Release|x86.ActiveCfg = Release|x86 - {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Release|x86.Build.0 = Release|x86 + {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Release|x64.ActiveCfg = Release|Any CPU + {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Release|x64.Build.0 = Release|Any CPU + {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Release|x86.ActiveCfg = Release|Any CPU + {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Release|x86.Build.0 = Release|Any CPU + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|x64.ActiveCfg = Debug|Any CPU + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|x64.Build.0 = Debug|Any CPU + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|x86.ActiveCfg = Debug|Any CPU + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|x86.Build.0 = Debug|Any CPU + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|Any CPU.Build.0 = Release|Any CPU + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|x64.ActiveCfg = Release|Any CPU + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|x64.Build.0 = Release|Any CPU + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|x86.ActiveCfg = Release|Any CPU + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|x86.Build.0 = Release|Any CPU {2A985028-4410-40F7-992C-5397DC1ED116}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {2A985028-4410-40F7-992C-5397DC1ED116}.Debug|Any CPU.Build.0 = Debug|Any CPU - {2A985028-4410-40F7-992C-5397DC1ED116}.Debug|x64.ActiveCfg = Debug|x64 - {2A985028-4410-40F7-992C-5397DC1ED116}.Debug|x64.Build.0 = Debug|x64 - {2A985028-4410-40F7-992C-5397DC1ED116}.Debug|x86.ActiveCfg = Debug|x86 - {2A985028-4410-40F7-992C-5397DC1ED116}.Debug|x86.Build.0 = Debug|x86 + {2A985028-4410-40F7-992C-5397DC1ED116}.Debug|x64.ActiveCfg = Debug|Any CPU + {2A985028-4410-40F7-992C-5397DC1ED116}.Debug|x64.Build.0 = Debug|Any CPU + {2A985028-4410-40F7-992C-5397DC1ED116}.Debug|x86.ActiveCfg = Debug|Any CPU + {2A985028-4410-40F7-992C-5397DC1ED116}.Debug|x86.Build.0 = Debug|Any CPU {2A985028-4410-40F7-992C-5397DC1ED116}.Release|Any CPU.ActiveCfg = Release|Any CPU {2A985028-4410-40F7-992C-5397DC1ED116}.Release|Any CPU.Build.0 = Release|Any CPU - {2A985028-4410-40F7-992C-5397DC1ED116}.Release|x64.ActiveCfg = Release|x64 - {2A985028-4410-40F7-992C-5397DC1ED116}.Release|x64.Build.0 = Release|x64 - {2A985028-4410-40F7-992C-5397DC1ED116}.Release|x86.ActiveCfg = Release|x86 - {2A985028-4410-40F7-992C-5397DC1ED116}.Release|x86.Build.0 = Release|x86 + {2A985028-4410-40F7-992C-5397DC1ED116}.Release|x64.ActiveCfg = Release|Any CPU + {2A985028-4410-40F7-992C-5397DC1ED116}.Release|x64.Build.0 = Release|Any CPU + {2A985028-4410-40F7-992C-5397DC1ED116}.Release|x86.ActiveCfg = Release|Any CPU + {2A985028-4410-40F7-992C-5397DC1ED116}.Release|x86.Build.0 = Release|Any CPU {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Debug|x64.ActiveCfg = Debug|x64 - {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Debug|x64.Build.0 = Debug|x64 - {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Debug|x86.ActiveCfg = Debug|x86 - {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Debug|x86.Build.0 = Debug|x86 + {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Debug|x64.ActiveCfg = Debug|Any CPU + {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Debug|x64.Build.0 = Debug|Any CPU + {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Debug|x86.ActiveCfg = Debug|Any CPU + {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Debug|x86.Build.0 = Debug|Any CPU {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Release|Any CPU.ActiveCfg = Release|Any CPU {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Release|Any CPU.Build.0 = Release|Any CPU - {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Release|x64.ActiveCfg = Release|x64 - {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Release|x64.Build.0 = Release|x64 - {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Release|x86.ActiveCfg = Release|x86 - {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Release|x86.Build.0 = Release|x86 + {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Release|x64.ActiveCfg = Release|Any CPU + {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Release|x64.Build.0 = Release|Any CPU + {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Release|x86.ActiveCfg = Release|Any CPU + {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Release|x86.Build.0 = Release|Any CPU {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Debug|Any CPU.Build.0 = Debug|Any CPU - {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Debug|x64.ActiveCfg = Debug|x64 - {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Debug|x64.Build.0 = Debug|x64 - {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Debug|x86.ActiveCfg = Debug|x86 - {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Debug|x86.Build.0 = Debug|x86 + {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Debug|x64.ActiveCfg = Debug|Any CPU + {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Debug|x64.Build.0 = Debug|Any CPU + {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Debug|x86.ActiveCfg = Debug|Any CPU + {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Debug|x86.Build.0 = Debug|Any CPU {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Release|Any CPU.ActiveCfg = Release|Any CPU {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Release|Any CPU.Build.0 = Release|Any CPU - {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Release|x64.ActiveCfg = Release|x64 - {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Release|x64.Build.0 = Release|x64 - {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Release|x86.ActiveCfg = Release|x86 - {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Release|x86.Build.0 = Release|x86 + {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Release|x64.ActiveCfg = Release|Any CPU + {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Release|x64.Build.0 = Release|Any CPU + {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Release|x86.ActiveCfg = Release|Any CPU + {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Release|x86.Build.0 = Release|Any CPU {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Debug|Any CPU.Build.0 = Debug|Any CPU - {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Debug|x64.ActiveCfg = Debug|x64 - {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Debug|x64.Build.0 = Debug|x64 - {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Debug|x86.ActiveCfg = Debug|x86 - {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Debug|x86.Build.0 = Debug|x86 + {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Debug|x64.ActiveCfg = Debug|Any CPU + {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Debug|x64.Build.0 = Debug|Any CPU + {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Debug|x86.ActiveCfg = Debug|Any CPU + {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Debug|x86.Build.0 = Debug|Any CPU {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|Any CPU.ActiveCfg = Release|Any CPU {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|Any CPU.Build.0 = Release|Any CPU - {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|x64.ActiveCfg = Release|x64 - {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|x64.Build.0 = Release|x64 - {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|x86.ActiveCfg = Release|x86 - {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|x86.Build.0 = Release|x86 + {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|x64.ActiveCfg = Release|Any CPU + {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|x64.Build.0 = Release|Any CPU + {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|x86.ActiveCfg = Release|Any CPU + {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|x86.Build.0 = Release|Any CPU + {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Debug|x64.ActiveCfg = Debug|Any CPU + {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Debug|x64.Build.0 = Debug|Any CPU + {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Debug|x86.ActiveCfg = Debug|Any CPU + {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Debug|x86.Build.0 = Debug|Any CPU + {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Release|Any CPU.Build.0 = Release|Any CPU + {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Release|x64.ActiveCfg = Release|Any CPU + {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Release|x64.Build.0 = Release|Any CPU + {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Release|x86.ActiveCfg = Release|Any CPU + {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution {E2CF8635-E7C4-4470-92DD-F706F052BF7B} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} @@ -506,13 +519,17 @@ Global {44A3F022-D70A-422D-B850-824BB572F2AF} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} {7D629246-957C-4989-A1E6-29C673086925} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} {A95B731B-5887-4EF5-A64D-B643FA8EBD92} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} - {6B339DA3-8DED-4262-A427-3C4CCDD00650} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} {E32B2631-476A-4C2D-AE18-275ED7A22F10} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} {80314941-78D5-4928-B943-93FC945E050F} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} {CDFB2B10-050A-4188-8F72-2BCC61E9814F} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} + {6B339DA3-8DED-4262-A427-3C4CCDD00650} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} {2A985028-4410-40F7-992C-5397DC1ED116} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} {A9AF015B-43C9-405E-BF74-CE936B8418F9} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} + {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {9781F4E3-3B46-4F82-94FD-8CC8EE8819E7} EndGlobalSection EndGlobal diff --git a/src/app/Fake.DotNet.Xamarin/Xamarin.fs b/src/app/Fake.DotNet.Xamarin/Xamarin.fs index dfb85c6545c..97d37a8d5e1 100644 --- a/src/app/Fake.DotNet.Xamarin/Xamarin.fs +++ b/src/app/Fake.DotNet.Xamarin/Xamarin.fs @@ -1,5 +1,5 @@ /// Contains tasks for building Xamarin.iOS and Xamarin.Android apps -module Fake.XamarinHelper +module Fake.DotNet.Xamarin open System open System.IO diff --git a/src/app/FakeLib/FakeLib.fsproj b/src/app/FakeLib/FakeLib.fsproj index e1b8de8a64d..ab54c98714b 100644 --- a/src/app/FakeLib/FakeLib.fsproj +++ b/src/app/FakeLib/FakeLib.fsproj @@ -292,6 +292,9 @@ Fake.Api.Slack/SlackNotification.fs + + Fake.DotNet.Xamarin/Xamarin.fs + @@ -414,9 +417,6 @@ - - Fake.DotNet.Xamarin/Xamarin.fs - @@ -445,6 +445,7 @@ + diff --git a/src/app/FakeLib/XamarinHelper.fs b/src/app/FakeLib/XamarinHelper.fs index 57f041fa656..2ab25308385 100644 --- a/src/app/FakeLib/XamarinHelper.fs +++ b/src/app/FakeLib/XamarinHelper.fs @@ -122,6 +122,7 @@ type IncrementerVersion = int32 -> AndroidAbiTarget -> int32 /// Builds a project or solution using Xamarin's iOS build tools /// ## Parameters /// - `setParams` - Function used to override the default build parameters +[] let iOSBuild setParams = let validateParams param = if param.ProjectPath = "" then failwith "You must specify a project to package" @@ -217,6 +218,7 @@ let AndroidPackageDefaults = { /// Packages a Xamarin.Android app, returning a multiple FileInfo objects for the unsigned APK files /// ## Parameters /// - `setParams` - Function used to override the default build parameters +[] let AndroidBuildPackages setParams = let validateParams param = if param.ProjectPath = "" then failwith "You must specify a project to package" @@ -356,6 +358,7 @@ let AndroidBuildPackages setParams = /// Packages a Xamarin.Android app, returning a FileInfo object for the unsigned APK file /// ## Parameters /// - `setParams` - Function used to override the default build parameters +[] let AndroidPackage setParams = AndroidBuildPackages setParams |> Seq.exactlyOne @@ -393,6 +396,7 @@ let AndroidSignAndAlignDefaults = { /// ## Parameters /// - `setParams` - Function used to override the default build parameters /// - `apkFile` - FileInfo object for an unsigned APK file to sign and align +[] let AndroidSignAndAlign setParams apkFile = let validateParams param = if param.KeystorePath = "" then failwith "You must specify a keystore to use" @@ -425,6 +429,7 @@ let AndroidSignAndAlign setParams apkFile = /// ## Parameters /// - `setParams` - Function used to override the default build parameters /// - `apkFiles` - FileInfo object for an unsigned APK file to sign and align +[] let AndroidSignAndAlignPackages setParams apkFiles = apkFiles |> Seq.map (fun f -> AndroidSignAndAlign setParams f) @@ -453,6 +458,7 @@ let iOSArchiveDefaults = { /// Archive a project using Xamarin's iOS archive tools /// ## Parameters /// - `setParams` - Function used to override the default archive parameters +[] let iOSArchive setParams = let archiveProject param = let projectNameArg = if param.ProjectName <> "" then String.Format("-p:{0} ", param.ProjectName) else "" From 3d3cccef99ddc7898c7ef19d570924189221f7fd Mon Sep 17 00:00:00 2001 From: Kent Boogaart Date: Wed, 18 Oct 2017 18:21:08 +1030 Subject: [PATCH 14/43] Roll back solution file --- src/Fake-netcore.sln | 633 +++++++++++++++++++++---------------------- 1 file changed, 308 insertions(+), 325 deletions(-) diff --git a/src/Fake-netcore.sln b/src/Fake-netcore.sln index dc3cbc531f4..90de215a373 100644 --- a/src/Fake-netcore.sln +++ b/src/Fake-netcore.sln @@ -1,76 +1,75 @@ + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 -VisualStudioVersion = 15.0.27004.2002 +VisualStudioVersion = 15.0.26124.0 MinimumVisualStudioVersion = 15.0.26124.0 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "app", "app", "{7BFFAE76-DEE9-417A-A79B-6A6644C4553A}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.BuildServer", "app\Fake.Core.BuildServer\Fake.Core.BuildServer.fsproj", "{E2CF8635-E7C4-4470-92DD-F706F052BF7B}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.BuildServer", "app\Fake.Core.BuildServer\Fake.Core.BuildServer.fsproj", "{E2CF8635-E7C4-4470-92DD-F706F052BF7B}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.Context", "app\Fake.Core.Context\Fake.Core.Context.fsproj", "{D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.Context", "app\Fake.Core.Context\Fake.Core.Context.fsproj", "{D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.Environment", "app\Fake.Core.Environment\Fake.Core.Environment.fsproj", "{A2C4A85F-24C4-4FFA-B165-4807B1127C4E}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.Environment", "app\Fake.Core.Environment\Fake.Core.Environment.fsproj", "{A2C4A85F-24C4-4FFA-B165-4807B1127C4E}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.Globbing", "app\Fake.Core.Globbing\Fake.Core.Globbing.fsproj", "{20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.Globbing", "app\Fake.Core.Globbing\Fake.Core.Globbing.fsproj", "{20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.Process", "app\Fake.Core.Process\Fake.Core.Process.fsproj", "{DB09FF66-8750-40B8-9E25-70FADD9CF0BD}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.Process", "app\Fake.Core.Process\Fake.Core.Process.fsproj", "{DB09FF66-8750-40B8-9E25-70FADD9CF0BD}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.ReleaseNotes", "app\Fake.Core.ReleaseNotes\Fake.Core.ReleaseNotes.fsproj", "{FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.ReleaseNotes", "app\Fake.Core.ReleaseNotes\Fake.Core.ReleaseNotes.fsproj", "{FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.SemVer", "app\Fake.Core.SemVer\Fake.Core.SemVer.fsproj", "{AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.SemVer", "app\Fake.Core.SemVer\Fake.Core.SemVer.fsproj", "{AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.String", "app\Fake.Core.String\Fake.Core.String.fsproj", "{D5B2FEB2-BA3A-492D-B83D-414835043D86}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.String", "app\Fake.Core.String\Fake.Core.String.fsproj", "{D5B2FEB2-BA3A-492D-B83D-414835043D86}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.Tracing", "app\Fake.Core.Tracing\Fake.Core.Tracing.fsproj", "{9430365D-C956-4290-A006-A87F9083DC4B}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.Tracing", "app\Fake.Core.Tracing\Fake.Core.Tracing.fsproj", "{9430365D-C956-4290-A006-A87F9083DC4B}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.Target", "app\Fake.Core.Target\Fake.Core.Target.fsproj", "{0C28F2FB-2B12-4893-AAA4-2C2548926847}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.Target", "app\Fake.Core.Target\Fake.Core.Target.fsproj", "{0C28F2FB-2B12-4893-AAA4-2C2548926847}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.Tasks", "app\Fake.Core.Tasks\Fake.Core.Tasks.fsproj", "{83860B89-4A95-49A5-B4D6-B8F3345498E9}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.Tasks", "app\Fake.Core.Tasks\Fake.Core.Tasks.fsproj", "{83860B89-4A95-49A5-B4D6-B8F3345498E9}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Core.Xml", "app\Fake.Core.Xml\Fake.Core.Xml.fsproj", "{C3C12DCE-7AC4-4E97-A7FC-49189D218885}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Core.Xml", "app\Fake.Core.Xml\Fake.Core.Xml.fsproj", "{C3C12DCE-7AC4-4E97-A7FC-49189D218885}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.AssemblyInfoFile", "app\Fake.DotNet.AssemblyInfoFile\Fake.DotNet.AssemblyInfoFile.fsproj", "{BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.AssemblyInfoFile", "app\Fake.DotNet.AssemblyInfoFile\Fake.DotNet.AssemblyInfoFile.fsproj", "{BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.Cli", "app\Fake.DotNet.Cli\Fake.DotNet.Cli.fsproj", "{B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.Cli", "app\Fake.DotNet.Cli\Fake.DotNet.Cli.fsproj", "{B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.MsBuild", "app\Fake.DotNet.MsBuild\Fake.DotNet.MsBuild.fsproj", "{64195C50-E138-4218-A7CE-13CD4565B87E}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.MsBuild", "app\Fake.DotNet.MsBuild\Fake.DotNet.MsBuild.fsproj", "{64195C50-E138-4218-A7CE-13CD4565B87E}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.NuGet", "app\Fake.DotNet.NuGet\Fake.DotNet.NuGet.fsproj", "{93F1A71E-54E2-4C65-BB1E-1D499890317F}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.NuGet", "app\Fake.DotNet.NuGet\Fake.DotNet.NuGet.fsproj", "{93F1A71E-54E2-4C65-BB1E-1D499890317F}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.Testing.MSpec", "app\Fake.DotNet.Testing.MSpec\Fake.DotNet.Testing.MSpec.fsproj", "{C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.Testing.MSpec", "app\Fake.DotNet.Testing.MSpec\Fake.DotNet.Testing.MSpec.fsproj", "{C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.Testing.NUnit", "app\Fake.DotNet.Testing.NUnit\Fake.DotNet.Testing.NUnit.fsproj", "{75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.Testing.NUnit", "app\Fake.DotNet.Testing.NUnit\Fake.DotNet.Testing.NUnit.fsproj", "{75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.Testing.XUnit2", "app\Fake.DotNet.Testing.XUnit2\Fake.DotNet.Testing.XUnit2.fsproj", "{21E2FE31-4E7C-489E-8215-9303108A2F39}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.Testing.XUnit2", "app\Fake.DotNet.Testing.XUnit2\Fake.DotNet.Testing.XUnit2.fsproj", "{21E2FE31-4E7C-489E-8215-9303108A2F39}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.Testing.MSTest", "app\Fake.DotNet.Testing.MSTest\Fake.DotNet.Testing.MSTest.fsproj", "{21E2FE31-4E7C-489E-8215-9303108A2F30}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.Testing.MSTest", "app\Fake.DotNet.Testing.MSTest\Fake.DotNet.Testing.MSTest.fsproj", "{21E2FE31-4E7C-489E-8215-9303108A2F30}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.IO.FileSystem", "app\Fake.IO.FileSystem\Fake.IO.FileSystem.fsproj", "{4B1416CD-C7CB-4670-8EFE-871ED316D51D}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.IO.FileSystem", "app\Fake.IO.FileSystem\Fake.IO.FileSystem.fsproj", "{4B1416CD-C7CB-4670-8EFE-871ED316D51D}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.IO.Zip", "app\Fake.IO.Zip\Fake.IO.Zip.fsproj", "{46ED6A9C-C5BF-4495-924E-478736FC280E}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.IO.Zip", "app\Fake.IO.Zip\Fake.IO.Zip.fsproj", "{46ED6A9C-C5BF-4495-924E-478736FC280E}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Runtime", "app\Fake.Runtime\Fake.Runtime.fsproj", "{44A3F022-D70A-422D-B850-824BB572F2AF}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Runtime", "app\Fake.Runtime\Fake.Runtime.fsproj", "{44A3F022-D70A-422D-B850-824BB572F2AF}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Testing.Common", "app\Fake.Testing.Common\Fake.Testing.Common.fsproj", "{7D629246-957C-4989-A1E6-29C673086925}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Testing.Common", "app\Fake.Testing.Common\Fake.Testing.Common.fsproj", "{7D629246-957C-4989-A1E6-29C673086925}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Windows.Chocolatey", "app\Fake.Windows.Chocolatey\Fake.Windows.Chocolatey.fsproj", "{A95B731B-5887-4EF5-A64D-B643FA8EBD92}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Windows.Chocolatey", "app\Fake.Windows.Chocolatey\Fake.Windows.Chocolatey.fsproj", "{A95B731B-5887-4EF5-A64D-B643FA8EBD92}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Tools.Git", "app\Fake.Tools.Git\Fake.Tools.Git.fsproj", "{E32B2631-476A-4C2D-AE18-275ED7A22F10}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Tools.Git", "app\Fake.Tools.Git\Fake.Tools.Git.fsproj", "{E32B2631-476A-4C2D-AE18-275ED7A22F10}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.FSFormatting", "app\Fake.DotNet.FSFormatting\Fake.DotNet.FSFormatting.fsproj", "{80314941-78D5-4928-B943-93FC945E050F}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.FSFormatting", "app\Fake.DotNet.FSFormatting\Fake.DotNet.FSFormatting.fsproj", "{80314941-78D5-4928-B943-93FC945E050F}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.Paket", "app\Fake.DotNet.Paket\Fake.DotNet.Paket.fsproj", "{CDFB2B10-050A-4188-8F72-2BCC61E9814F}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.Paket", "app\Fake.DotNet.Paket\Fake.DotNet.Paket.fsproj", "{CDFB2B10-050A-4188-8F72-2BCC61E9814F}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.netcore", "app\Fake.netcore\Fake.netcore.fsproj", "{6B339DA3-8DED-4262-A427-3C4CCDD00650}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.netcore", "app\Fake.netcore\Fake.netcore.fsproj", "{6B339DA3-8DED-4262-A427-3C4CCDD00650}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Testing.SonarQube", "app\Fake.Testing.SonarQube\Fake.Testing.SonarQube.fsproj", "{2A985028-4410-40F7-992C-5397DC1ED116}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Testing.SonarQube", "app\Fake.Testing.SonarQube\Fake.Testing.SonarQube.fsproj", "{2A985028-4410-40F7-992C-5397DC1ED116}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.Testing.OpenCover", "app\Fake.DotNet.Testing.OpenCover\Fake.DotNet.Testing.OpenCover.fsproj", "{A9AF015B-43C9-405E-BF74-CE936B8418F9}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.Testing.OpenCover", "app\Fake.DotNet.Testing.OpenCover\Fake.DotNet.Testing.OpenCover.fsproj", "{A9AF015B-43C9-405E-BF74-CE936B8418F9}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Api.Slack", "app\Fake.Api.Slack\Fake.Api.Slack.fsproj", "{58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Api.Slack", "app\Fake.Api.Slack\Fake.Api.Slack.fsproj", "{58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}" EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.Api.GitHub", "app\Fake.Api.GitHub\Fake.Api.GitHub.fsproj", "{4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}" -EndProject -Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fake.DotNet.Xamarin", "app\Fake.DotNet.Xamarin\Fake.DotNet.Xamarin.fsproj", "{7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}" +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Api.GitHub", "app\Fake.Api.GitHub\Fake.Api.GitHub.fsproj", "{4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -81,418 +80,406 @@ Global Release|x64 = Release|x64 Release|x86 = Release|x86 EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Debug|x64.ActiveCfg = Debug|Any CPU - {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Debug|x64.Build.0 = Debug|Any CPU - {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Debug|x86.ActiveCfg = Debug|Any CPU - {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Debug|x86.Build.0 = Debug|Any CPU + {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Debug|x64.ActiveCfg = Debug|x64 + {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Debug|x64.Build.0 = Debug|x64 + {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Debug|x86.ActiveCfg = Debug|x86 + {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Debug|x86.Build.0 = Debug|x86 {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Release|Any CPU.ActiveCfg = Release|Any CPU {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Release|Any CPU.Build.0 = Release|Any CPU - {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Release|x64.ActiveCfg = Release|Any CPU - {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Release|x64.Build.0 = Release|Any CPU - {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Release|x86.ActiveCfg = Release|Any CPU - {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Release|x86.Build.0 = Release|Any CPU + {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Release|x64.ActiveCfg = Release|x64 + {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Release|x64.Build.0 = Release|x64 + {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Release|x86.ActiveCfg = Release|x86 + {E2CF8635-E7C4-4470-92DD-F706F052BF7B}.Release|x86.Build.0 = Release|x86 {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Debug|x64.ActiveCfg = Debug|Any CPU - {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Debug|x64.Build.0 = Debug|Any CPU - {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Debug|x86.ActiveCfg = Debug|Any CPU - {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Debug|x86.Build.0 = Debug|Any CPU + {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Debug|x64.ActiveCfg = Debug|x64 + {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Debug|x64.Build.0 = Debug|x64 + {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Debug|x86.ActiveCfg = Debug|x86 + {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Debug|x86.Build.0 = Debug|x86 {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Release|Any CPU.ActiveCfg = Release|Any CPU {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Release|Any CPU.Build.0 = Release|Any CPU - {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Release|x64.ActiveCfg = Release|Any CPU - {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Release|x64.Build.0 = Release|Any CPU - {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Release|x86.ActiveCfg = Release|Any CPU - {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Release|x86.Build.0 = Release|Any CPU + {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Release|x64.ActiveCfg = Release|x64 + {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Release|x64.Build.0 = Release|x64 + {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Release|x86.ActiveCfg = Release|x86 + {D3D92ED7-C2B9-46D5-B611-A2CF0C30C8DB}.Release|x86.Build.0 = Release|x86 {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Debug|x64.ActiveCfg = Debug|Any CPU - {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Debug|x64.Build.0 = Debug|Any CPU - {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Debug|x86.ActiveCfg = Debug|Any CPU - {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Debug|x86.Build.0 = Debug|Any CPU + {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Debug|x64.ActiveCfg = Debug|x64 + {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Debug|x64.Build.0 = Debug|x64 + {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Debug|x86.ActiveCfg = Debug|x86 + {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Debug|x86.Build.0 = Debug|x86 {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Release|Any CPU.ActiveCfg = Release|Any CPU {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Release|Any CPU.Build.0 = Release|Any CPU - {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Release|x64.ActiveCfg = Release|Any CPU - {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Release|x64.Build.0 = Release|Any CPU - {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Release|x86.ActiveCfg = Release|Any CPU - {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Release|x86.Build.0 = Release|Any CPU + {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Release|x64.ActiveCfg = Release|x64 + {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Release|x64.Build.0 = Release|x64 + {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Release|x86.ActiveCfg = Release|x86 + {A2C4A85F-24C4-4FFA-B165-4807B1127C4E}.Release|x86.Build.0 = Release|x86 {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Debug|x64.ActiveCfg = Debug|Any CPU - {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Debug|x64.Build.0 = Debug|Any CPU - {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Debug|x86.ActiveCfg = Debug|Any CPU - {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Debug|x86.Build.0 = Debug|Any CPU + {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Debug|x64.ActiveCfg = Debug|x64 + {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Debug|x64.Build.0 = Debug|x64 + {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Debug|x86.ActiveCfg = Debug|x86 + {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Debug|x86.Build.0 = Debug|x86 {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Release|Any CPU.ActiveCfg = Release|Any CPU {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Release|Any CPU.Build.0 = Release|Any CPU - {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Release|x64.ActiveCfg = Release|Any CPU - {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Release|x64.Build.0 = Release|Any CPU - {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Release|x86.ActiveCfg = Release|Any CPU - {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Release|x86.Build.0 = Release|Any CPU + {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Release|x64.ActiveCfg = Release|x64 + {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Release|x64.Build.0 = Release|x64 + {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Release|x86.ActiveCfg = Release|x86 + {20CB4CDC-7813-4F80-8321-FBFBB0B5EE2D}.Release|x86.Build.0 = Release|x86 {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Debug|Any CPU.Build.0 = Debug|Any CPU - {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Debug|x64.ActiveCfg = Debug|Any CPU - {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Debug|x64.Build.0 = Debug|Any CPU - {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Debug|x86.ActiveCfg = Debug|Any CPU - {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Debug|x86.Build.0 = Debug|Any CPU + {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Debug|x64.ActiveCfg = Debug|x64 + {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Debug|x64.Build.0 = Debug|x64 + {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Debug|x86.ActiveCfg = Debug|x86 + {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Debug|x86.Build.0 = Debug|x86 {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Release|Any CPU.ActiveCfg = Release|Any CPU {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Release|Any CPU.Build.0 = Release|Any CPU - {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Release|x64.ActiveCfg = Release|Any CPU - {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Release|x64.Build.0 = Release|Any CPU - {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Release|x86.ActiveCfg = Release|Any CPU - {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Release|x86.Build.0 = Release|Any CPU + {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Release|x64.ActiveCfg = Release|x64 + {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Release|x64.Build.0 = Release|x64 + {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Release|x86.ActiveCfg = Release|x86 + {DB09FF66-8750-40B8-9E25-70FADD9CF0BD}.Release|x86.Build.0 = Release|x86 {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Debug|x64.ActiveCfg = Debug|Any CPU - {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Debug|x64.Build.0 = Debug|Any CPU - {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Debug|x86.ActiveCfg = Debug|Any CPU - {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Debug|x86.Build.0 = Debug|Any CPU + {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Debug|x64.ActiveCfg = Debug|x64 + {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Debug|x64.Build.0 = Debug|x64 + {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Debug|x86.ActiveCfg = Debug|x86 + {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Debug|x86.Build.0 = Debug|x86 {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Release|Any CPU.ActiveCfg = Release|Any CPU {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Release|Any CPU.Build.0 = Release|Any CPU - {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Release|x64.ActiveCfg = Release|Any CPU - {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Release|x64.Build.0 = Release|Any CPU - {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Release|x86.ActiveCfg = Release|Any CPU - {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Release|x86.Build.0 = Release|Any CPU + {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Release|x64.ActiveCfg = Release|x64 + {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Release|x64.Build.0 = Release|x64 + {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Release|x86.ActiveCfg = Release|x86 + {FEDE1F15-C0A5-4DA1-B20D-0A0C28F6858E}.Release|x86.Build.0 = Release|x86 {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Debug|x64.ActiveCfg = Debug|Any CPU - {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Debug|x64.Build.0 = Debug|Any CPU - {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Debug|x86.ActiveCfg = Debug|Any CPU - {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Debug|x86.Build.0 = Debug|Any CPU + {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Debug|x64.ActiveCfg = Debug|x64 + {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Debug|x64.Build.0 = Debug|x64 + {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Debug|x86.ActiveCfg = Debug|x86 + {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Debug|x86.Build.0 = Debug|x86 {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Release|Any CPU.ActiveCfg = Release|Any CPU {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Release|Any CPU.Build.0 = Release|Any CPU - {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Release|x64.ActiveCfg = Release|Any CPU - {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Release|x64.Build.0 = Release|Any CPU - {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Release|x86.ActiveCfg = Release|Any CPU - {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Release|x86.Build.0 = Release|Any CPU + {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Release|x64.ActiveCfg = Release|x64 + {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Release|x64.Build.0 = Release|x64 + {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Release|x86.ActiveCfg = Release|x86 + {AFCCC2AB-EFFE-4CAE-ACAD-3434B04D3A4E}.Release|x86.Build.0 = Release|x86 {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Debug|x64.ActiveCfg = Debug|Any CPU - {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Debug|x64.Build.0 = Debug|Any CPU - {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Debug|x86.ActiveCfg = Debug|Any CPU - {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Debug|x86.Build.0 = Debug|Any CPU + {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Debug|x64.ActiveCfg = Debug|x64 + {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Debug|x64.Build.0 = Debug|x64 + {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Debug|x86.ActiveCfg = Debug|x86 + {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Debug|x86.Build.0 = Debug|x86 {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Release|Any CPU.ActiveCfg = Release|Any CPU {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Release|Any CPU.Build.0 = Release|Any CPU - {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Release|x64.ActiveCfg = Release|Any CPU - {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Release|x64.Build.0 = Release|Any CPU - {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Release|x86.ActiveCfg = Release|Any CPU - {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Release|x86.Build.0 = Release|Any CPU + {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Release|x64.ActiveCfg = Release|x64 + {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Release|x64.Build.0 = Release|x64 + {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Release|x86.ActiveCfg = Release|x86 + {D5B2FEB2-BA3A-492D-B83D-414835043D86}.Release|x86.Build.0 = Release|x86 {9430365D-C956-4290-A006-A87F9083DC4B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {9430365D-C956-4290-A006-A87F9083DC4B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {9430365D-C956-4290-A006-A87F9083DC4B}.Debug|x64.ActiveCfg = Debug|Any CPU - {9430365D-C956-4290-A006-A87F9083DC4B}.Debug|x64.Build.0 = Debug|Any CPU - {9430365D-C956-4290-A006-A87F9083DC4B}.Debug|x86.ActiveCfg = Debug|Any CPU - {9430365D-C956-4290-A006-A87F9083DC4B}.Debug|x86.Build.0 = Debug|Any CPU + {9430365D-C956-4290-A006-A87F9083DC4B}.Debug|x64.ActiveCfg = Debug|x64 + {9430365D-C956-4290-A006-A87F9083DC4B}.Debug|x64.Build.0 = Debug|x64 + {9430365D-C956-4290-A006-A87F9083DC4B}.Debug|x86.ActiveCfg = Debug|x86 + {9430365D-C956-4290-A006-A87F9083DC4B}.Debug|x86.Build.0 = Debug|x86 {9430365D-C956-4290-A006-A87F9083DC4B}.Release|Any CPU.ActiveCfg = Release|Any CPU {9430365D-C956-4290-A006-A87F9083DC4B}.Release|Any CPU.Build.0 = Release|Any CPU - {9430365D-C956-4290-A006-A87F9083DC4B}.Release|x64.ActiveCfg = Release|Any CPU - {9430365D-C956-4290-A006-A87F9083DC4B}.Release|x64.Build.0 = Release|Any CPU - {9430365D-C956-4290-A006-A87F9083DC4B}.Release|x86.ActiveCfg = Release|Any CPU - {9430365D-C956-4290-A006-A87F9083DC4B}.Release|x86.Build.0 = Release|Any CPU + {9430365D-C956-4290-A006-A87F9083DC4B}.Release|x64.ActiveCfg = Release|x64 + {9430365D-C956-4290-A006-A87F9083DC4B}.Release|x64.Build.0 = Release|x64 + {9430365D-C956-4290-A006-A87F9083DC4B}.Release|x86.ActiveCfg = Release|x86 + {9430365D-C956-4290-A006-A87F9083DC4B}.Release|x86.Build.0 = Release|x86 {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Debug|Any CPU.Build.0 = Debug|Any CPU - {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Debug|x64.ActiveCfg = Debug|Any CPU - {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Debug|x64.Build.0 = Debug|Any CPU - {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Debug|x86.ActiveCfg = Debug|Any CPU - {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Debug|x86.Build.0 = Debug|Any CPU + {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Debug|x64.ActiveCfg = Debug|x64 + {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Debug|x64.Build.0 = Debug|x64 + {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Debug|x86.ActiveCfg = Debug|x86 + {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Debug|x86.Build.0 = Debug|x86 {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Release|Any CPU.ActiveCfg = Release|Any CPU {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Release|Any CPU.Build.0 = Release|Any CPU - {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Release|x64.ActiveCfg = Release|Any CPU - {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Release|x64.Build.0 = Release|Any CPU - {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Release|x86.ActiveCfg = Release|Any CPU - {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Release|x86.Build.0 = Release|Any CPU + {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Release|x64.ActiveCfg = Release|x64 + {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Release|x64.Build.0 = Release|x64 + {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Release|x86.ActiveCfg = Release|x86 + {0C28F2FB-2B12-4893-AAA4-2C2548926847}.Release|x86.Build.0 = Release|x86 {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Debug|Any CPU.Build.0 = Debug|Any CPU - {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Debug|x64.ActiveCfg = Debug|Any CPU - {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Debug|x64.Build.0 = Debug|Any CPU - {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Debug|x86.ActiveCfg = Debug|Any CPU - {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Debug|x86.Build.0 = Debug|Any CPU + {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Debug|x64.ActiveCfg = Debug|x64 + {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Debug|x64.Build.0 = Debug|x64 + {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Debug|x86.ActiveCfg = Debug|x86 + {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Debug|x86.Build.0 = Debug|x86 {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Release|Any CPU.ActiveCfg = Release|Any CPU {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Release|Any CPU.Build.0 = Release|Any CPU - {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Release|x64.ActiveCfg = Release|Any CPU - {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Release|x64.Build.0 = Release|Any CPU - {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Release|x86.ActiveCfg = Release|Any CPU - {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Release|x86.Build.0 = Release|Any CPU + {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Release|x64.ActiveCfg = Release|x64 + {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Release|x64.Build.0 = Release|x64 + {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Release|x86.ActiveCfg = Release|x86 + {83860B89-4A95-49A5-B4D6-B8F3345498E9}.Release|x86.Build.0 = Release|x86 {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Debug|x64.ActiveCfg = Debug|Any CPU - {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Debug|x64.Build.0 = Debug|Any CPU - {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Debug|x86.ActiveCfg = Debug|Any CPU - {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Debug|x86.Build.0 = Debug|Any CPU + {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Debug|x64.ActiveCfg = Debug|x64 + {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Debug|x64.Build.0 = Debug|x64 + {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Debug|x86.ActiveCfg = Debug|x86 + {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Debug|x86.Build.0 = Debug|x86 {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Release|Any CPU.ActiveCfg = Release|Any CPU {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Release|Any CPU.Build.0 = Release|Any CPU - {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Release|x64.ActiveCfg = Release|Any CPU - {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Release|x64.Build.0 = Release|Any CPU - {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Release|x86.ActiveCfg = Release|Any CPU - {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Release|x86.Build.0 = Release|Any CPU + {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Release|x64.ActiveCfg = Release|x64 + {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Release|x64.Build.0 = Release|x64 + {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Release|x86.ActiveCfg = Release|x86 + {C3C12DCE-7AC4-4E97-A7FC-49189D218885}.Release|x86.Build.0 = Release|x86 {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Debug|Any CPU.Build.0 = Debug|Any CPU - {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Debug|x64.ActiveCfg = Debug|Any CPU - {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Debug|x64.Build.0 = Debug|Any CPU - {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Debug|x86.ActiveCfg = Debug|Any CPU - {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Debug|x86.Build.0 = Debug|Any CPU + {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Debug|x64.ActiveCfg = Debug|x64 + {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Debug|x64.Build.0 = Debug|x64 + {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Debug|x86.ActiveCfg = Debug|x86 + {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Debug|x86.Build.0 = Debug|x86 {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Release|Any CPU.ActiveCfg = Release|Any CPU {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Release|Any CPU.Build.0 = Release|Any CPU - {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Release|x64.ActiveCfg = Release|Any CPU - {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Release|x64.Build.0 = Release|Any CPU - {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Release|x86.ActiveCfg = Release|Any CPU - {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Release|x86.Build.0 = Release|Any CPU + {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Release|x64.ActiveCfg = Release|x64 + {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Release|x64.Build.0 = Release|x64 + {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Release|x86.ActiveCfg = Release|x86 + {BB293F2E-C3BD-4F1C-8345-8AEF01998D2C}.Release|x86.Build.0 = Release|x86 {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Debug|x64.ActiveCfg = Debug|Any CPU - {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Debug|x64.Build.0 = Debug|Any CPU - {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Debug|x86.ActiveCfg = Debug|Any CPU - {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Debug|x86.Build.0 = Debug|Any CPU + {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Debug|x64.ActiveCfg = Debug|x64 + {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Debug|x64.Build.0 = Debug|x64 + {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Debug|x86.ActiveCfg = Debug|x86 + {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Debug|x86.Build.0 = Debug|x86 {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Release|Any CPU.ActiveCfg = Release|Any CPU {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Release|Any CPU.Build.0 = Release|Any CPU - {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Release|x64.ActiveCfg = Release|Any CPU - {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Release|x64.Build.0 = Release|Any CPU - {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Release|x86.ActiveCfg = Release|Any CPU - {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Release|x86.Build.0 = Release|Any CPU + {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Release|x64.ActiveCfg = Release|x64 + {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Release|x64.Build.0 = Release|x64 + {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Release|x86.ActiveCfg = Release|x86 + {B2C0063A-FC66-4883-BB69-B1DBE6BF9CA2}.Release|x86.Build.0 = Release|x86 {64195C50-E138-4218-A7CE-13CD4565B87E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {64195C50-E138-4218-A7CE-13CD4565B87E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {64195C50-E138-4218-A7CE-13CD4565B87E}.Debug|x64.ActiveCfg = Debug|Any CPU - {64195C50-E138-4218-A7CE-13CD4565B87E}.Debug|x64.Build.0 = Debug|Any CPU - {64195C50-E138-4218-A7CE-13CD4565B87E}.Debug|x86.ActiveCfg = Debug|Any CPU - {64195C50-E138-4218-A7CE-13CD4565B87E}.Debug|x86.Build.0 = Debug|Any CPU + {64195C50-E138-4218-A7CE-13CD4565B87E}.Debug|x64.ActiveCfg = Debug|x64 + {64195C50-E138-4218-A7CE-13CD4565B87E}.Debug|x64.Build.0 = Debug|x64 + {64195C50-E138-4218-A7CE-13CD4565B87E}.Debug|x86.ActiveCfg = Debug|x86 + {64195C50-E138-4218-A7CE-13CD4565B87E}.Debug|x86.Build.0 = Debug|x86 {64195C50-E138-4218-A7CE-13CD4565B87E}.Release|Any CPU.ActiveCfg = Release|Any CPU {64195C50-E138-4218-A7CE-13CD4565B87E}.Release|Any CPU.Build.0 = Release|Any CPU - {64195C50-E138-4218-A7CE-13CD4565B87E}.Release|x64.ActiveCfg = Release|Any CPU - {64195C50-E138-4218-A7CE-13CD4565B87E}.Release|x64.Build.0 = Release|Any CPU - {64195C50-E138-4218-A7CE-13CD4565B87E}.Release|x86.ActiveCfg = Release|Any CPU - {64195C50-E138-4218-A7CE-13CD4565B87E}.Release|x86.Build.0 = Release|Any CPU + {64195C50-E138-4218-A7CE-13CD4565B87E}.Release|x64.ActiveCfg = Release|x64 + {64195C50-E138-4218-A7CE-13CD4565B87E}.Release|x64.Build.0 = Release|x64 + {64195C50-E138-4218-A7CE-13CD4565B87E}.Release|x86.ActiveCfg = Release|x86 + {64195C50-E138-4218-A7CE-13CD4565B87E}.Release|x86.Build.0 = Release|x86 {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Debug|x64.ActiveCfg = Debug|Any CPU - {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Debug|x64.Build.0 = Debug|Any CPU - {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Debug|x86.ActiveCfg = Debug|Any CPU - {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Debug|x86.Build.0 = Debug|Any CPU + {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Debug|x64.ActiveCfg = Debug|x64 + {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Debug|x64.Build.0 = Debug|x64 + {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Debug|x86.ActiveCfg = Debug|x86 + {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Debug|x86.Build.0 = Debug|x86 {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Release|Any CPU.ActiveCfg = Release|Any CPU {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Release|Any CPU.Build.0 = Release|Any CPU - {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Release|x64.ActiveCfg = Release|Any CPU - {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Release|x64.Build.0 = Release|Any CPU - {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Release|x86.ActiveCfg = Release|Any CPU - {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Release|x86.Build.0 = Release|Any CPU + {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Release|x64.ActiveCfg = Release|x64 + {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Release|x64.Build.0 = Release|x64 + {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Release|x86.ActiveCfg = Release|x86 + {93F1A71E-54E2-4C65-BB1E-1D499890317F}.Release|x86.Build.0 = Release|x86 {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Debug|x64.ActiveCfg = Debug|Any CPU - {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Debug|x64.Build.0 = Debug|Any CPU - {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Debug|x86.ActiveCfg = Debug|Any CPU - {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Debug|x86.Build.0 = Debug|Any CPU + {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Debug|x64.ActiveCfg = Debug|x64 + {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Debug|x64.Build.0 = Debug|x64 + {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Debug|x86.ActiveCfg = Debug|x86 + {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Debug|x86.Build.0 = Debug|x86 {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Release|Any CPU.ActiveCfg = Release|Any CPU {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Release|Any CPU.Build.0 = Release|Any CPU - {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Release|x64.ActiveCfg = Release|Any CPU - {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Release|x64.Build.0 = Release|Any CPU - {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Release|x86.ActiveCfg = Release|Any CPU - {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Release|x86.Build.0 = Release|Any CPU + {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Release|x64.ActiveCfg = Release|x64 + {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Release|x64.Build.0 = Release|x64 + {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Release|x86.ActiveCfg = Release|x86 + {C1B87E1F-8D0D-4A78-9A24-9D5D38B7E9A8}.Release|x86.Build.0 = Release|x86 {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Debug|x64.ActiveCfg = Debug|Any CPU - {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Debug|x64.Build.0 = Debug|Any CPU - {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Debug|x86.ActiveCfg = Debug|Any CPU - {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Debug|x86.Build.0 = Debug|Any CPU + {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Debug|x64.ActiveCfg = Debug|x64 + {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Debug|x64.Build.0 = Debug|x64 + {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Debug|x86.ActiveCfg = Debug|x86 + {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Debug|x86.Build.0 = Debug|x86 {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Release|Any CPU.ActiveCfg = Release|Any CPU {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Release|Any CPU.Build.0 = Release|Any CPU - {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Release|x64.ActiveCfg = Release|Any CPU - {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Release|x64.Build.0 = Release|Any CPU - {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Release|x86.ActiveCfg = Release|Any CPU - {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Release|x86.Build.0 = Release|Any CPU + {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Release|x64.ActiveCfg = Release|x64 + {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Release|x64.Build.0 = Release|x64 + {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Release|x86.ActiveCfg = Release|x86 + {75C9DD21-B4EA-4117-BF4F-AFE777A80B5B}.Release|x86.Build.0 = Release|x86 {21E2FE31-4E7C-489E-8215-9303108A2F39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {21E2FE31-4E7C-489E-8215-9303108A2F39}.Debug|Any CPU.Build.0 = Debug|Any CPU - {21E2FE31-4E7C-489E-8215-9303108A2F39}.Debug|x64.ActiveCfg = Debug|Any CPU - {21E2FE31-4E7C-489E-8215-9303108A2F39}.Debug|x64.Build.0 = Debug|Any CPU - {21E2FE31-4E7C-489E-8215-9303108A2F39}.Debug|x86.ActiveCfg = Debug|Any CPU - {21E2FE31-4E7C-489E-8215-9303108A2F39}.Debug|x86.Build.0 = Debug|Any CPU + {21E2FE31-4E7C-489E-8215-9303108A2F39}.Debug|x64.ActiveCfg = Debug|x64 + {21E2FE31-4E7C-489E-8215-9303108A2F39}.Debug|x64.Build.0 = Debug|x64 + {21E2FE31-4E7C-489E-8215-9303108A2F39}.Debug|x86.ActiveCfg = Debug|x86 + {21E2FE31-4E7C-489E-8215-9303108A2F39}.Debug|x86.Build.0 = Debug|x86 {21E2FE31-4E7C-489E-8215-9303108A2F39}.Release|Any CPU.ActiveCfg = Release|Any CPU {21E2FE31-4E7C-489E-8215-9303108A2F39}.Release|Any CPU.Build.0 = Release|Any CPU - {21E2FE31-4E7C-489E-8215-9303108A2F39}.Release|x64.ActiveCfg = Release|Any CPU - {21E2FE31-4E7C-489E-8215-9303108A2F39}.Release|x64.Build.0 = Release|Any CPU - {21E2FE31-4E7C-489E-8215-9303108A2F39}.Release|x86.ActiveCfg = Release|Any CPU - {21E2FE31-4E7C-489E-8215-9303108A2F39}.Release|x86.Build.0 = Release|Any CPU + {21E2FE31-4E7C-489E-8215-9303108A2F39}.Release|x64.ActiveCfg = Release|x64 + {21E2FE31-4E7C-489E-8215-9303108A2F39}.Release|x64.Build.0 = Release|x64 + {21E2FE31-4E7C-489E-8215-9303108A2F39}.Release|x86.ActiveCfg = Release|x86 + {21E2FE31-4E7C-489E-8215-9303108A2F39}.Release|x86.Build.0 = Release|x86 {21E2FE31-4E7C-489E-8215-9303108A2F30}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {21E2FE31-4E7C-489E-8215-9303108A2F30}.Debug|Any CPU.Build.0 = Debug|Any CPU - {21E2FE31-4E7C-489E-8215-9303108A2F30}.Debug|x64.ActiveCfg = Debug|Any CPU - {21E2FE31-4E7C-489E-8215-9303108A2F30}.Debug|x64.Build.0 = Debug|Any CPU - {21E2FE31-4E7C-489E-8215-9303108A2F30}.Debug|x86.ActiveCfg = Debug|Any CPU - {21E2FE31-4E7C-489E-8215-9303108A2F30}.Debug|x86.Build.0 = Debug|Any CPU + {21E2FE31-4E7C-489E-8215-9303108A2F30}.Debug|x64.ActiveCfg = Debug|x64 + {21E2FE31-4E7C-489E-8215-9303108A2F30}.Debug|x64.Build.0 = Debug|x64 + {21E2FE31-4E7C-489E-8215-9303108A2F30}.Debug|x86.ActiveCfg = Debug|x86 + {21E2FE31-4E7C-489E-8215-9303108A2F30}.Debug|x86.Build.0 = Debug|x86 {21E2FE31-4E7C-489E-8215-9303108A2F30}.Release|Any CPU.ActiveCfg = Release|Any CPU {21E2FE31-4E7C-489E-8215-9303108A2F30}.Release|Any CPU.Build.0 = Release|Any CPU - {21E2FE31-4E7C-489E-8215-9303108A2F30}.Release|x64.ActiveCfg = Release|Any CPU - {21E2FE31-4E7C-489E-8215-9303108A2F30}.Release|x64.Build.0 = Release|Any CPU - {21E2FE31-4E7C-489E-8215-9303108A2F30}.Release|x86.ActiveCfg = Release|Any CPU - {21E2FE31-4E7C-489E-8215-9303108A2F30}.Release|x86.Build.0 = Release|Any CPU + {21E2FE31-4E7C-489E-8215-9303108A2F30}.Release|x64.ActiveCfg = Release|x64 + {21E2FE31-4E7C-489E-8215-9303108A2F30}.Release|x64.Build.0 = Release|x64 + {21E2FE31-4E7C-489E-8215-9303108A2F30}.Release|x86.ActiveCfg = Release|x86 + {21E2FE31-4E7C-489E-8215-9303108A2F30}.Release|x86.Build.0 = Release|x86 {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Debug|x64.ActiveCfg = Debug|Any CPU - {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Debug|x64.Build.0 = Debug|Any CPU - {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Debug|x86.ActiveCfg = Debug|Any CPU - {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Debug|x86.Build.0 = Debug|Any CPU + {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Debug|x64.ActiveCfg = Debug|x64 + {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Debug|x64.Build.0 = Debug|x64 + {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Debug|x86.ActiveCfg = Debug|x86 + {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Debug|x86.Build.0 = Debug|x86 {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Release|Any CPU.ActiveCfg = Release|Any CPU {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Release|Any CPU.Build.0 = Release|Any CPU - {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Release|x64.ActiveCfg = Release|Any CPU - {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Release|x64.Build.0 = Release|Any CPU - {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Release|x86.ActiveCfg = Release|Any CPU - {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Release|x86.Build.0 = Release|Any CPU + {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Release|x64.ActiveCfg = Release|x64 + {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Release|x64.Build.0 = Release|x64 + {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Release|x86.ActiveCfg = Release|x86 + {4B1416CD-C7CB-4670-8EFE-871ED316D51D}.Release|x86.Build.0 = Release|x86 {46ED6A9C-C5BF-4495-924E-478736FC280E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {46ED6A9C-C5BF-4495-924E-478736FC280E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {46ED6A9C-C5BF-4495-924E-478736FC280E}.Debug|x64.ActiveCfg = Debug|Any CPU - {46ED6A9C-C5BF-4495-924E-478736FC280E}.Debug|x64.Build.0 = Debug|Any CPU - {46ED6A9C-C5BF-4495-924E-478736FC280E}.Debug|x86.ActiveCfg = Debug|Any CPU - {46ED6A9C-C5BF-4495-924E-478736FC280E}.Debug|x86.Build.0 = Debug|Any CPU + {46ED6A9C-C5BF-4495-924E-478736FC280E}.Debug|x64.ActiveCfg = Debug|x64 + {46ED6A9C-C5BF-4495-924E-478736FC280E}.Debug|x64.Build.0 = Debug|x64 + {46ED6A9C-C5BF-4495-924E-478736FC280E}.Debug|x86.ActiveCfg = Debug|x86 + {46ED6A9C-C5BF-4495-924E-478736FC280E}.Debug|x86.Build.0 = Debug|x86 {46ED6A9C-C5BF-4495-924E-478736FC280E}.Release|Any CPU.ActiveCfg = Release|Any CPU {46ED6A9C-C5BF-4495-924E-478736FC280E}.Release|Any CPU.Build.0 = Release|Any CPU - {46ED6A9C-C5BF-4495-924E-478736FC280E}.Release|x64.ActiveCfg = Release|Any CPU - {46ED6A9C-C5BF-4495-924E-478736FC280E}.Release|x64.Build.0 = Release|Any CPU - {46ED6A9C-C5BF-4495-924E-478736FC280E}.Release|x86.ActiveCfg = Release|Any CPU - {46ED6A9C-C5BF-4495-924E-478736FC280E}.Release|x86.Build.0 = Release|Any CPU + {46ED6A9C-C5BF-4495-924E-478736FC280E}.Release|x64.ActiveCfg = Release|x64 + {46ED6A9C-C5BF-4495-924E-478736FC280E}.Release|x64.Build.0 = Release|x64 + {46ED6A9C-C5BF-4495-924E-478736FC280E}.Release|x86.ActiveCfg = Release|x86 + {46ED6A9C-C5BF-4495-924E-478736FC280E}.Release|x86.Build.0 = Release|x86 {44A3F022-D70A-422D-B850-824BB572F2AF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {44A3F022-D70A-422D-B850-824BB572F2AF}.Debug|Any CPU.Build.0 = Debug|Any CPU - {44A3F022-D70A-422D-B850-824BB572F2AF}.Debug|x64.ActiveCfg = Debug|Any CPU - {44A3F022-D70A-422D-B850-824BB572F2AF}.Debug|x64.Build.0 = Debug|Any CPU - {44A3F022-D70A-422D-B850-824BB572F2AF}.Debug|x86.ActiveCfg = Debug|Any CPU - {44A3F022-D70A-422D-B850-824BB572F2AF}.Debug|x86.Build.0 = Debug|Any CPU + {44A3F022-D70A-422D-B850-824BB572F2AF}.Debug|x64.ActiveCfg = Debug|x64 + {44A3F022-D70A-422D-B850-824BB572F2AF}.Debug|x64.Build.0 = Debug|x64 + {44A3F022-D70A-422D-B850-824BB572F2AF}.Debug|x86.ActiveCfg = Debug|x86 + {44A3F022-D70A-422D-B850-824BB572F2AF}.Debug|x86.Build.0 = Debug|x86 {44A3F022-D70A-422D-B850-824BB572F2AF}.Release|Any CPU.ActiveCfg = Release|Any CPU {44A3F022-D70A-422D-B850-824BB572F2AF}.Release|Any CPU.Build.0 = Release|Any CPU - {44A3F022-D70A-422D-B850-824BB572F2AF}.Release|x64.ActiveCfg = Release|Any CPU - {44A3F022-D70A-422D-B850-824BB572F2AF}.Release|x64.Build.0 = Release|Any CPU - {44A3F022-D70A-422D-B850-824BB572F2AF}.Release|x86.ActiveCfg = Release|Any CPU - {44A3F022-D70A-422D-B850-824BB572F2AF}.Release|x86.Build.0 = Release|Any CPU + {44A3F022-D70A-422D-B850-824BB572F2AF}.Release|x64.ActiveCfg = Release|x64 + {44A3F022-D70A-422D-B850-824BB572F2AF}.Release|x64.Build.0 = Release|x64 + {44A3F022-D70A-422D-B850-824BB572F2AF}.Release|x86.ActiveCfg = Release|x86 + {44A3F022-D70A-422D-B850-824BB572F2AF}.Release|x86.Build.0 = Release|x86 {7D629246-957C-4989-A1E6-29C673086925}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {7D629246-957C-4989-A1E6-29C673086925}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7D629246-957C-4989-A1E6-29C673086925}.Debug|x64.ActiveCfg = Debug|Any CPU - {7D629246-957C-4989-A1E6-29C673086925}.Debug|x64.Build.0 = Debug|Any CPU - {7D629246-957C-4989-A1E6-29C673086925}.Debug|x86.ActiveCfg = Debug|Any CPU - {7D629246-957C-4989-A1E6-29C673086925}.Debug|x86.Build.0 = Debug|Any CPU + {7D629246-957C-4989-A1E6-29C673086925}.Debug|x64.ActiveCfg = Debug|x64 + {7D629246-957C-4989-A1E6-29C673086925}.Debug|x64.Build.0 = Debug|x64 + {7D629246-957C-4989-A1E6-29C673086925}.Debug|x86.ActiveCfg = Debug|x86 + {7D629246-957C-4989-A1E6-29C673086925}.Debug|x86.Build.0 = Debug|x86 {7D629246-957C-4989-A1E6-29C673086925}.Release|Any CPU.ActiveCfg = Release|Any CPU {7D629246-957C-4989-A1E6-29C673086925}.Release|Any CPU.Build.0 = Release|Any CPU - {7D629246-957C-4989-A1E6-29C673086925}.Release|x64.ActiveCfg = Release|Any CPU - {7D629246-957C-4989-A1E6-29C673086925}.Release|x64.Build.0 = Release|Any CPU - {7D629246-957C-4989-A1E6-29C673086925}.Release|x86.ActiveCfg = Release|Any CPU - {7D629246-957C-4989-A1E6-29C673086925}.Release|x86.Build.0 = Release|Any CPU + {7D629246-957C-4989-A1E6-29C673086925}.Release|x64.ActiveCfg = Release|x64 + {7D629246-957C-4989-A1E6-29C673086925}.Release|x64.Build.0 = Release|x64 + {7D629246-957C-4989-A1E6-29C673086925}.Release|x86.ActiveCfg = Release|x86 + {7D629246-957C-4989-A1E6-29C673086925}.Release|x86.Build.0 = Release|x86 {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Debug|x64.ActiveCfg = Debug|Any CPU - {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Debug|x64.Build.0 = Debug|Any CPU - {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Debug|x86.ActiveCfg = Debug|Any CPU - {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Debug|x86.Build.0 = Debug|Any CPU + {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Debug|x64.ActiveCfg = Debug|x64 + {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Debug|x64.Build.0 = Debug|x64 + {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Debug|x86.ActiveCfg = Debug|x86 + {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Debug|x86.Build.0 = Debug|x86 {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Release|Any CPU.ActiveCfg = Release|Any CPU {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Release|Any CPU.Build.0 = Release|Any CPU - {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Release|x64.ActiveCfg = Release|Any CPU - {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Release|x64.Build.0 = Release|Any CPU - {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Release|x86.ActiveCfg = Release|Any CPU - {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Release|x86.Build.0 = Release|Any CPU + {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Release|x64.ActiveCfg = Release|x64 + {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Release|x64.Build.0 = Release|x64 + {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Release|x86.ActiveCfg = Release|x86 + {A95B731B-5887-4EF5-A64D-B643FA8EBD92}.Release|x86.Build.0 = Release|x86 + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|x64.ActiveCfg = Debug|x64 + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|x64.Build.0 = Debug|x64 + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|x86.ActiveCfg = Debug|x86 + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|x86.Build.0 = Debug|x86 + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|Any CPU.Build.0 = Release|Any CPU + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|x64.ActiveCfg = Release|x64 + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|x64.Build.0 = Release|x64 + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|x86.ActiveCfg = Release|x86 + {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|x86.Build.0 = Release|x86 {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Debug|x64.ActiveCfg = Debug|Any CPU - {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Debug|x64.Build.0 = Debug|Any CPU - {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Debug|x86.ActiveCfg = Debug|Any CPU - {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Debug|x86.Build.0 = Debug|Any CPU + {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Debug|x64.ActiveCfg = Debug|x64 + {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Debug|x64.Build.0 = Debug|x64 + {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Debug|x86.ActiveCfg = Debug|x86 + {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Debug|x86.Build.0 = Debug|x86 {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Release|Any CPU.ActiveCfg = Release|Any CPU {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Release|Any CPU.Build.0 = Release|Any CPU - {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Release|x64.ActiveCfg = Release|Any CPU - {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Release|x64.Build.0 = Release|Any CPU - {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Release|x86.ActiveCfg = Release|Any CPU - {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Release|x86.Build.0 = Release|Any CPU + {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Release|x64.ActiveCfg = Release|x64 + {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Release|x64.Build.0 = Release|x64 + {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Release|x86.ActiveCfg = Release|x86 + {E32B2631-476A-4C2D-AE18-275ED7A22F10}.Release|x86.Build.0 = Release|x86 {80314941-78D5-4928-B943-93FC945E050F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {80314941-78D5-4928-B943-93FC945E050F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {80314941-78D5-4928-B943-93FC945E050F}.Debug|x64.ActiveCfg = Debug|Any CPU - {80314941-78D5-4928-B943-93FC945E050F}.Debug|x64.Build.0 = Debug|Any CPU - {80314941-78D5-4928-B943-93FC945E050F}.Debug|x86.ActiveCfg = Debug|Any CPU - {80314941-78D5-4928-B943-93FC945E050F}.Debug|x86.Build.0 = Debug|Any CPU + {80314941-78D5-4928-B943-93FC945E050F}.Debug|x64.ActiveCfg = Debug|x64 + {80314941-78D5-4928-B943-93FC945E050F}.Debug|x64.Build.0 = Debug|x64 + {80314941-78D5-4928-B943-93FC945E050F}.Debug|x86.ActiveCfg = Debug|x86 + {80314941-78D5-4928-B943-93FC945E050F}.Debug|x86.Build.0 = Debug|x86 {80314941-78D5-4928-B943-93FC945E050F}.Release|Any CPU.ActiveCfg = Release|Any CPU {80314941-78D5-4928-B943-93FC945E050F}.Release|Any CPU.Build.0 = Release|Any CPU - {80314941-78D5-4928-B943-93FC945E050F}.Release|x64.ActiveCfg = Release|Any CPU - {80314941-78D5-4928-B943-93FC945E050F}.Release|x64.Build.0 = Release|Any CPU - {80314941-78D5-4928-B943-93FC945E050F}.Release|x86.ActiveCfg = Release|Any CPU - {80314941-78D5-4928-B943-93FC945E050F}.Release|x86.Build.0 = Release|Any CPU + {80314941-78D5-4928-B943-93FC945E050F}.Release|x64.ActiveCfg = Release|x64 + {80314941-78D5-4928-B943-93FC945E050F}.Release|x64.Build.0 = Release|x64 + {80314941-78D5-4928-B943-93FC945E050F}.Release|x86.ActiveCfg = Release|x86 + {80314941-78D5-4928-B943-93FC945E050F}.Release|x86.Build.0 = Release|x86 {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Debug|x64.ActiveCfg = Debug|Any CPU - {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Debug|x64.Build.0 = Debug|Any CPU - {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Debug|x86.ActiveCfg = Debug|Any CPU - {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Debug|x86.Build.0 = Debug|Any CPU + {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Debug|x64.ActiveCfg = Debug|x64 + {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Debug|x64.Build.0 = Debug|x64 + {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Debug|x86.ActiveCfg = Debug|x86 + {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Debug|x86.Build.0 = Debug|x86 {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Release|Any CPU.ActiveCfg = Release|Any CPU {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Release|Any CPU.Build.0 = Release|Any CPU - {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Release|x64.ActiveCfg = Release|Any CPU - {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Release|x64.Build.0 = Release|Any CPU - {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Release|x86.ActiveCfg = Release|Any CPU - {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Release|x86.Build.0 = Release|Any CPU - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|Any CPU.Build.0 = Debug|Any CPU - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|x64.ActiveCfg = Debug|Any CPU - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|x64.Build.0 = Debug|Any CPU - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|x86.ActiveCfg = Debug|Any CPU - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Debug|x86.Build.0 = Debug|Any CPU - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|Any CPU.ActiveCfg = Release|Any CPU - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|Any CPU.Build.0 = Release|Any CPU - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|x64.ActiveCfg = Release|Any CPU - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|x64.Build.0 = Release|Any CPU - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|x86.ActiveCfg = Release|Any CPU - {6B339DA3-8DED-4262-A427-3C4CCDD00650}.Release|x86.Build.0 = Release|Any CPU + {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Release|x64.ActiveCfg = Release|x64 + {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Release|x64.Build.0 = Release|x64 + {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Release|x86.ActiveCfg = Release|x86 + {CDFB2B10-050A-4188-8F72-2BCC61E9814F}.Release|x86.Build.0 = Release|x86 {2A985028-4410-40F7-992C-5397DC1ED116}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {2A985028-4410-40F7-992C-5397DC1ED116}.Debug|Any CPU.Build.0 = Debug|Any CPU - {2A985028-4410-40F7-992C-5397DC1ED116}.Debug|x64.ActiveCfg = Debug|Any CPU - {2A985028-4410-40F7-992C-5397DC1ED116}.Debug|x64.Build.0 = Debug|Any CPU - {2A985028-4410-40F7-992C-5397DC1ED116}.Debug|x86.ActiveCfg = Debug|Any CPU - {2A985028-4410-40F7-992C-5397DC1ED116}.Debug|x86.Build.0 = Debug|Any CPU + {2A985028-4410-40F7-992C-5397DC1ED116}.Debug|x64.ActiveCfg = Debug|x64 + {2A985028-4410-40F7-992C-5397DC1ED116}.Debug|x64.Build.0 = Debug|x64 + {2A985028-4410-40F7-992C-5397DC1ED116}.Debug|x86.ActiveCfg = Debug|x86 + {2A985028-4410-40F7-992C-5397DC1ED116}.Debug|x86.Build.0 = Debug|x86 {2A985028-4410-40F7-992C-5397DC1ED116}.Release|Any CPU.ActiveCfg = Release|Any CPU {2A985028-4410-40F7-992C-5397DC1ED116}.Release|Any CPU.Build.0 = Release|Any CPU - {2A985028-4410-40F7-992C-5397DC1ED116}.Release|x64.ActiveCfg = Release|Any CPU - {2A985028-4410-40F7-992C-5397DC1ED116}.Release|x64.Build.0 = Release|Any CPU - {2A985028-4410-40F7-992C-5397DC1ED116}.Release|x86.ActiveCfg = Release|Any CPU - {2A985028-4410-40F7-992C-5397DC1ED116}.Release|x86.Build.0 = Release|Any CPU + {2A985028-4410-40F7-992C-5397DC1ED116}.Release|x64.ActiveCfg = Release|x64 + {2A985028-4410-40F7-992C-5397DC1ED116}.Release|x64.Build.0 = Release|x64 + {2A985028-4410-40F7-992C-5397DC1ED116}.Release|x86.ActiveCfg = Release|x86 + {2A985028-4410-40F7-992C-5397DC1ED116}.Release|x86.Build.0 = Release|x86 {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Debug|x64.ActiveCfg = Debug|Any CPU - {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Debug|x64.Build.0 = Debug|Any CPU - {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Debug|x86.ActiveCfg = Debug|Any CPU - {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Debug|x86.Build.0 = Debug|Any CPU + {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Debug|x64.ActiveCfg = Debug|x64 + {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Debug|x64.Build.0 = Debug|x64 + {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Debug|x86.ActiveCfg = Debug|x86 + {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Debug|x86.Build.0 = Debug|x86 {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Release|Any CPU.ActiveCfg = Release|Any CPU {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Release|Any CPU.Build.0 = Release|Any CPU - {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Release|x64.ActiveCfg = Release|Any CPU - {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Release|x64.Build.0 = Release|Any CPU - {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Release|x86.ActiveCfg = Release|Any CPU - {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Release|x86.Build.0 = Release|Any CPU + {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Release|x64.ActiveCfg = Release|x64 + {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Release|x64.Build.0 = Release|x64 + {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Release|x86.ActiveCfg = Release|x86 + {A9AF015B-43C9-405E-BF74-CE936B8418F9}.Release|x86.Build.0 = Release|x86 {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Debug|Any CPU.Build.0 = Debug|Any CPU - {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Debug|x64.ActiveCfg = Debug|Any CPU - {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Debug|x64.Build.0 = Debug|Any CPU - {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Debug|x86.ActiveCfg = Debug|Any CPU - {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Debug|x86.Build.0 = Debug|Any CPU + {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Debug|x64.ActiveCfg = Debug|x64 + {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Debug|x64.Build.0 = Debug|x64 + {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Debug|x86.ActiveCfg = Debug|x86 + {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Debug|x86.Build.0 = Debug|x86 {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Release|Any CPU.ActiveCfg = Release|Any CPU {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Release|Any CPU.Build.0 = Release|Any CPU - {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Release|x64.ActiveCfg = Release|Any CPU - {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Release|x64.Build.0 = Release|Any CPU - {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Release|x86.ActiveCfg = Release|Any CPU - {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Release|x86.Build.0 = Release|Any CPU + {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Release|x64.ActiveCfg = Release|x64 + {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Release|x64.Build.0 = Release|x64 + {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Release|x86.ActiveCfg = Release|x86 + {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}.Release|x86.Build.0 = Release|x86 {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Debug|Any CPU.Build.0 = Debug|Any CPU - {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Debug|x64.ActiveCfg = Debug|Any CPU - {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Debug|x64.Build.0 = Debug|Any CPU - {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Debug|x86.ActiveCfg = Debug|Any CPU - {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Debug|x86.Build.0 = Debug|Any CPU + {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Debug|x64.ActiveCfg = Debug|x64 + {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Debug|x64.Build.0 = Debug|x64 + {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Debug|x86.ActiveCfg = Debug|x86 + {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Debug|x86.Build.0 = Debug|x86 {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|Any CPU.ActiveCfg = Release|Any CPU {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|Any CPU.Build.0 = Release|Any CPU - {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|x64.ActiveCfg = Release|Any CPU - {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|x64.Build.0 = Release|Any CPU - {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|x86.ActiveCfg = Release|Any CPU - {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|x86.Build.0 = Release|Any CPU - {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Debug|x64.ActiveCfg = Debug|Any CPU - {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Debug|x64.Build.0 = Debug|Any CPU - {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Debug|x86.ActiveCfg = Debug|Any CPU - {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Debug|x86.Build.0 = Debug|Any CPU - {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Release|Any CPU.ActiveCfg = Release|Any CPU - {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Release|Any CPU.Build.0 = Release|Any CPU - {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Release|x64.ActiveCfg = Release|Any CPU - {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Release|x64.Build.0 = Release|Any CPU - {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Release|x86.ActiveCfg = Release|Any CPU - {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9}.Release|x86.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE + {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|x64.ActiveCfg = Release|x64 + {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|x64.Build.0 = Release|x64 + {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|x86.ActiveCfg = Release|x86 + {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|x86.Build.0 = Release|x86 EndGlobalSection GlobalSection(NestedProjects) = preSolution {E2CF8635-E7C4-4470-92DD-F706F052BF7B} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} @@ -519,17 +506,13 @@ Global {44A3F022-D70A-422D-B850-824BB572F2AF} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} {7D629246-957C-4989-A1E6-29C673086925} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} {A95B731B-5887-4EF5-A64D-B643FA8EBD92} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} + {6B339DA3-8DED-4262-A427-3C4CCDD00650} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} {E32B2631-476A-4C2D-AE18-275ED7A22F10} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} {80314941-78D5-4928-B943-93FC945E050F} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} {CDFB2B10-050A-4188-8F72-2BCC61E9814F} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} - {6B339DA3-8DED-4262-A427-3C4CCDD00650} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} {2A985028-4410-40F7-992C-5397DC1ED116} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} {A9AF015B-43C9-405E-BF74-CE936B8418F9} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} - {7DD1E466-7664-4AA5-9AA9-C9FE41BC91C9} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {9781F4E3-3B46-4F82-94FD-8CC8EE8819E7} EndGlobalSection -EndGlobal +EndGlobal \ No newline at end of file From 4edffdd6d62007a4f14b243fdf78c1febec745b2 Mon Sep 17 00:00:00 2001 From: Kent Boogaart Date: Wed, 18 Oct 2017 18:21:14 +1030 Subject: [PATCH 15/43] Add project via dotnet --- src/Fake-netcore.sln | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/Fake-netcore.sln b/src/Fake-netcore.sln index 90de215a373..240e8ec6c45 100644 --- a/src/Fake-netcore.sln +++ b/src/Fake-netcore.sln @@ -71,6 +71,8 @@ Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Api.Slack", "app\Fake. EndProject Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Api.GitHub", "app\Fake.Api.GitHub\Fake.Api.GitHub.fsproj", "{4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}" EndProject +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.DotNet.Xamarin", "app\Fake.DotNet.Xamarin\Fake.DotNet.Xamarin.fsproj", "{13C1F95D-2FAD-4890-BF94-0AE7CF9AB2FC}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -480,6 +482,18 @@ Global {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|x64.Build.0 = Release|x64 {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|x86.ActiveCfg = Release|x86 {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC}.Release|x86.Build.0 = Release|x86 + {13C1F95D-2FAD-4890-BF94-0AE7CF9AB2FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {13C1F95D-2FAD-4890-BF94-0AE7CF9AB2FC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {13C1F95D-2FAD-4890-BF94-0AE7CF9AB2FC}.Debug|x64.ActiveCfg = Debug|x64 + {13C1F95D-2FAD-4890-BF94-0AE7CF9AB2FC}.Debug|x64.Build.0 = Debug|x64 + {13C1F95D-2FAD-4890-BF94-0AE7CF9AB2FC}.Debug|x86.ActiveCfg = Debug|x86 + {13C1F95D-2FAD-4890-BF94-0AE7CF9AB2FC}.Debug|x86.Build.0 = Debug|x86 + {13C1F95D-2FAD-4890-BF94-0AE7CF9AB2FC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {13C1F95D-2FAD-4890-BF94-0AE7CF9AB2FC}.Release|Any CPU.Build.0 = Release|Any CPU + {13C1F95D-2FAD-4890-BF94-0AE7CF9AB2FC}.Release|x64.ActiveCfg = Release|x64 + {13C1F95D-2FAD-4890-BF94-0AE7CF9AB2FC}.Release|x64.Build.0 = Release|x64 + {13C1F95D-2FAD-4890-BF94-0AE7CF9AB2FC}.Release|x86.ActiveCfg = Release|x86 + {13C1F95D-2FAD-4890-BF94-0AE7CF9AB2FC}.Release|x86.Build.0 = Release|x86 EndGlobalSection GlobalSection(NestedProjects) = preSolution {E2CF8635-E7C4-4470-92DD-F706F052BF7B} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} @@ -514,5 +528,6 @@ Global {A9AF015B-43C9-405E-BF74-CE936B8418F9} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} {58A3EDF0-CA9D-4757-B1E8-2A4E3592B308} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} {4BCE4F9C-8FC2-4207-81F1-20CB07D852DC} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} + {13C1F95D-2FAD-4890-BF94-0AE7CF9AB2FC} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} EndGlobalSection -EndGlobal \ No newline at end of file +EndGlobal From 784f27678450eef8394cf025fec524fedc3ce606 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sat, 21 Oct 2017 15:53:16 +0200 Subject: [PATCH 16/43] Password and WindowStyle are not available for netstandard16. --- .../Fake.Core.Process.fsproj | 3 +++ src/app/Fake.Core.Process/Process.fs | 27 +++++++++++++++---- 2 files changed, 25 insertions(+), 5 deletions(-) diff --git a/src/app/Fake.Core.Process/Fake.Core.Process.fsproj b/src/app/Fake.Core.Process/Fake.Core.Process.fsproj index ce5cda0889d..7c03fb4c22b 100644 --- a/src/app/Fake.Core.Process/Fake.Core.Process.fsproj +++ b/src/app/Fake.Core.Process/Fake.Core.Process.fsproj @@ -13,6 +13,9 @@ $(DefineConstants);RELEASE + + $(DefineConstants);NETSTANDARD2_0 + diff --git a/src/app/Fake.Core.Process/Process.fs b/src/app/Fake.Core.Process/Process.fs index d89690f111a..c6181317987 100644 --- a/src/app/Fake.Core.Process/Process.fs +++ b/src/app/Fake.Core.Process/Process.fs @@ -147,17 +147,30 @@ type ProcessResult = Errors = errors } type ProcStartInfo = - { Arguments : string + { /// Gets or sets the set of command-line arguments to use when starting the application. + Arguments : string + /// Gets or sets a value indicating whether to start the process in a new window. CreateNoWindow : bool + /// Gets or sets a value that identifies the domain to use when starting the process. If this value is null, the UserName property must be specified in UPN format. Domain : string + /// Gets the environment variables that apply to this process and its child processes. Environment : Map option + /// Gets or sets a value indicating whether an error dialog box is displayed to the user if the process cannot be started. ErrorDialog : bool + /// Gets or sets the window handle to use when an error dialog box is shown for a process that cannot be started. ErrorDialogParentHandle : IntPtr + /// Gets or sets the application or document to start. FileName : string /// true if the Windows user profile should be loaded; otherwise, false. The default is false. LoadUserProfile : bool + /// Gets or sets the user password in clear text to use when starting the process. + PasswordInClearText : string +#if NETSTANDARD2_0 /// The user password to use when starting the process. Password : System.Security.SecureString + /// One of the enumeration values that indicates whether the process is started in a window that is maximized, minimized, normal (neither maximized nor minimized), or not visible. The default is Normal. + WindowStyle : ProcessWindowStyle +#endif /// true if error output should be written to Process.StandardError; otherwise, false. The default is false. RedirectStandardError : bool /// true if input should be read from Process.StandardInput; otherwise, false. The default is false. @@ -174,8 +187,6 @@ type ProcStartInfo = UseShellExecute : bool /// The action to take with the file that the process opens. The default is an empty string (""), which signifies no action. Verb : string - /// One of the enumeration values that indicates whether the process is started in a window that is maximized, minimized, normal (neither maximized nor minimized), or not visible. The default is Normal. - WindowStyle : ProcessWindowStyle /// When UseShellExecute is true, the fully qualified name of the directory that contains the process to be started. When the UseShellExecute property is false, the working directory for the process to be started. The default is an empty string (""). WorkingDirectory : string } @@ -188,7 +199,11 @@ type ProcStartInfo = ErrorDialogParentHandle = IntPtr.Zero FileName = "" LoadUserProfile = false + PasswordInClearText = null +#if NETSTANDARD2_0 Password = null + WindowStyle = ProcessWindowStyle.Normal +#endif RedirectStandardError = false RedirectStandardInput = false RedirectStandardOutput = false @@ -197,7 +212,6 @@ type ProcStartInfo = UserName = null UseShellExecute = true Verb = "" - WindowStyle = ProcessWindowStyle.Normal WorkingDirectory = "" } member x.AsStartInfo = let p = new ProcessStartInfo(x.FileName, x.Arguments) @@ -212,7 +226,11 @@ type ProcStartInfo = p.ErrorDialog <- x.ErrorDialog p.ErrorDialogParentHandle <- x.ErrorDialogParentHandle p.LoadUserProfile <- x.LoadUserProfile + p.PasswordInClearText <- x.PasswordInClearText +#if NETSTANDARD2_0 p.Password <- x.Password + p.WindowStyle <- x.WindowStyle +#endif p.RedirectStandardError <- x.RedirectStandardError p.RedirectStandardInput <- x.RedirectStandardInput p.RedirectStandardOutput <- x.RedirectStandardOutput @@ -221,7 +239,6 @@ type ProcStartInfo = p.UserName <- x.UserName p.UseShellExecute <- x.UseShellExecute p.Verb <- x.Verb - p.WindowStyle <- x.WindowStyle p.WorkingDirectory <- x.WorkingDirectory p From d8704d44c0d9de0c9338cf490d8129d2db82d333 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sat, 21 Oct 2017 20:44:22 +0200 Subject: [PATCH 17/43] paket update --- .paket/Paket.Restore.targets | 6 +- .../Fake_WebSite.Tests.csproj | 2 +- paket.dependencies | 2 +- src/app/FAKE/FAKE.fsproj | 176 ++++++++-- .../Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj | 216 +++++++++++-- src/app/Fake.Deploy/Fake.Deploy.fsproj | 237 ++++++++++++-- .../Fake.Experimental.fsproj | 161 ++++++++- .../Fake.FluentMigrator.fsproj | 158 ++++++++- src/app/Fake.Gallio/Fake.Gallio.fsproj | 161 ++++++++- src/app/Fake.IIS/Fake.IIS.fsproj | 156 ++++++++- src/app/Fake.SQL/Fake.SQL.fsproj | 161 ++++++++- src/app/FakeLib/FakeLib.fsproj | 306 ++++++++++++++++-- .../Fake.Deploy.Web.Abstractions.fsproj | 154 ++++++++- .../Fake.Deploy.Web.File.fsproj | 178 ++++++++-- .../Fake.Deploy.Web.RavenDb.fsproj | 156 ++++++++- .../Fake.Deploy.Web/Fake.Deploy.Web.fsproj | 217 +++++++++++-- .../Fake.Core.IntegrationTests.fsproj | 171 ++++++++-- src/test/FsCheck.Fake/FsCheck.Fake.fsproj | 186 +++++++++-- .../ProjectTestFiles/CSharpApp.csproj | 177 ++++++++-- .../ProjectTestFiles/FakeLib.fsproj | 173 ++++++++-- .../ProjectTestFiles/FakeLib2.csproj | 173 ++++++++-- .../ProjectTestFiles/FakeLib2.fsproj | 173 ++++++++-- .../ProjectTestFiles/FakeLib3.csproj | 173 ++++++++-- .../ProjectTestFiles/FakeLib3.fsproj | 173 ++++++++-- .../ProjectTestFiles/FakeLib4.fsproj | 173 ++++++++-- .../ProjectTestFiles/FakeLib5.fsproj | 173 ++++++++-- .../ProjectTestFiles/FakeLib6.fsproj | 173 ++++++++-- src/test/Test.FAKECore/Test.FAKECore.csproj | 179 ++++++++-- .../TestData/fake_no_template.csproj | 179 ++++++++-- .../Test.Fake.Deploy.Web.File.fsproj | 175 ++++++++-- .../Test.Fake.Deploy.Web.fsproj | 198 ++++++++++-- .../Test.Fake.Deploy/Test.Fake.Deploy.csproj | 232 +++++++++++-- src/test/Test.Git/Test.Git.csproj | 171 +++++++++- 33 files changed, 4899 insertions(+), 600 deletions(-) diff --git a/.paket/Paket.Restore.targets b/.paket/Paket.Restore.targets index 920482ad213..b534b822749 100644 --- a/.paket/Paket.Restore.targets +++ b/.paket/Paket.Restore.targets @@ -30,7 +30,7 @@ true - + @@ -84,11 +84,11 @@ - + - + diff --git a/Samples/ContinuousDeploymentWebsite/src/test/Fake_WebSite.Tests/Fake_WebSite.Tests.csproj b/Samples/ContinuousDeploymentWebsite/src/test/Fake_WebSite.Tests/Fake_WebSite.Tests.csproj index ed4edb50a64..fbbbc1f18dd 100644 --- a/Samples/ContinuousDeploymentWebsite/src/test/Fake_WebSite.Tests/Fake_WebSite.Tests.csproj +++ b/Samples/ContinuousDeploymentWebsite/src/test/Fake_WebSite.Tests/Fake_WebSite.Tests.csproj @@ -84,7 +84,7 @@ - + ..\..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll diff --git a/paket.dependencies b/paket.dependencies index 54f80e51276..25a7a508d52 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -1,4 +1,4 @@ -version 5.101.0 +version 5.119.7 content: none // just in case we need some special nuget feature again... //source https://ci.appveyor.com/nuget/paket diff --git a/src/app/FAKE/FAKE.fsproj b/src/app/FAKE/FAKE.fsproj index d1d95e32b84..73e37fc3c02 100644 --- a/src/app/FAKE/FAKE.fsproj +++ b/src/app/FAKE/FAKE.fsproj @@ -48,7 +48,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -101,7 +101,7 @@ - + ..\..\..\packages\Argu\lib\net40\Argu.dll @@ -139,7 +139,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -204,7 +204,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -331,7 +331,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -371,6 +371,15 @@ + + + + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -393,6 +402,15 @@ + + + + ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -451,7 +469,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -471,6 +489,15 @@ + + + + ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -482,7 +509,7 @@ - + ..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -588,7 +615,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -608,7 +635,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -637,6 +664,15 @@ + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -666,6 +702,15 @@ + + + + ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -752,7 +797,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -911,6 +956,15 @@ + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -1022,6 +1076,15 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1098,7 +1161,7 @@ - + True @@ -1148,6 +1211,15 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1188,6 +1260,15 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1273,6 +1354,13 @@ + + + + True + + + @@ -1311,7 +1399,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1349,6 +1437,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1396,6 +1493,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1407,7 +1513,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1454,7 +1560,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1474,7 +1580,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1512,7 +1618,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1581,6 +1687,15 @@ + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1686,7 +1801,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -1717,6 +1832,15 @@ + + + + ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1737,6 +1861,15 @@ + + + + ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + @@ -1768,7 +1901,7 @@ - + True @@ -1809,6 +1942,13 @@ + + + + True + + + diff --git a/src/app/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj b/src/app/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj index 0c29cd7b74f..b847d7fbc1c 100644 --- a/src/app/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj +++ b/src/app/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj @@ -40,7 +40,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -97,7 +97,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -235,7 +235,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -282,7 +282,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll @@ -338,7 +338,7 @@ - + ..\..\..\packages\SSH.NET\lib\net40\Renci.SshNet.dll @@ -684,7 +684,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -724,6 +724,15 @@ + + + + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -746,6 +755,15 @@ + + + + ..\..\..\packages\System.Diagnostics.TraceSource\lib\net46\System.Diagnostics.TraceSource.dll + True + True + + + @@ -757,6 +775,15 @@ + + + + ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -844,7 +871,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -864,6 +891,15 @@ + + + + ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -875,7 +911,7 @@ - + ..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -981,7 +1017,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -1001,7 +1037,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -1030,6 +1066,15 @@ + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -1059,6 +1104,15 @@ + + + + ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -1145,7 +1199,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1315,6 +1369,15 @@ + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -1426,6 +1489,15 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1502,7 +1574,7 @@ - + True @@ -1552,6 +1624,15 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1592,6 +1673,15 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1784,7 +1874,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1822,6 +1912,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1869,6 +1968,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1880,7 +1988,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1927,7 +2035,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1947,7 +2055,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1985,7 +2093,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -2034,6 +2142,15 @@ + + + + ..\..\..\packages\System.Security.Principal.Windows\lib\net461\System.Security.Principal.Windows.dll + True + True + + + @@ -2112,6 +2229,15 @@ + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -2217,7 +2343,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -2248,6 +2374,15 @@ + + + + ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -2268,6 +2403,15 @@ + + + + ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + @@ -2299,7 +2443,7 @@ - + True @@ -2340,6 +2484,13 @@ + + + + True + + + @@ -2369,6 +2520,15 @@ + + + + ..\..\..\packages\System.Xml.XmlDocument\lib\net46\System.Xml.XmlDocument.dll + True + True + + + @@ -2389,6 +2549,15 @@ + + + + ..\..\..\packages\System.Xml.XPath\lib\net46\System.Xml.XPath.dll + True + True + + + @@ -2409,6 +2578,15 @@ + + + + ..\..\..\packages\System.Xml.XPath.XmlDocument\lib\net46\System.Xml.XPath.XmlDocument.dll + True + True + + + diff --git a/src/app/Fake.Deploy/Fake.Deploy.fsproj b/src/app/Fake.Deploy/Fake.Deploy.fsproj index 0fd8d7cf97a..d083ca7bfa8 100644 --- a/src/app/Fake.Deploy/Fake.Deploy.fsproj +++ b/src/app/Fake.Deploy/Fake.Deploy.fsproj @@ -79,7 +79,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -104,7 +104,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -242,7 +242,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -262,7 +262,7 @@ - + ..\..\..\packages\Nancy\lib\net40\Nancy.dll @@ -273,7 +273,7 @@ - + ..\..\..\packages\Nancy.Authentication.Stateless\lib\net40\Nancy.Authentication.Stateless.dll @@ -284,7 +284,7 @@ - + ..\..\..\packages\Nancy.Hosting.Self\lib\net40\Nancy.Hosting.Self.dll @@ -295,7 +295,7 @@ - + ..\..\..\packages\Nancy.Serialization.JsonNet\lib\net40\Nancy.Serialization.JsonNet.dll @@ -333,7 +333,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll @@ -416,7 +416,7 @@ - + ..\..\..\packages\NLog\lib\net45\NLog.dll @@ -468,7 +468,7 @@ - + ..\..\..\packages\Serilog\lib\net45\Serilog.dll @@ -493,7 +493,7 @@ - + ..\..\..\packages\serilog.sinks.nlog\lib\net45\Serilog.Sinks.NLog.dll @@ -513,7 +513,7 @@ - + ..\..\..\packages\SSH.NET\lib\net40\Renci.SshNet.dll @@ -859,7 +859,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -899,6 +899,15 @@ + + + + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -921,6 +930,15 @@ + + + + ..\..\..\packages\System.Diagnostics.TraceSource\lib\net46\System.Diagnostics.TraceSource.dll + True + True + + + @@ -932,6 +950,15 @@ + + + + ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -1019,7 +1046,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -1039,6 +1066,15 @@ + + + + ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -1050,7 +1086,7 @@ - + ..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -1156,7 +1192,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -1176,7 +1212,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -1205,6 +1241,15 @@ + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -1234,6 +1279,15 @@ + + + + ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -1320,7 +1374,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1490,6 +1544,15 @@ + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -1601,6 +1664,15 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1677,7 +1749,7 @@ - + True @@ -1727,6 +1799,15 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1767,6 +1848,15 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1852,6 +1942,13 @@ + + + + True + + + @@ -1959,7 +2056,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1997,6 +2094,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -2044,6 +2150,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -2055,7 +2170,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -2102,7 +2217,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -2122,7 +2237,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -2160,7 +2275,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -2209,6 +2324,15 @@ + + + + ..\..\..\packages\System.Security.Principal.Windows\lib\net461\System.Security.Principal.Windows.dll + True + True + + + @@ -2287,6 +2411,15 @@ + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -2392,7 +2525,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -2423,6 +2556,15 @@ + + + + ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -2443,6 +2585,15 @@ + + + + ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + @@ -2474,7 +2625,7 @@ - + True @@ -2515,6 +2666,13 @@ + + + + True + + + @@ -2544,6 +2702,15 @@ + + + + ..\..\..\packages\System.Xml.XmlDocument\lib\net46\System.Xml.XmlDocument.dll + True + True + + + @@ -2564,6 +2731,15 @@ + + + + ..\..\..\packages\System.Xml.XPath\lib\net46\System.Xml.XPath.dll + True + True + + + @@ -2584,6 +2760,15 @@ + + + + ..\..\..\packages\System.Xml.XPath.XmlDocument\lib\net46\System.Xml.XPath.XmlDocument.dll + True + True + + + diff --git a/src/app/Fake.Experimental/Fake.Experimental.fsproj b/src/app/Fake.Experimental/Fake.Experimental.fsproj index ac3c68578eb..df1304aa307 100644 --- a/src/app/Fake.Experimental/Fake.Experimental.fsproj +++ b/src/app/Fake.Experimental/Fake.Experimental.fsproj @@ -82,7 +82,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -147,7 +147,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -236,7 +236,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -276,6 +276,15 @@ + + + + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -298,6 +307,15 @@ + + + + ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -356,7 +374,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -376,6 +394,15 @@ + + + + ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -387,7 +414,7 @@ - + ..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -461,7 +488,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -481,7 +508,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -510,6 +537,15 @@ + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -539,6 +575,15 @@ + + + + ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -625,7 +670,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -764,6 +809,15 @@ + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -875,6 +929,15 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -951,7 +1014,7 @@ - + True @@ -1001,6 +1064,15 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1041,6 +1113,15 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1088,6 +1169,13 @@ + + + + True + + + @@ -1126,7 +1214,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1164,6 +1252,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1211,6 +1308,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1222,7 +1328,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1269,7 +1375,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1289,7 +1395,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1327,7 +1433,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1396,6 +1502,15 @@ + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1512,6 +1627,15 @@ + + + + ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1532,6 +1656,15 @@ + + + + ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + diff --git a/src/app/Fake.FluentMigrator/Fake.FluentMigrator.fsproj b/src/app/Fake.FluentMigrator/Fake.FluentMigrator.fsproj index af874de977c..ea619b2f26e 100644 --- a/src/app/Fake.FluentMigrator/Fake.FluentMigrator.fsproj +++ b/src/app/Fake.FluentMigrator/Fake.FluentMigrator.fsproj @@ -74,7 +74,7 @@ - + ..\..\..\packages\FluentMigrator\lib\40\FluentMigrator.dll @@ -94,7 +94,7 @@ - + ..\..\..\packages\FluentMigrator.Runner\lib\40\FluentMigrator.Runner.dll @@ -123,7 +123,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -188,7 +188,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -277,7 +277,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -317,6 +317,15 @@ + + + + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -339,6 +348,15 @@ + + + + ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -397,7 +415,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -417,6 +435,15 @@ + + + + ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -428,7 +455,7 @@ - + ..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -502,7 +529,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -522,7 +549,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -551,6 +578,15 @@ + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -580,6 +616,15 @@ + + + + ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -666,7 +711,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -805,6 +850,15 @@ + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -916,6 +970,15 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -992,7 +1055,7 @@ - + True @@ -1042,6 +1105,15 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1082,6 +1154,15 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1167,7 +1248,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1205,6 +1286,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1252,6 +1342,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1263,7 +1362,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1310,7 +1409,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1330,7 +1429,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1368,7 +1467,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1437,6 +1536,15 @@ + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1553,6 +1661,15 @@ + + + + ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1573,6 +1690,15 @@ + + + + ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + diff --git a/src/app/Fake.Gallio/Fake.Gallio.fsproj b/src/app/Fake.Gallio/Fake.Gallio.fsproj index 3b836e2222c..7ff36f95f35 100644 --- a/src/app/Fake.Gallio/Fake.Gallio.fsproj +++ b/src/app/Fake.Gallio/Fake.Gallio.fsproj @@ -93,7 +93,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -158,7 +158,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -247,7 +247,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -287,6 +287,15 @@ + + + + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -309,6 +318,15 @@ + + + + ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -367,7 +385,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -387,6 +405,15 @@ + + + + ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -398,7 +425,7 @@ - + ..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -472,7 +499,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -492,7 +519,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -521,6 +548,15 @@ + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -550,6 +586,15 @@ + + + + ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -636,7 +681,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -775,6 +820,15 @@ + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -886,6 +940,15 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -962,7 +1025,7 @@ - + True @@ -1012,6 +1075,15 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1052,6 +1124,15 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1099,6 +1180,13 @@ + + + + True + + + @@ -1137,7 +1225,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1175,6 +1263,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1222,6 +1319,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1233,7 +1339,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1280,7 +1386,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1300,7 +1406,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1338,7 +1444,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1407,6 +1513,15 @@ + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1523,6 +1638,15 @@ + + + + ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1543,6 +1667,15 @@ + + + + ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + diff --git a/src/app/Fake.IIS/Fake.IIS.fsproj b/src/app/Fake.IIS/Fake.IIS.fsproj index 59d174678ed..858c4a8f4db 100644 --- a/src/app/Fake.IIS/Fake.IIS.fsproj +++ b/src/app/Fake.IIS/Fake.IIS.fsproj @@ -88,7 +88,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -153,7 +153,7 @@ - + ..\..\..\packages\Microsoft.Web.Administration\lib\net20\Microsoft.Web.Administration.dll @@ -164,7 +164,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -253,7 +253,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -293,6 +293,15 @@ + + + + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -315,6 +324,15 @@ + + + + ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -373,7 +391,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -393,6 +411,15 @@ + + + + ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -404,7 +431,7 @@ - + ..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -478,7 +505,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -498,7 +525,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -527,6 +554,15 @@ + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -556,6 +592,15 @@ + + + + ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -642,7 +687,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -781,6 +826,15 @@ + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -892,6 +946,15 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -968,7 +1031,7 @@ - + True @@ -1018,6 +1081,15 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1058,6 +1130,15 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1143,7 +1224,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1181,6 +1262,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1228,6 +1318,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1239,7 +1338,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1286,7 +1385,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1306,7 +1405,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1344,7 +1443,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1413,6 +1512,15 @@ + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1529,6 +1637,15 @@ + + + + ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1549,6 +1666,15 @@ + + + + ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + diff --git a/src/app/Fake.SQL/Fake.SQL.fsproj b/src/app/Fake.SQL/Fake.SQL.fsproj index fcca3a7a2da..487cb24bf61 100644 --- a/src/app/Fake.SQL/Fake.SQL.fsproj +++ b/src/app/Fake.SQL/Fake.SQL.fsproj @@ -106,7 +106,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -171,7 +171,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -260,7 +260,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -300,6 +300,15 @@ + + + + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -322,6 +331,15 @@ + + + + ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -380,7 +398,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -400,6 +418,15 @@ + + + + ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -411,7 +438,7 @@ - + ..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -485,7 +512,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -505,7 +532,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -534,6 +561,15 @@ + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -563,6 +599,15 @@ + + + + ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -649,7 +694,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -788,6 +833,15 @@ + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -899,6 +953,15 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -975,7 +1038,7 @@ - + True @@ -1025,6 +1088,15 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1065,6 +1137,15 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1112,6 +1193,13 @@ + + + + True + + + @@ -1150,7 +1238,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1188,6 +1276,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1235,6 +1332,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1246,7 +1352,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1293,7 +1399,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1313,7 +1419,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1351,7 +1457,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1420,6 +1526,15 @@ + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1536,6 +1651,15 @@ + + + + ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1556,6 +1680,15 @@ + + + + ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + diff --git a/src/app/FakeLib/FakeLib.fsproj b/src/app/FakeLib/FakeLib.fsproj index 0d6b7798a31..70dfe35f7f9 100644 --- a/src/app/FakeLib/FakeLib.fsproj +++ b/src/app/FakeLib/FakeLib.fsproj @@ -472,7 +472,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -501,7 +501,7 @@ - + ..\..\..\packages\Chessie\lib\net40\Chessie.dll @@ -521,7 +521,7 @@ - + ..\..\..\packages\FSharp.Compiler.Service\lib\net45\FSharp.Compiler.Service.dll @@ -559,7 +559,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -624,7 +624,7 @@ - + ..\..\..\packages\HashLib\lib\net40\HashLib.dll @@ -708,7 +708,7 @@ - + ..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -719,7 +719,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -739,6 +739,15 @@ + + + + ..\..\..\packages\Microsoft.Win32.Registry\lib\net461\Microsoft.Win32.Registry.dll + True + True + + + @@ -801,7 +810,7 @@ - + ..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -851,7 +860,7 @@ - + ..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -889,7 +898,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll @@ -936,7 +945,7 @@ - + ..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -947,7 +956,7 @@ - + ..\..\..\packages\Octokit\lib\net45\Octokit.dll @@ -967,7 +976,7 @@ - + ..\..\..\packages\Paket.Core\lib\net45\Paket.Core.dll @@ -1094,7 +1103,7 @@ - + ..\..\..\packages\System.Collections.Immutable\lib\netstandard1.0\System.Collections.Immutable.dll @@ -1103,7 +1112,7 @@ - + ..\..\..\packages\System.Collections.Immutable\lib\netstandard2.0\System.Collections.Immutable.dll @@ -1232,7 +1241,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -1272,6 +1281,15 @@ + + + + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -1283,6 +1301,15 @@ + + + + ..\..\..\packages\System.Diagnostics.FileVersionInfo\lib\net46\System.Diagnostics.FileVersionInfo.dll + True + True + + + @@ -1294,6 +1321,15 @@ + + + + ..\..\..\packages\System.Diagnostics.Process\lib\net461\System.Diagnostics.Process.dll + True + True + + + @@ -1316,6 +1352,15 @@ + + + + ..\..\..\packages\System.Diagnostics.TraceSource\lib\net46\System.Diagnostics.TraceSource.dll + True + True + + + @@ -1327,6 +1372,15 @@ + + + + ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -1414,7 +1468,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -1434,6 +1488,15 @@ + + + + ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -1445,7 +1508,7 @@ - + ..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -1551,7 +1614,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -1571,7 +1634,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -1600,6 +1663,15 @@ + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -1629,6 +1701,15 @@ + + + + ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -1715,7 +1796,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1874,6 +1955,15 @@ + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -1974,7 +2064,7 @@ - + ..\..\..\packages\System.Reflection.Metadata\lib\netstandard1.1\System.Reflection.Metadata.dll @@ -1983,7 +2073,7 @@ - + ..\..\..\packages\System.Reflection.Metadata\lib\netstandard2.0\System.Reflection.Metadata.dll @@ -2005,6 +2095,15 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -2081,7 +2180,7 @@ - + True @@ -2131,6 +2230,15 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -2171,6 +2279,15 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -2276,6 +2393,13 @@ + + + + True + + + @@ -2345,6 +2469,15 @@ + + + + ..\..\..\packages\System.Security.AccessControl\lib\net461\System.Security.AccessControl.dll + True + True + + + @@ -2403,7 +2536,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -2441,6 +2574,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -2488,6 +2630,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -2499,7 +2650,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -2546,7 +2697,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -2566,7 +2717,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -2595,6 +2746,18 @@ + + + + True + + + ..\..\..\packages\System.Security.Cryptography.ProtectedData\lib\net461\System.Security.Cryptography.ProtectedData.dll + True + True + + + @@ -2642,7 +2805,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -2691,6 +2854,15 @@ + + + + ..\..\..\packages\System.Security.Principal.Windows\lib\net461\System.Security.Principal.Windows.dll + True + True + + + @@ -2769,6 +2941,15 @@ + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -2874,7 +3055,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -2905,6 +3086,15 @@ + + + + ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -2925,6 +3115,15 @@ + + + + ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + @@ -2956,6 +3155,15 @@ + + + + ..\..\..\packages\System.ValueTuple\lib\net47\System.ValueTuple.dll + True + True + + + @@ -2976,7 +3184,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\net46\System.Xml.ReaderWriter.dll @@ -3043,6 +3251,15 @@ + + + + ..\..\..\packages\System.Xml.XmlDocument\lib\net46\System.Xml.XmlDocument.dll + True + True + + + @@ -3063,6 +3280,15 @@ + + + + ..\..\..\packages\System.Xml.XPath\lib\net46\System.Xml.XPath.dll + True + True + + + @@ -3083,6 +3309,15 @@ + + + + ..\..\..\packages\System.Xml.XPath.XDocument\lib\net46\System.Xml.XPath.XDocument.dll + True + True + + + @@ -3103,6 +3338,15 @@ + + + + ..\..\..\packages\System.Xml.XPath.XmlDocument\lib\net46\System.Xml.XPath.XmlDocument.dll + True + True + + + diff --git a/src/deploy.web/Fake.Deploy.Web.Abstractions/Fake.Deploy.Web.Abstractions.fsproj b/src/deploy.web/Fake.Deploy.Web.Abstractions/Fake.Deploy.Web.Abstractions.fsproj index 9b24cdc3d95..810de643d7a 100644 --- a/src/deploy.web/Fake.Deploy.Web.Abstractions/Fake.Deploy.Web.Abstractions.fsproj +++ b/src/deploy.web/Fake.Deploy.Web.Abstractions/Fake.Deploy.Web.Abstractions.fsproj @@ -76,7 +76,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -141,7 +141,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -230,7 +230,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -270,6 +270,15 @@ + + + + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -292,6 +301,15 @@ + + + + ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -350,7 +368,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -370,6 +388,15 @@ + + + + ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -381,7 +408,7 @@ - + ..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -455,7 +482,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -475,7 +502,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -504,6 +531,15 @@ + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -533,6 +569,15 @@ + + + + ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -619,7 +664,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -758,6 +803,15 @@ + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -869,6 +923,15 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -945,7 +1008,7 @@ - + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll @@ -992,6 +1055,15 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1032,6 +1104,15 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1117,7 +1198,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1155,6 +1236,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1202,6 +1292,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1213,7 +1312,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1260,7 +1359,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1280,7 +1379,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1318,7 +1417,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1387,6 +1486,15 @@ + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1503,6 +1611,15 @@ + + + + ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1523,6 +1640,15 @@ + + + + ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + diff --git a/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.File/Fake.Deploy.Web.File.fsproj b/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.File/Fake.Deploy.Web.File.fsproj index 70161c01954..ffeb072c3aa 100644 --- a/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.File/Fake.Deploy.Web.File.fsproj +++ b/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.File/Fake.Deploy.Web.File.fsproj @@ -36,7 +36,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -89,7 +89,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -227,7 +227,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -274,7 +274,7 @@ - + ..\..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll @@ -546,7 +546,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -586,6 +586,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -608,6 +617,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -695,7 +713,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -715,6 +733,15 @@ + + + + ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -726,7 +753,7 @@ - + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -832,7 +859,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -852,7 +879,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -881,6 +908,15 @@ + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -910,6 +946,15 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -996,7 +1041,7 @@ - + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1155,6 +1200,15 @@ + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -1266,6 +1320,15 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1342,7 +1405,7 @@ - + True @@ -1392,6 +1455,15 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1432,6 +1504,15 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1604,7 +1685,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1642,6 +1723,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1689,6 +1779,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1700,7 +1799,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1747,7 +1846,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1767,7 +1866,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1805,7 +1904,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1874,6 +1973,15 @@ + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1979,7 +2087,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -2010,6 +2118,15 @@ + + + + ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -2030,6 +2147,15 @@ + + + + ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + @@ -2061,7 +2187,7 @@ - + ..\..\..\..\packages\System.Xml.ReaderWriter\lib\net46\System.Xml.ReaderWriter.dll @@ -2099,6 +2225,13 @@ + + + + True + + + @@ -2128,6 +2261,15 @@ + + + + ..\..\..\..\packages\System.Xml.XmlDocument\lib\net46\System.Xml.XmlDocument.dll + True + True + + + diff --git a/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.RavenDb/Fake.Deploy.Web.RavenDb.fsproj b/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.RavenDb/Fake.Deploy.Web.RavenDb.fsproj index 23ba7c42d5d..2628a9120db 100644 --- a/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.RavenDb/Fake.Deploy.Web.RavenDb.fsproj +++ b/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.RavenDb/Fake.Deploy.Web.RavenDb.fsproj @@ -87,7 +87,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -172,7 +172,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -209,7 +209,7 @@ - + ..\..\..\..\packages\RavenDB.Client\lib\net45\Raven.Abstractions.dll @@ -303,7 +303,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -343,6 +343,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -365,6 +374,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -423,7 +441,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -443,6 +461,15 @@ + + + + ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -454,7 +481,7 @@ - + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -528,7 +555,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -548,7 +575,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -577,6 +604,15 @@ + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -606,6 +642,15 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -692,7 +737,7 @@ - + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -831,6 +876,15 @@ + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -942,6 +996,15 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1018,7 +1081,7 @@ - + True @@ -1068,6 +1131,15 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1108,6 +1180,15 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1193,7 +1274,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1231,6 +1312,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1278,6 +1368,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1289,7 +1388,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1336,7 +1435,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1356,7 +1455,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1394,7 +1493,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1463,6 +1562,15 @@ + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1579,6 +1687,15 @@ + + + + ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1599,6 +1716,15 @@ + + + + ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + diff --git a/src/deploy.web/Fake.Deploy.Web/Fake.Deploy.Web.fsproj b/src/deploy.web/Fake.Deploy.Web/Fake.Deploy.Web.fsproj index 95c8f543712..75e66b87c4d 100644 --- a/src/deploy.web/Fake.Deploy.Web/Fake.Deploy.Web.fsproj +++ b/src/deploy.web/Fake.Deploy.Web/Fake.Deploy.Web.fsproj @@ -201,7 +201,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -226,7 +226,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -336,7 +336,7 @@ - + ..\..\..\packages\log4net\lib\net45-full\log4net.dll @@ -347,7 +347,7 @@ - + ..\..\..\packages\Microsoft.AspNet.Mvc\lib\net40\System.Web.Mvc.dll @@ -358,7 +358,7 @@ - + ..\..\..\packages\Microsoft.AspNet.Razor\lib\net40\System.Web.Razor.dll @@ -369,7 +369,7 @@ - + ..\..\..\packages\Microsoft.AspNet.WebPages\lib\net40\System.Web.Helpers.dll @@ -468,7 +468,7 @@ - + ..\..\..\packages\Microsoft.Web.Infrastructure\lib\net40\Microsoft.Web.Infrastructure.dll @@ -479,7 +479,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -499,7 +499,7 @@ - + ..\..\..\packages\Nancy\lib\net40\Nancy.dll @@ -510,7 +510,7 @@ - + ..\..\..\packages\Nancy.Authentication.Forms\lib\net40\Nancy.Authentication.Forms.dll @@ -521,7 +521,7 @@ - + ..\..\..\packages\Nancy.Hosting.Aspnet\lib\net40\Nancy.Hosting.Aspnet.dll @@ -532,7 +532,7 @@ - + ..\..\..\packages\Nancy.Viewengines.Razor\lib\net40\Nancy.ViewEngines.Razor.dll @@ -570,7 +570,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll @@ -675,6 +675,13 @@ + + + + True + + + @@ -842,7 +849,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -882,6 +889,15 @@ + + + + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -904,6 +920,15 @@ + + + + ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -991,7 +1016,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -1011,6 +1036,15 @@ + + + + ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -1022,7 +1056,7 @@ - + ..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -1128,7 +1162,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -1148,7 +1182,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -1177,6 +1211,15 @@ + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -1206,6 +1249,15 @@ + + + + ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -1263,6 +1315,15 @@ + + + + + True + + + + @@ -1292,11 +1353,8 @@ - + - - True - ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll True @@ -1454,6 +1512,15 @@ + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -1565,6 +1632,15 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1641,7 +1717,7 @@ - + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll @@ -1688,6 +1764,15 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1728,6 +1813,15 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1900,7 +1994,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1938,6 +2032,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1985,6 +2088,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1996,7 +2108,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -2043,7 +2155,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -2063,7 +2175,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -2101,7 +2213,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -2170,6 +2282,15 @@ + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -2275,7 +2396,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -2306,6 +2427,15 @@ + + + + ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -2326,6 +2456,15 @@ + + + + ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + @@ -2357,7 +2496,7 @@ - + ..\..\..\packages\System.Web.Razor.Unofficial\lib\net40\System.Web.Razor.Unofficial.dll @@ -2368,7 +2507,7 @@ - + True @@ -2409,6 +2548,13 @@ + + + + True + + + @@ -2438,6 +2584,15 @@ + + + + ..\..\..\packages\System.Xml.XmlDocument\lib\net46\System.Xml.XmlDocument.dll + True + True + + + diff --git a/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj b/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj index 6a7cde6b0d7..30715a14f88 100644 --- a/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj +++ b/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj @@ -58,7 +58,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -90,7 +90,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -155,7 +155,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -216,7 +216,7 @@ - + ..\..\..\packages\NUnit\lib\net45\nunit.framework.dll @@ -370,7 +370,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -410,6 +410,15 @@ + + + + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -432,6 +441,15 @@ + + + + ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -490,7 +508,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -510,6 +528,15 @@ + + + + ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -521,7 +548,7 @@ - + ..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -627,7 +654,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -647,7 +674,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -676,6 +703,15 @@ + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -705,6 +741,15 @@ + + + + ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -791,7 +836,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -950,6 +995,15 @@ + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -1061,6 +1115,15 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1137,7 +1200,7 @@ - + True @@ -1187,6 +1250,15 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1227,6 +1299,15 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1370,7 +1451,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1408,6 +1489,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1455,6 +1545,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1466,7 +1565,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1513,7 +1612,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1533,7 +1632,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1571,7 +1670,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1640,6 +1739,15 @@ + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1745,7 +1853,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -1776,6 +1884,15 @@ + + + + ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1796,6 +1913,15 @@ + + + + ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + @@ -1827,7 +1953,7 @@ - + True @@ -1868,6 +1994,13 @@ + + + + True + + + @@ -1906,7 +2039,7 @@ - + ..\..\..\packages\Unquote\lib\net45\Unquote.dll diff --git a/src/test/FsCheck.Fake/FsCheck.Fake.fsproj b/src/test/FsCheck.Fake/FsCheck.Fake.fsproj index d8847a9edf3..75c56ccc430 100644 --- a/src/test/FsCheck.Fake/FsCheck.Fake.fsproj +++ b/src/test/FsCheck.Fake/FsCheck.Fake.fsproj @@ -61,7 +61,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -86,7 +86,7 @@ - + ..\..\..\packages\FsCheck\lib\net452\FsCheck.dll @@ -133,7 +133,7 @@ - + ..\..\..\packages\FsCheck.Xunit\lib\net452\FsCheck.Xunit.dll @@ -171,7 +171,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -236,7 +236,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -363,7 +363,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -403,6 +403,15 @@ + + + + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -425,6 +434,15 @@ + + + + ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -483,7 +501,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -503,6 +521,15 @@ + + + + ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -514,7 +541,7 @@ - + ..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -620,7 +647,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -640,7 +667,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -669,6 +696,15 @@ + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -698,6 +734,15 @@ + + + + ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -784,7 +829,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -943,6 +988,15 @@ + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -1054,6 +1108,15 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1130,7 +1193,7 @@ - + True @@ -1180,6 +1243,15 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1220,6 +1292,15 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1305,6 +1386,13 @@ + + + + True + + + @@ -1343,7 +1431,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1381,6 +1469,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1428,6 +1525,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1439,7 +1545,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1486,7 +1592,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1506,7 +1612,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1544,7 +1650,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1613,6 +1719,15 @@ + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1718,7 +1833,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -1749,6 +1864,15 @@ + + + + ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1769,6 +1893,15 @@ + + + + ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + @@ -1800,7 +1933,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\net46\System.Xml.ReaderWriter.dll @@ -1838,6 +1971,13 @@ + + + + True + + + @@ -1867,7 +2007,7 @@ - + ..\..\..\packages\xunit.abstractions\lib\net35\xunit.abstractions.dll @@ -1887,7 +2027,7 @@ - + ..\..\..\packages\xunit.assert\lib\netstandard1.1\xunit.assert.dll @@ -1898,7 +2038,7 @@ - + ..\..\..\packages\xunit.extensibility.core\lib\netstandard1.1\xunit.core.dll @@ -1909,7 +2049,7 @@ - + ..\..\..\packages\xunit.extensibility.execution\lib\net452\xunit.execution.desktop.dll diff --git a/src/test/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj b/src/test/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj index d3d102a8545..978462590c9 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj @@ -78,7 +78,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -166,7 +166,7 @@ - + ..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -200,7 +200,7 @@ - + ..\..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -211,7 +211,7 @@ - + ..\..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -222,7 +222,7 @@ - + True @@ -269,7 +269,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -319,7 +319,7 @@ - + ..\..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -330,7 +330,7 @@ - + ..\..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -410,7 +410,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -450,6 +450,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -472,6 +481,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -530,7 +548,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -550,6 +568,15 @@ + + + + ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -561,11 +588,17 @@ - + True + + + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll True @@ -638,7 +671,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -658,7 +691,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -687,6 +720,15 @@ + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -716,6 +758,15 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -892,6 +943,15 @@ + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -1003,6 +1063,15 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1079,7 +1148,7 @@ - + True @@ -1129,6 +1198,15 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1169,6 +1247,15 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1216,6 +1303,13 @@ + + + + True + + + @@ -1254,7 +1348,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1292,6 +1386,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1339,6 +1442,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1350,7 +1462,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1397,7 +1509,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1417,7 +1529,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1455,7 +1567,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1524,6 +1636,15 @@ + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1640,6 +1761,15 @@ + + + + ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1660,6 +1790,15 @@ + + + + ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj index 7f3b63fbc68..b53158bf53e 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj @@ -163,7 +163,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -251,7 +251,7 @@ - + ..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -285,7 +285,7 @@ - + ..\..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -296,7 +296,7 @@ - + ..\..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -307,7 +307,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -351,7 +351,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -401,7 +401,7 @@ - + ..\..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -412,7 +412,7 @@ - + ..\..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -492,7 +492,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -532,6 +532,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -554,6 +563,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -612,7 +630,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -632,6 +650,15 @@ + + + + ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -643,7 +670,7 @@ - + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -717,7 +744,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -737,7 +764,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -766,6 +793,15 @@ + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -795,6 +831,15 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -881,7 +926,7 @@ - + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1020,6 +1065,15 @@ + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -1131,6 +1185,15 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1207,7 +1270,7 @@ - + True @@ -1257,6 +1320,15 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1297,6 +1369,15 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1344,6 +1425,13 @@ + + + + True + + + @@ -1382,7 +1470,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1420,6 +1508,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1467,6 +1564,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1478,7 +1584,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1525,7 +1631,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1545,7 +1651,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1583,7 +1689,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1652,6 +1758,15 @@ + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1768,6 +1883,15 @@ + + + + ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1788,6 +1912,15 @@ + + + + ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj index 64975194761..78862cf2a75 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj @@ -162,7 +162,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -250,7 +250,7 @@ - + ..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -284,7 +284,7 @@ - + ..\..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -295,7 +295,7 @@ - + ..\..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -306,7 +306,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -350,7 +350,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -400,7 +400,7 @@ - + ..\..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -411,7 +411,7 @@ - + ..\..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -491,7 +491,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -531,6 +531,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -553,6 +562,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -611,7 +629,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -631,6 +649,15 @@ + + + + ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -642,7 +669,7 @@ - + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -716,7 +743,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -736,7 +763,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -765,6 +792,15 @@ + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -794,6 +830,15 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -880,7 +925,7 @@ - + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1019,6 +1064,15 @@ + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -1130,6 +1184,15 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1206,7 +1269,7 @@ - + True @@ -1256,6 +1319,15 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1296,6 +1368,15 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1343,6 +1424,13 @@ + + + + True + + + @@ -1381,7 +1469,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1419,6 +1507,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1466,6 +1563,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1477,7 +1583,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1524,7 +1630,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1544,7 +1650,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1582,7 +1688,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1651,6 +1757,15 @@ + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1767,6 +1882,15 @@ + + + + ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1787,6 +1911,15 @@ + + + + ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj index 64975194761..78862cf2a75 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj @@ -162,7 +162,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -250,7 +250,7 @@ - + ..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -284,7 +284,7 @@ - + ..\..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -295,7 +295,7 @@ - + ..\..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -306,7 +306,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -350,7 +350,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -400,7 +400,7 @@ - + ..\..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -411,7 +411,7 @@ - + ..\..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -491,7 +491,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -531,6 +531,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -553,6 +562,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -611,7 +629,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -631,6 +649,15 @@ + + + + ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -642,7 +669,7 @@ - + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -716,7 +743,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -736,7 +763,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -765,6 +792,15 @@ + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -794,6 +830,15 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -880,7 +925,7 @@ - + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1019,6 +1064,15 @@ + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -1130,6 +1184,15 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1206,7 +1269,7 @@ - + True @@ -1256,6 +1319,15 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1296,6 +1368,15 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1343,6 +1424,13 @@ + + + + True + + + @@ -1381,7 +1469,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1419,6 +1507,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1466,6 +1563,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1477,7 +1583,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1524,7 +1630,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1544,7 +1650,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1582,7 +1688,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1651,6 +1757,15 @@ + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1767,6 +1882,15 @@ + + + + ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1787,6 +1911,15 @@ + + + + ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj index 740ad1b0230..2bf4bc1959d 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj @@ -162,7 +162,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -250,7 +250,7 @@ - + ..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -284,7 +284,7 @@ - + ..\..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -295,7 +295,7 @@ - + ..\..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -306,7 +306,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -350,7 +350,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -400,7 +400,7 @@ - + ..\..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -411,7 +411,7 @@ - + ..\..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -491,7 +491,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -531,6 +531,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -553,6 +562,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -611,7 +629,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -631,6 +649,15 @@ + + + + ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -642,7 +669,7 @@ - + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -716,7 +743,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -736,7 +763,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -765,6 +792,15 @@ + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -794,6 +830,15 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -880,7 +925,7 @@ - + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1019,6 +1064,15 @@ + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -1130,6 +1184,15 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1206,7 +1269,7 @@ - + True @@ -1256,6 +1319,15 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1296,6 +1368,15 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1343,6 +1424,13 @@ + + + + True + + + @@ -1381,7 +1469,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1419,6 +1507,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1466,6 +1563,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1477,7 +1583,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1524,7 +1630,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1544,7 +1650,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1582,7 +1688,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1651,6 +1757,15 @@ + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1767,6 +1882,15 @@ + + + + ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1787,6 +1911,15 @@ + + + + ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj index 740ad1b0230..2bf4bc1959d 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj @@ -162,7 +162,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -250,7 +250,7 @@ - + ..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -284,7 +284,7 @@ - + ..\..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -295,7 +295,7 @@ - + ..\..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -306,7 +306,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -350,7 +350,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -400,7 +400,7 @@ - + ..\..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -411,7 +411,7 @@ - + ..\..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -491,7 +491,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -531,6 +531,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -553,6 +562,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -611,7 +629,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -631,6 +649,15 @@ + + + + ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -642,7 +669,7 @@ - + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -716,7 +743,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -736,7 +763,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -765,6 +792,15 @@ + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -794,6 +830,15 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -880,7 +925,7 @@ - + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1019,6 +1064,15 @@ + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -1130,6 +1184,15 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1206,7 +1269,7 @@ - + True @@ -1256,6 +1319,15 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1296,6 +1368,15 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1343,6 +1424,13 @@ + + + + True + + + @@ -1381,7 +1469,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1419,6 +1507,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1466,6 +1563,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1477,7 +1583,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1524,7 +1630,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1544,7 +1650,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1582,7 +1688,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1651,6 +1757,15 @@ + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1767,6 +1882,15 @@ + + + + ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1787,6 +1911,15 @@ + + + + ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj index 64975194761..78862cf2a75 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj @@ -162,7 +162,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -250,7 +250,7 @@ - + ..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -284,7 +284,7 @@ - + ..\..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -295,7 +295,7 @@ - + ..\..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -306,7 +306,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -350,7 +350,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -400,7 +400,7 @@ - + ..\..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -411,7 +411,7 @@ - + ..\..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -491,7 +491,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -531,6 +531,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -553,6 +562,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -611,7 +629,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -631,6 +649,15 @@ + + + + ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -642,7 +669,7 @@ - + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -716,7 +743,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -736,7 +763,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -765,6 +792,15 @@ + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -794,6 +830,15 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -880,7 +925,7 @@ - + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1019,6 +1064,15 @@ + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -1130,6 +1184,15 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1206,7 +1269,7 @@ - + True @@ -1256,6 +1319,15 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1296,6 +1368,15 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1343,6 +1424,13 @@ + + + + True + + + @@ -1381,7 +1469,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1419,6 +1507,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1466,6 +1563,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1477,7 +1583,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1524,7 +1630,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1544,7 +1650,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1582,7 +1688,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1651,6 +1757,15 @@ + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1767,6 +1882,15 @@ + + + + ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1787,6 +1911,15 @@ + + + + ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj index e166a3dfb68..c51af9f0af8 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj @@ -163,7 +163,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -251,7 +251,7 @@ - + ..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -285,7 +285,7 @@ - + ..\..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -296,7 +296,7 @@ - + ..\..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -307,7 +307,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -351,7 +351,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -401,7 +401,7 @@ - + ..\..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -412,7 +412,7 @@ - + ..\..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -492,7 +492,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -532,6 +532,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -554,6 +563,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -612,7 +630,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -632,6 +650,15 @@ + + + + ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -643,7 +670,7 @@ - + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -717,7 +744,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -737,7 +764,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -766,6 +793,15 @@ + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -795,6 +831,15 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -881,7 +926,7 @@ - + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1020,6 +1065,15 @@ + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -1131,6 +1185,15 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1207,7 +1270,7 @@ - + True @@ -1257,6 +1320,15 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1297,6 +1369,15 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1344,6 +1425,13 @@ + + + + True + + + @@ -1382,7 +1470,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1420,6 +1508,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1467,6 +1564,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1478,7 +1584,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1525,7 +1631,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1545,7 +1651,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1583,7 +1689,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1652,6 +1758,15 @@ + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1768,6 +1883,15 @@ + + + + ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1788,6 +1912,15 @@ + + + + ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj index e166a3dfb68..c51af9f0af8 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj @@ -163,7 +163,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -251,7 +251,7 @@ - + ..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -285,7 +285,7 @@ - + ..\..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -296,7 +296,7 @@ - + ..\..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -307,7 +307,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -351,7 +351,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -401,7 +401,7 @@ - + ..\..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -412,7 +412,7 @@ - + ..\..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -492,7 +492,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -532,6 +532,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -554,6 +563,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -612,7 +630,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -632,6 +650,15 @@ + + + + ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -643,7 +670,7 @@ - + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -717,7 +744,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -737,7 +764,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -766,6 +793,15 @@ + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -795,6 +831,15 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -881,7 +926,7 @@ - + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1020,6 +1065,15 @@ + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -1131,6 +1185,15 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1207,7 +1270,7 @@ - + True @@ -1257,6 +1320,15 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1297,6 +1369,15 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1344,6 +1425,13 @@ + + + + True + + + @@ -1382,7 +1470,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1420,6 +1508,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1467,6 +1564,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1478,7 +1584,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1525,7 +1631,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1545,7 +1651,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1583,7 +1689,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1652,6 +1758,15 @@ + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1768,6 +1883,15 @@ + + + + ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1788,6 +1912,15 @@ + + + + ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + diff --git a/src/test/Test.FAKECore/Test.FAKECore.csproj b/src/test/Test.FAKECore/Test.FAKECore.csproj index d0dc78ed103..3b48e04dade 100644 --- a/src/test/Test.FAKECore/Test.FAKECore.csproj +++ b/src/test/Test.FAKECore/Test.FAKECore.csproj @@ -431,7 +431,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -519,7 +519,7 @@ - + ..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -553,7 +553,7 @@ - + ..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -564,7 +564,7 @@ - + ..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -575,7 +575,7 @@ - + True @@ -622,7 +622,7 @@ - + ..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -672,7 +672,7 @@ - + ..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -683,7 +683,7 @@ - + ..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -763,7 +763,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -803,6 +803,15 @@ + + + + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -825,6 +834,15 @@ + + + + ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -883,7 +901,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -903,6 +921,15 @@ + + + + ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -914,11 +941,17 @@ - + True + + + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll True @@ -991,7 +1024,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -1011,7 +1044,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -1040,6 +1073,15 @@ + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -1069,6 +1111,15 @@ + + + + ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -1164,7 +1215,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1303,6 +1354,15 @@ + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -1414,6 +1474,15 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1490,7 +1559,7 @@ - + True @@ -1540,6 +1609,15 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1580,6 +1658,15 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1627,6 +1714,13 @@ + + + + True + + + @@ -1665,7 +1759,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1703,6 +1797,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1750,6 +1853,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1761,7 +1873,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1808,7 +1920,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1828,7 +1940,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1866,7 +1978,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1935,6 +2047,15 @@ + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -2051,6 +2172,15 @@ + + + + ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -2071,6 +2201,15 @@ + + + + ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + diff --git a/src/test/Test.FAKECore/TestData/fake_no_template.csproj b/src/test/Test.FAKECore/TestData/fake_no_template.csproj index aa5961527c7..683c0758d4c 100644 --- a/src/test/Test.FAKECore/TestData/fake_no_template.csproj +++ b/src/test/Test.FAKECore/TestData/fake_no_template.csproj @@ -69,7 +69,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -157,7 +157,7 @@ - + ..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -191,7 +191,7 @@ - + ..\..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -202,7 +202,7 @@ - + ..\..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -213,7 +213,7 @@ - + True @@ -260,7 +260,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -310,7 +310,7 @@ - + ..\..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -321,7 +321,7 @@ - + ..\..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -401,7 +401,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -441,6 +441,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -463,6 +472,15 @@ + + + + ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -521,7 +539,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -541,6 +559,15 @@ + + + + ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -552,11 +579,17 @@ - + True + + + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll True @@ -629,7 +662,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -649,7 +682,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -678,6 +711,15 @@ + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -707,6 +749,15 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -802,7 +853,7 @@ - + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -941,6 +992,15 @@ + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -1052,6 +1112,15 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1128,7 +1197,7 @@ - + True @@ -1178,6 +1247,15 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1218,6 +1296,15 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1265,6 +1352,13 @@ + + + + True + + + @@ -1303,7 +1397,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1341,6 +1435,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1388,6 +1491,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1399,7 +1511,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1446,7 +1558,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1466,7 +1578,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1504,7 +1616,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1573,6 +1685,15 @@ + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1689,6 +1810,15 @@ + + + + ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1709,6 +1839,15 @@ + + + + ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + diff --git a/src/test/Test.Fake.Deploy.Web.File/Test.Fake.Deploy.Web.File.fsproj b/src/test/Test.Fake.Deploy.Web.File/Test.Fake.Deploy.Web.File.fsproj index 8cdc06efd11..79dfefc3bf5 100644 --- a/src/test/Test.Fake.Deploy.Web.File/Test.Fake.Deploy.Web.File.fsproj +++ b/src/test/Test.Fake.Deploy.Web.File/Test.Fake.Deploy.Web.File.fsproj @@ -72,7 +72,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -97,7 +97,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -162,7 +162,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -289,7 +289,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -329,6 +329,15 @@ + + + + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -351,6 +360,15 @@ + + + + ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -409,7 +427,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -429,6 +447,15 @@ + + + + ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -440,7 +467,7 @@ - + ..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -546,7 +573,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -566,7 +593,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -595,6 +622,15 @@ + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -624,6 +660,15 @@ + + + + ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -710,7 +755,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -869,6 +914,15 @@ + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -980,6 +1034,15 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1056,7 +1119,7 @@ - + True @@ -1106,6 +1169,15 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1146,6 +1218,15 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1269,7 +1350,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1307,6 +1388,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1354,6 +1444,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1365,7 +1464,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1412,7 +1511,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1432,7 +1531,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1470,7 +1569,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1539,6 +1638,15 @@ + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1644,7 +1752,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -1675,6 +1783,15 @@ + + + + ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1695,6 +1812,15 @@ + + + + ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + @@ -1726,7 +1852,7 @@ - + True @@ -1767,6 +1893,13 @@ + + + + True + + + @@ -1796,7 +1929,7 @@ - + ..\..\..\packages\xunit.abstractions\lib\net35\xunit.abstractions.dll @@ -1816,7 +1949,7 @@ - + ..\..\..\packages\xunit.assert\lib\netstandard1.1\xunit.assert.dll @@ -1827,7 +1960,7 @@ - + ..\..\..\packages\xunit.extensibility.core\lib\netstandard1.1\xunit.core.dll @@ -1838,7 +1971,7 @@ - + ..\..\..\packages\xunit.extensibility.execution\lib\net452\xunit.execution.desktop.dll diff --git a/src/test/Test.Fake.Deploy.Web/Test.Fake.Deploy.Web.fsproj b/src/test/Test.Fake.Deploy.Web/Test.Fake.Deploy.Web.fsproj index e471b82215a..6d69c87036f 100644 --- a/src/test/Test.Fake.Deploy.Web/Test.Fake.Deploy.Web.fsproj +++ b/src/test/Test.Fake.Deploy.Web/Test.Fake.Deploy.Web.fsproj @@ -88,14 +88,14 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library - + ..\..\..\packages\CsQuery\lib\net40\CsQuery.dll @@ -124,7 +124,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -189,7 +189,7 @@ - + ..\..\..\packages\Microsoft.AspNet.Razor\lib\net40\System.Web.Razor.dll @@ -273,7 +273,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -293,7 +293,7 @@ - + ..\..\..\packages\Nancy\lib\net40\Nancy.dll @@ -304,7 +304,7 @@ - + ..\..\..\packages\Nancy.Testing\lib\net40\Nancy.Testing.dll @@ -315,7 +315,7 @@ - + ..\..\..\packages\Nancy.Viewengines.Razor\lib\net40\Nancy.ViewEngines.Razor.dll @@ -353,7 +353,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll @@ -625,7 +625,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -665,6 +665,15 @@ + + + + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -687,6 +696,15 @@ + + + + ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -774,7 +792,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -794,6 +812,15 @@ + + + + ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -805,7 +832,7 @@ - + ..\..\..\packages\System.IO\lib\net462\System.IO.dll @@ -911,7 +938,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -931,7 +958,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -960,6 +987,15 @@ + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -989,6 +1025,15 @@ + + + + ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -1075,7 +1120,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1234,6 +1279,15 @@ + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -1345,6 +1399,15 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1421,7 +1484,7 @@ - + True @@ -1471,6 +1534,15 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1511,6 +1583,15 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1683,7 +1764,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1721,6 +1802,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1768,6 +1858,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1779,7 +1878,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1826,7 +1925,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1846,7 +1945,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1884,7 +1983,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1953,6 +2052,15 @@ + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -2058,7 +2166,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -2089,6 +2197,15 @@ + + + + ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -2109,6 +2226,15 @@ + + + + ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + @@ -2140,7 +2266,7 @@ - + ..\..\..\packages\System.Web.Razor.Unofficial\lib\net40\System.Web.Razor.Unofficial.dll @@ -2151,7 +2277,7 @@ - + True @@ -2192,6 +2318,13 @@ + + + + True + + + @@ -2221,6 +2354,15 @@ + + + + ..\..\..\packages\System.Xml.XmlDocument\lib\net46\System.Xml.XmlDocument.dll + True + True + + + @@ -2241,7 +2383,7 @@ - + ..\..\..\packages\xunit.abstractions\lib\net35\xunit.abstractions.dll @@ -2261,7 +2403,7 @@ - + ..\..\..\packages\xunit.assert\lib\netstandard1.1\xunit.assert.dll @@ -2272,7 +2414,7 @@ - + ..\..\..\packages\xunit.extensibility.core\lib\netstandard1.1\xunit.core.dll @@ -2283,7 +2425,7 @@ - + ..\..\..\packages\xunit.extensibility.execution\lib\net452\xunit.execution.desktop.dll diff --git a/src/test/Test.Fake.Deploy/Test.Fake.Deploy.csproj b/src/test/Test.Fake.Deploy/Test.Fake.Deploy.csproj index 76ad6b7e8eb..da9d221b9f7 100644 --- a/src/test/Test.Fake.Deploy/Test.Fake.Deploy.csproj +++ b/src/test/Test.Fake.Deploy/Test.Fake.Deploy.csproj @@ -127,7 +127,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -141,7 +141,7 @@ --> - + ..\..\..\packages\CsQuery\lib\net40\CsQuery.dll @@ -170,7 +170,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -258,7 +258,7 @@ - + ..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -292,7 +292,7 @@ - + ..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -323,7 +323,7 @@ - + True @@ -346,7 +346,7 @@ - + ..\..\..\packages\Nancy\lib\net40\Nancy.dll @@ -357,7 +357,7 @@ - + ..\..\..\packages\Nancy.Testing\lib\net40\Nancy.Testing.dll @@ -395,7 +395,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll @@ -451,7 +451,7 @@ - + ..\..\..\packages\SSH.NET\lib\net40\Renci.SshNet.dll @@ -797,7 +797,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -837,6 +837,15 @@ + + + + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -859,6 +868,15 @@ + + + + ..\..\..\packages\System.Diagnostics.TraceSource\lib\net46\System.Diagnostics.TraceSource.dll + True + True + + + @@ -870,6 +888,15 @@ + + + + ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -957,7 +984,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -977,6 +1004,15 @@ + + + + ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -988,11 +1024,17 @@ - + True + + + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll True @@ -1097,7 +1139,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -1117,7 +1159,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -1146,6 +1188,15 @@ + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -1175,6 +1226,15 @@ + + + + ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -1270,7 +1330,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1440,6 +1500,15 @@ + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -1551,6 +1620,15 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1627,7 +1705,7 @@ - + True @@ -1677,6 +1755,15 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1717,6 +1804,15 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1802,6 +1898,13 @@ + + + + True + + + @@ -1909,7 +2012,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1947,6 +2050,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1994,6 +2106,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -2005,7 +2126,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -2052,7 +2173,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -2072,7 +2193,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -2110,7 +2231,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -2159,6 +2280,15 @@ + + + + ..\..\..\packages\System.Security.Principal.Windows\lib\net461\System.Security.Principal.Windows.dll + True + True + + + @@ -2237,6 +2367,15 @@ + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -2342,7 +2481,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -2373,6 +2512,15 @@ + + + + ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -2393,6 +2541,15 @@ + + + + ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + @@ -2424,7 +2581,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\net46\System.Xml.ReaderWriter.dll @@ -2491,6 +2648,15 @@ + + + + ..\..\..\packages\System.Xml.XmlDocument\lib\net46\System.Xml.XmlDocument.dll + True + True + + + @@ -2511,6 +2677,15 @@ + + + + ..\..\..\packages\System.Xml.XPath\lib\net46\System.Xml.XPath.dll + True + True + + + @@ -2531,6 +2706,15 @@ + + + + ..\..\..\packages\System.Xml.XPath.XmlDocument\lib\net46\System.Xml.XPath.XmlDocument.dll + True + True + + + diff --git a/src/test/Test.Git/Test.Git.csproj b/src/test/Test.Git/Test.Git.csproj index 4e8e3bde6a7..eea4e3043e1 100644 --- a/src/test/Test.Git/Test.Git.csproj +++ b/src/test/Test.Git/Test.Git.csproj @@ -100,7 +100,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -188,7 +188,7 @@ - + ..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -222,7 +222,7 @@ - + ..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -233,7 +233,7 @@ - + True @@ -325,7 +325,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -365,6 +365,15 @@ + + + + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll + True + True + + + @@ -387,6 +396,15 @@ + + + + ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll + True + True + + + @@ -445,7 +463,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -465,6 +483,15 @@ + + + + ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll + True + True + + + @@ -476,11 +503,17 @@ - + True + + + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll True @@ -553,7 +586,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -573,7 +606,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -602,6 +635,15 @@ + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + @@ -631,6 +673,15 @@ + + + + ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll + True + True + + + @@ -726,7 +777,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -865,6 +916,15 @@ + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + @@ -976,6 +1036,15 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1052,7 +1121,7 @@ - + True @@ -1102,6 +1171,15 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + @@ -1142,6 +1220,15 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1189,6 +1276,13 @@ + + + + True + + + @@ -1227,7 +1321,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll @@ -1265,6 +1359,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll + True + True + + + @@ -1312,6 +1415,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll + True + True + + + @@ -1323,7 +1435,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1370,7 +1482,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1390,7 +1502,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1428,7 +1540,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1497,6 +1609,15 @@ + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll + True + True + + + @@ -1613,6 +1734,15 @@ + + + + ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll + True + True + + + @@ -1633,6 +1763,15 @@ + + + + ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll + True + True + + + From 401a58d101b82ade1b228efd04d5dfb447f23a9b Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sat, 21 Oct 2017 20:44:33 +0200 Subject: [PATCH 18/43] make Fake.Core.Process compile again --- .../Fake.Core.Process.fsproj | 39 ++++----- src/app/Fake.Core.Process/Process.fs | 83 ++++++++++++------- 2 files changed, 75 insertions(+), 47 deletions(-) diff --git a/src/app/Fake.Core.Process/Fake.Core.Process.fsproj b/src/app/Fake.Core.Process/Fake.Core.Process.fsproj index 7c03fb4c22b..6202a3c4108 100644 --- a/src/app/Fake.Core.Process/Fake.Core.Process.fsproj +++ b/src/app/Fake.Core.Process/Fake.Core.Process.fsproj @@ -1,36 +1,37 @@ - + - 1.0.0-alpha-10 - net46;netstandard1.6;netstandard2.0 - pdbonly - true Fake.Core.Process Library - - - $(DefineConstants);NETSTANDARD + net46;netstandard1.6;netstandard2.0 $(DefineConstants);RELEASE - - $(DefineConstants);NETSTANDARD2_0 + + $(DefineConstants);FX_PASSWORD_CLEAR_TEXT;FX_PASSWORD;FX_WINDOWSTLE;FX_VERB;FX_ERROR_DIALOG + + + $(DefineConstants);FX_PASSWORD;FX_WINDOWSTLE;FX_VERB;FX_CONFIGURATION_MANAGER;FX_ERROR_DIALOG + + + $(DefineConstants);FX_PASSWORD_CLEAR_TEXT - - - - - - - - true - + + + + + + + + + + \ No newline at end of file diff --git a/src/app/Fake.Core.Process/Process.fs b/src/app/Fake.Core.Process/Process.fs index c6181317987..75f79b0ef0f 100644 --- a/src/app/Fake.Core.Process/Process.fs +++ b/src/app/Fake.Core.Process/Process.fs @@ -155,19 +155,20 @@ type ProcStartInfo = Domain : string /// Gets the environment variables that apply to this process and its child processes. Environment : Map option +#if FX_ERROR_DIALOG /// Gets or sets a value indicating whether an error dialog box is displayed to the user if the process cannot be started. ErrorDialog : bool /// Gets or sets the window handle to use when an error dialog box is shown for a process that cannot be started. ErrorDialogParentHandle : IntPtr +#endif /// Gets or sets the application or document to start. FileName : string /// true if the Windows user profile should be loaded; otherwise, false. The default is false. LoadUserProfile : bool + // Note: No SecureString as that one is obsolete anyway and to provide a uniform API across netstandard16. /// Gets or sets the user password in clear text to use when starting the process. - PasswordInClearText : string -#if NETSTANDARD2_0 - /// The user password to use when starting the process. - Password : System.Security.SecureString + Password : string +#if FX_WINDOWSTLE /// One of the enumeration values that indicates whether the process is started in a window that is maximized, minimized, normal (neither maximized nor minimized), or not visible. The default is Normal. WindowStyle : ProcessWindowStyle #endif @@ -185,8 +186,10 @@ type ProcStartInfo = UserName : string /// true if the shell should be used when starting the process; false if the process should be created directly from the executable file. The default is true. UseShellExecute : bool +#if FX_VERB /// The action to take with the file that the process opens. The default is an empty string (""), which signifies no action. Verb : string +#endif /// When UseShellExecute is true, the fully qualified name of the directory that contains the process to be started. When the UseShellExecute property is false, the working directory for the process to be started. The default is an empty string (""). WorkingDirectory : string } @@ -195,13 +198,14 @@ type ProcStartInfo = CreateNoWindow = false Domain = null Environment = None +#if FX_ERROR_DIALOG ErrorDialog = false ErrorDialogParentHandle = IntPtr.Zero +#endif FileName = "" LoadUserProfile = false - PasswordInClearText = null -#if NETSTANDARD2_0 Password = null +#if FX_WINDOWSTLE WindowStyle = ProcessWindowStyle.Normal #endif RedirectStandardError = false @@ -211,7 +215,9 @@ type ProcStartInfo = StandardOutputEncoding = null UserName = null UseShellExecute = true +#if FX_VERB Verb = "" +#endif WorkingDirectory = "" } member x.AsStartInfo = let p = new ProcessStartInfo(x.FileName, x.Arguments) @@ -223,12 +229,26 @@ type ProcStartInfo = p.Environment.[var] <- key) //p.Environment = None | _ -> () +#if FX_ERROR_DIALOG p.ErrorDialog <- x.ErrorDialog p.ErrorDialogParentHandle <- x.ErrorDialogParentHandle +#endif p.LoadUserProfile <- x.LoadUserProfile - p.PasswordInClearText <- x.PasswordInClearText -#if NETSTANDARD2_0 - p.Password <- x.Password +#if FX_PASSWORD_CLEAR_TEXT + p.PasswordInClearText <- x.Password +#else +#if FX_PASSWORD + p.Password <- + let sec = new System.Security.SecureString() + x.Password |> Seq.map (sec.AppendChar) + sec.MakeReadOnly() + sec +#else + if not (isNull password) then + failwithf "Password for starting a process was set but with this compiled binary neither ProcessStartInfo.Password nor ProcessStartInfo.PasswordInClearText was available." +#endif +#endif +#if FX_WINDOWSTLE p.WindowStyle <- x.WindowStyle #endif p.RedirectStandardError <- x.RedirectStandardError @@ -238,7 +258,9 @@ type ProcStartInfo = p.StandardOutputEncoding <- x.StandardOutputEncoding p.UserName <- x.UserName p.UseShellExecute <- x.UseShellExecute +#if FX_VERB p.Verb <- x.Verb +#endif p.WorkingDirectory <- x.WorkingDirectory p @@ -351,27 +373,32 @@ let ExecProcess configProcessStartInfoF timeOut = /// - `timeOut` - The timeout for the process. [] let ExecProcessElevated cmd args timeOut = +#if FX_VERB ExecProcess (fun si -> { si with -#if !NETSTANDARD Verb = "runas" -#endif Arguments = args FileName = cmd UseShellExecute = true }) timeOut +#else + failwithf "Elevated processes not possible with netstandard16 build." +#endif /// Sets the environment Settings for the given startInfo. /// Existing values will be overriden. /// [omit] -let setEnvironmentVariables (startInfo : ProcessStartInfo) environmentSettings = -#if NETSTANDARD - let envDict = startInfo.Environment -#else - let envDict = startInfo.EnvironmentVariables -#endif - for key, value in environmentSettings do - if envDict.ContainsKey key then envDict.[key] <- value - else envDict.Add(key, value) +let setEnvironmentVariable envKey envVar (startInfo : ProcStartInfo) = + { startInfo with + Environment = + match startInfo.Environment with + | None -> [envKey, envVar] |> Map.ofSeq + | Some map -> map |> Map.add envKey envVar + |> Some } + +let setEnvironmentVariables vars (startInfo : ProcStartInfo) = + vars + |> Seq.fold (fun state (newKey, newVar) -> + setEnvironmentVariable newKey newVar state) startInfo /// Runs the given process and returns true if the exit code was 0. /// [omit] @@ -498,12 +525,12 @@ let tryFindFileOnPath (file : string) : string option = let appSettings (key : string) (fallbackValue : string) = let value = let setting = -#if NETSTANDARD - null -#else - try +#if FX_CONFIGURATION_MANAGER + try System.Configuration.ConfigurationManager.AppSettings.[key] with exn -> "" +#else + null #endif if not (String.isNullOrWhiteSpace setting) then setting else fallbackValue @@ -571,11 +598,11 @@ let asyncShellExec (args : ExecParams) = ProcessStartInfo (args.Program, UseShellExecute = false, RedirectStandardError = true, RedirectStandardOutput = true, RedirectStandardInput = true, -#if NETSTANDARD - CreateNoWindow = true, -#else +#if FX_WINDOWSTLE WindowStyle = ProcessWindowStyle.Hidden, -#endif +#else + CreateNoWindow = true, +#endif WorkingDirectory = args.WorkingDirectory, Arguments = commandLine) use proc = new Process(StartInfo = info) From 61d66059fc0e75621e9f9493d099ad5de2b77316 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sat, 21 Oct 2017 21:27:08 +0200 Subject: [PATCH 19/43] fix compilation and some warnings --- src/app/Fake.Core.Process/Process.fs | 4 ++-- src/app/FakeLib/FakeLib.fsproj | 4 ++-- src/app/FakeLib/UnitTest/NUnit/NUnit3.fs | 1 + src/app/FakeLib/YarnHelper.fs | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/app/Fake.Core.Process/Process.fs b/src/app/Fake.Core.Process/Process.fs index 75f79b0ef0f..1453889e209 100644 --- a/src/app/Fake.Core.Process/Process.fs +++ b/src/app/Fake.Core.Process/Process.fs @@ -240,11 +240,11 @@ type ProcStartInfo = #if FX_PASSWORD p.Password <- let sec = new System.Security.SecureString() - x.Password |> Seq.map (sec.AppendChar) + x.Password |> Seq.iter (sec.AppendChar) sec.MakeReadOnly() sec #else - if not (isNull password) then + if not (isNull x.Password) then failwithf "Password for starting a process was set but with this compiled binary neither ProcessStartInfo.Password nor ProcessStartInfo.PasswordInClearText was available." #endif #endif diff --git a/src/app/FakeLib/FakeLib.fsproj b/src/app/FakeLib/FakeLib.fsproj index 70dfe35f7f9..8607a8c51ec 100644 --- a/src/app/FakeLib/FakeLib.fsproj +++ b/src/app/FakeLib/FakeLib.fsproj @@ -20,7 +20,7 @@ full false bin\Debug - TRACE;DEBUG;NET40;NO_DOTNETCORE_BOOTSTRAP + TRACE;DEBUG;NET40;NO_DOTNETCORE_BOOTSTRAP;FX_PASSWORD;FX_WINDOWSTLE;FX_VERB;FX_CONFIGURATION_MANAGER;FX_ERROR_DIALOG prompt 3 @@ -34,7 +34,7 @@ pdbonly true ..\..\..\build\ - TRACE;NET40;NO_DOTNETCORE_BOOTSTRAP + TRACE;NET40;NO_DOTNETCORE_BOOTSTRAP;FX_PASSWORD;FX_WINDOWSTLE;FX_VERB;FX_CONFIGURATION_MANAGER;FX_ERROR_DIALOG prompt 3 ..\..\..\build\FakeLib.XML diff --git a/src/app/FakeLib/UnitTest/NUnit/NUnit3.fs b/src/app/FakeLib/UnitTest/NUnit/NUnit3.fs index 9f496770279..f6fa4d6abcd 100644 --- a/src/app/FakeLib/UnitTest/NUnit/NUnit3.fs +++ b/src/app/FakeLib/UnitTest/NUnit/NUnit3.fs @@ -80,6 +80,7 @@ type NUnit3Runtime = | Net35 -> "net-3.5" | Net40 -> "net-4.0" | Net45 -> "net-4.5" + | Mono -> "mono" | Mono20 -> "mono-2.0" | Mono30 -> "mono-3.0" | Mono35 -> "mono-3.5" diff --git a/src/app/FakeLib/YarnHelper.fs b/src/app/FakeLib/YarnHelper.fs index 185c4a06aa4..a67ad4dcdbc 100644 --- a/src/app/FakeLib/YarnHelper.fs +++ b/src/app/FakeLib/YarnHelper.fs @@ -37,7 +37,7 @@ type InstallArgs = | Har | NoLockFile | Production -| PureLockfile +| PureLockFile /// The list of supported Yarn commands. The `Custom` alternative /// can be used for other commands not in the list until they are From 68bded59f1fe7f893aa128e9d32e936745fcc126 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sat, 21 Oct 2017 21:55:24 +0200 Subject: [PATCH 20/43] fix compilation and add some docs. --- help/markdown/core-process.md | 29 +++++++ help/templates/template.cshtml | 2 +- src/app/Fake.Core.Process/Process.fs | 85 +++++++++++++++---- .../Fake.Core.IntegrationTests/TestHelpers.fs | 11 +-- 4 files changed, 106 insertions(+), 21 deletions(-) create mode 100644 help/markdown/core-process.md diff --git a/help/markdown/core-process.md b/help/markdown/core-process.md new file mode 100644 index 00000000000..de215a259c7 --- /dev/null +++ b/help/markdown/core-process.md @@ -0,0 +1,29 @@ +# Starting processes in "FAKE - F# Make" + +**Note: This documentation is for FAKE 5! ** + +[API-Reference](apidocs/fake-core-process.html) + +## Running a command and analyse results + +```fsharp + +let fakeToolPath = "known/path/to/fake.exe" +let directFakeInPath command workingDir target = + let result = + Process.ExecProcessAndReturnMessages (fun (info:Process.ProcStartInfo) -> + { info with + FileName = fakeToolPath + WorkingDirectory = workingDir + Arguments = command } + |> Process.setEnvironmentVariable "target" target) (System.TimeSpan.FromMinutes 15.) + if result.ExitCode <> 0 then + let errors = String.Join(Environment.NewLine,result.Errors) + printfn "%s" <| String.Join(Environment.NewLine,result.Messages) + failwithf "FAKE Process exited with %d: %s" result.ExitCode errors + String.Join(Environment.NewLine,result.Messages) + +let output = directFakeInPath "--version" "." "All" + +``` + diff --git a/help/templates/template.cshtml b/help/templates/template.cshtml index 40c5cfc3544..a47bf225e22 100644 --- a/help/templates/template.cshtml +++ b/help/templates/template.cshtml @@ -76,7 +76,7 @@
      • Targets
      • Globbing
      • Environment
      • -
      • Process
      • +
      • Process
      • String
      • BuildServer
      • Tracing
      • diff --git a/src/app/Fake.Core.Process/Process.fs b/src/app/Fake.Core.Process/Process.fs index 1453889e209..4583b24175c 100644 --- a/src/app/Fake.Core.Process/Process.fs +++ b/src/app/Fake.Core.Process/Process.fs @@ -264,6 +264,76 @@ type ProcStartInfo = p.WorkingDirectory <- x.WorkingDirectory p +/// Sets the environment Settings for the given startInfo. +/// Existing values will be overriden. +/// [omit] +let setEnvironmentVariable envKey envVar (startInfo : ProcStartInfo) = + { startInfo with + Environment = + match startInfo.Environment with + | None -> [envKey, envVar] |> Map.ofSeq + | Some map -> map |> Map.add envKey envVar + |> Some } + +let setEnvironmentVariables vars (startInfo : ProcStartInfo) = + vars + |> Seq.fold (fun state (newKey, newVar) -> + setEnvironmentVariable newKey newVar state) startInfo + +type ProcStartInfo with + /// Gets or sets the set of command-line arguments to use when starting the application. + member x.WithArguments args = { x with Arguments = args } + /// Gets or sets a value indicating whether to start the process in a new window. + member x.WithCreateNoWindow noWindow = { x with CreateNoWindow = noWindow } + /// Gets or sets a value that identifies the domain to use when starting the process. + member x.WithDomain domain = { x with Domain = domain } + /// Gets or sets a value that identifies the domain to use when starting the process. + member x.WithoutEnvironment () = { x with Environment = None } + /// Gets or sets a value that identifies the domain to use when starting the process. + member x.WithEnvironmentVariable(envKey, envVar) = + setEnvironmentVariable envKey envVar x + /// Gets or sets a value that identifies the domain to use when starting the process. + member x.WithEnvironmentVariables vars = + setEnvironmentVariables vars x + +#if FX_ERROR_DIALOG + /// Gets or sets a value indicating whether an error dialog box is displayed to the user if the process cannot be started. + member x.WithErrorDialog errorDialog = { x with ErrorDialog = errorDialog } + /// Gets or sets the window handle to use when an error dialog box is shown for a process that cannot be started. + member x.WithErrorDialogParentHandle handle = { x with ErrorDialogParentHandle = handle } +#endif + /// Gets or sets the application or document to start. + member x.WithFileName name = { x with FileName = name } + /// true if the Windows user profile should be loaded; otherwise, false. The default is false. + member x.WithLoadUserProfile userProfile = { x with LoadUserProfile = userProfile } + // Note: No SecureString as that one is obsolete anyway and to provide a uniform API across netstandard16. + /// Gets or sets the user password in clear text to use when starting the process. + member x.WithPassword password = { x with Password = password } +#if FX_WINDOWSTLE + /// One of the enumeration values that indicates whether the process is started in a window that is maximized, minimized, normal (neither maximized nor minimized), or not visible. The default is Normal. + member x.WithWindowStyle style = { x with WindowStyle = style } +#endif + /// true if error output should be written to Process.StandardError; otherwise, false. The default is false. + member x.WithRedirectStandardError redirectStdErr = { x with RedirectStandardError = redirectStdErr } + /// true if input should be read from Process.StandardInput; otherwise, false. The default is false. + member x.WithRedirectStandardInput redirectStdInput = { x with RedirectStandardInput = redirectStdInput } + /// true if output should be written to Process.StandardOutput; otherwise, false. The default is false. + member x.WithRedirectStandardOutput redirectStdOutput = { x with RedirectStandardOutput = redirectStdOutput } + /// An object that represents the preferred encoding for error output. The default is null. + member x.WithStandardErrorEncoding encoding = { x with StandardErrorEncoding = encoding } + /// An object that represents the preferred encoding for standard output. The default is null. + member x.WithStandardOutputEncoding encoding = { x with StandardOutputEncoding = encoding } + /// The user name to use when starting the process. If you use the UPN format, user@DNS_domain_name, the Domain property must be null. + member x.WithUserName name = { x with UserName = name } + /// true if the shell should be used when starting the process; false if the process should be created directly from the executable file. The default is true. + member x.WithUseShellExecute shellExec = { x with UseShellExecute = shellExec } +#if FX_VERB + /// The action to take with the file that the process opens. The default is an empty string (""), which signifies no action. + member x.WithVerb name = { x with Verb = name } +#endif + /// When UseShellExecute is true, the fully qualified name of the directory that contains the process to be started. When the UseShellExecute property is false, the working directory for the process to be started. The default is an empty string (""). + member x.WithWorkingDirectory dir = { x with WorkingDirectory = dir } + let inline getProc config = let startInfo : ProcStartInfo = config { ProcStartInfo.Empty with UseShellExecute = false } @@ -384,21 +454,6 @@ let ExecProcessElevated cmd args timeOut = failwithf "Elevated processes not possible with netstandard16 build." #endif -/// Sets the environment Settings for the given startInfo. -/// Existing values will be overriden. -/// [omit] -let setEnvironmentVariable envKey envVar (startInfo : ProcStartInfo) = - { startInfo with - Environment = - match startInfo.Environment with - | None -> [envKey, envVar] |> Map.ofSeq - | Some map -> map |> Map.add envKey envVar - |> Some } - -let setEnvironmentVariables vars (startInfo : ProcStartInfo) = - vars - |> Seq.fold (fun state (newKey, newVar) -> - setEnvironmentVariable newKey newVar state) startInfo /// Runs the given process and returns true if the exit code was 0. /// [omit] diff --git a/src/test/Fake.Core.IntegrationTests/TestHelpers.fs b/src/test/Fake.Core.IntegrationTests/TestHelpers.fs index 14afc3e0990..718c4a48e48 100644 --- a/src/test/Fake.Core.IntegrationTests/TestHelpers.fs +++ b/src/test/Fake.Core.IntegrationTests/TestHelpers.fs @@ -27,11 +27,12 @@ let prepare scenario = let directFakeInPath command scenarioPath target = let result = - Process.ExecProcessAndReturnMessages (fun (info:System.Diagnostics.ProcessStartInfo) -> - info.EnvironmentVariables.["target"] <- target - info.FileName <- fakeToolPath - info.WorkingDirectory <- scenarioPath - info.Arguments <- command) (System.TimeSpan.FromMinutes 15.) + Process.ExecProcessAndReturnMessages (fun (info:Process.ProcStartInfo) -> + { info with + FileName = fakeToolPath + WorkingDirectory = scenarioPath + Arguments = command } + |> Process.setEnvironmentVariable "target" target) (System.TimeSpan.FromMinutes 15.) if result.ExitCode <> 0 then let errors = String.Join(Environment.NewLine,result.Errors) printfn "%s" <| String.Join(Environment.NewLine,result.Messages) From 415eb1c72ec23bef8df315218223f632861387eb Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 11:34:56 +0200 Subject: [PATCH 21/43] make stuff work again --- build.fsx | 73 +++++++++++++++++-- src/app/FAKE/Program.fs | 15 +++- .../Fake.Core.BuildServer.fsproj | 2 +- .../Fake.Core.Context.fsproj | 2 +- .../Fake.Core.Environment.fsproj | 2 +- src/app/Fake.Core.Process/Process.fs | 34 ++++----- .../Fake.Core.String/Fake.Core.String.fsproj | 2 +- src/app/Fake.Runtime/Fake.Runtime.fsproj | 2 +- src/app/Fake.netcore/Fake.netcore.fsproj | 2 +- 9 files changed, 99 insertions(+), 35 deletions(-) diff --git a/build.fsx b/build.fsx index c5cf009da99..d3510ad0ecd 100644 --- a/build.fsx +++ b/build.fsx @@ -92,9 +92,17 @@ let cleanForTests () = then fileName, args else "cmd", ("/C " + fileName + " " + args) let ok = Process.execProcess (fun info -> +#if BOOTSTRAP + { info with + FileName = fileName + WorkingDirectory = workingDir + Arguments = args } +#else info.FileName <- fileName info.WorkingDirectory <- workingDir - info.Arguments <- args) System.TimeSpan.MaxValue + info.Arguments <- args +#endif + ) System.TimeSpan.MaxValue if not ok then failwith (sprintf "'%s> %s %s' task failed" workingDir fileName args) let rmdir dir = @@ -253,9 +261,16 @@ Target.Create "SetAssemblyInfo" (fun _ -> ) Target.Create "DownloadPaket" (fun _ -> - if 0 <> Process.ExecProcess (fun info -> + if 0 <> Process.ExecProcess (fun info -> +#if BOOTSTRAP + { info with + FileName = ".paket/paket.exe" + Arguments = "--version" } +#else info.FileName <- ".paket/paket.exe" - info.Arguments <- "--version") (System.TimeSpan.FromMinutes 5.0) then + info.Arguments <- "--version" +#endif + ) (System.TimeSpan.FromMinutes 5.0) then failwith "paket failed to start" ) @@ -386,14 +401,30 @@ Target.Create "BootstrapTest" (fun _ -> if Environment.isUnix then let result = Process.ExecProcess (fun info -> +#if BOOTSTRAP + { info with + FileName = "chmod" + WorkingDirectory = "." + Arguments = "+x build/FAKE.exe" } +#else info.FileName <- "chmod" info.WorkingDirectory <- "." - info.Arguments <- "+x build/FAKE.exe") span + info.Arguments <- "+x build/FAKE.exe" +#endif + ) span if result <> 0 then failwith "'chmod +x build/FAKE.exe' failed on unix" Process.ExecProcess (fun info -> +#if BOOTSTRAP + { info with + FileName = "build/FAKE.exe" + WorkingDirectory = "." + Arguments = sprintf "%s %s --fsiargs \"--define:BOOTSTRAP_NEW_BUILD\" -pd" script target } +#else info.FileName <- "build/FAKE.exe" info.WorkingDirectory <- "." - info.Arguments <- sprintf "%s %s -pd" script target) span + info.Arguments <- sprintf "%s %s -pd -fa --define:BOOTSTRAP " script target +#endif + ) span let result = executeTarget (System.TimeSpan.FromMinutes 10.0) "PrintColors" if result <> 0 then failwith "Bootstrapping failed" @@ -437,9 +468,17 @@ Target.Create "BootstrapTestDotnetCore" (fun _ -> if Environment.isUnix then "nuget/dotnetcore/Fake.netcore/current/fake" else "nuget/dotnetcore/Fake.netcore/current/fake.exe" Process.ExecProcessWithLambdas (fun info -> +#if BOOTSTRAP + { info with + FileName = fileName + WorkingDirectory = "." + Arguments = sprintf "run %s --fsiargs \"--define:BOOTSTRAP\" --target %s" script target } +#else info.FileName <- fileName info.WorkingDirectory <- "." - info.Arguments <- sprintf "run %s --target %s" script target) + info.Arguments <- sprintf "run %s --fsiargs \"--define:BOOTSTRAP\" --target %s" script target +#endif + ) timeout true (Trace.traceFAKE "%s") Trace.trace @@ -490,8 +529,15 @@ Target.Create "ILRepack" (fun _ -> let result = Process.ExecProcess (fun info -> +#if BOOTSTRAP + { info with + FileName = Directory.GetCurrentDirectory() "packages" "build" "ILRepack" "tools" "ILRepack.exe" + Arguments = sprintf "/verbose /lib:%s /ver:%s /out:%s %s" buildDir release.AssemblyVersion targetFile toPack } +#else info.FileName <- Directory.GetCurrentDirectory() "packages" "build" "ILRepack" "tools" "ILRepack.exe" - info.Arguments <- sprintf "/verbose /lib:%s /ver:%s /out:%s %s" buildDir release.AssemblyVersion targetFile toPack) (System.TimeSpan.FromMinutes 5.) + info.Arguments <- sprintf "/verbose /lib:%s /ver:%s /out:%s %s" buildDir release.AssemblyVersion targetFile toPack +#endif + ) (System.TimeSpan.FromMinutes 5.) if result <> 0 then failwithf "Error during ILRepack execution." @@ -511,7 +557,11 @@ Target.Create "CreateNuGet" (fun _ -> |> Seq.iter (fun file -> let args = { Process.Program = "lib" @@ "corflags.exe" +#if BOOTSTRAP + Process.WorkingDir = Path.GetDirectoryName file +#else Process.WorkingDirectory = Path.GetDirectoryName file +#endif Process.CommandLine = "/32BIT- /32BITPREF- " + Process.quoteIfNeeded file Process.Args = [] } printfn "%A" args @@ -839,8 +889,15 @@ let rec nugetPush tries nugetpackage = try if not <| System.String.IsNullOrEmpty apikey then Process.ExecProcess (fun info -> +#if BOOTSTRAP + { info with + FileName = nuget_exe + Arguments = sprintf "push %s %s -Source %s" (Process.toParam nugetpackage) (Process.toParam apikey) (Process.toParam nugetsource) } +#else info.FileName <- nuget_exe - info.Arguments <- sprintf "push %s %s -Source %s" (Process.toParam nugetpackage) (Process.toParam apikey) (Process.toParam nugetsource)) + info.Arguments <- sprintf "push %s %s -Source %s" (Process.toParam nugetpackage) (Process.toParam apikey) (Process.toParam nugetsource) +#endif + ) (System.TimeSpan.FromMinutes 10.) |> (fun r -> if r <> 0 then failwithf "failed to push package %s" nugetpackage) else Trace.traceFAKE "could not push '%s', because api key was not set" nugetpackage diff --git a/src/app/FAKE/Program.fs b/src/app/FAKE/Program.fs index eca6828170d..a0ff1b48733 100644 --- a/src/app/FAKE/Program.fs +++ b/src/app/FAKE/Program.fs @@ -99,11 +99,18 @@ try //TODO check for presence of --fsiargs with no args? Make attribute for UAP? //Use --fsiargs approach. - | x::xs, _, _ -> + | x::xs, maybeScript, _ -> match FsiArgs.parse (x::xs |> Array.ofList) with | Choice1Of2(fsiArgs) -> fsiArgs - | Choice2Of2(msg) -> failwith (sprintf "Unable to parse --fsiargs. %s." msg) - + | Choice2Of2(msg) -> + match maybeScript with + | Some script -> + match FsiArgs.parse ((x::xs @ [script]) |> Array.ofList) with + | Choice1Of2(fsiArgs) -> fsiArgs + | Choice2Of2(msg) -> + failwith (sprintf "Unable to parse --fsiargs. %s." msg) + | None -> + failwith (sprintf "Unable to parse --fsiargs. %s." msg) //Script path is specified. | [], Some(script), _ -> FsiArgs([], script, []) @@ -169,4 +176,4 @@ finally traceEndBuild() Console.OutputEncoding <- encodingToRestore if !TargetHelper.ExitCode.exitCode <> 0 then exit !TargetHelper.ExitCode.exitCode - if Environment.ExitCode <> 0 then exit Environment.ExitCode \ No newline at end of file + if Environment.ExitCode <> 0 then exit Environment.ExitCode diff --git a/src/app/Fake.Core.BuildServer/Fake.Core.BuildServer.fsproj b/src/app/Fake.Core.BuildServer/Fake.Core.BuildServer.fsproj index 706a2a4455f..9695923ebf3 100644 --- a/src/app/Fake.Core.BuildServer/Fake.Core.BuildServer.fsproj +++ b/src/app/Fake.Core.BuildServer/Fake.Core.BuildServer.fsproj @@ -1,4 +1,4 @@ - + 1.0.0-alpha-10 net46;netstandard1.6;netstandard2.0 diff --git a/src/app/Fake.Core.Context/Fake.Core.Context.fsproj b/src/app/Fake.Core.Context/Fake.Core.Context.fsproj index f1a8874e452..dc5ab482088 100644 --- a/src/app/Fake.Core.Context/Fake.Core.Context.fsproj +++ b/src/app/Fake.Core.Context/Fake.Core.Context.fsproj @@ -1,4 +1,4 @@ - + net46;netstandard1.6;netstandard2.0 pdbonly diff --git a/src/app/Fake.Core.Environment/Fake.Core.Environment.fsproj b/src/app/Fake.Core.Environment/Fake.Core.Environment.fsproj index a7fce25cd72..f5e7eeee132 100644 --- a/src/app/Fake.Core.Environment/Fake.Core.Environment.fsproj +++ b/src/app/Fake.Core.Environment/Fake.Core.Environment.fsproj @@ -1,4 +1,4 @@ - + 1.0.0-alpha-10 net46;netstandard1.6;netstandard2.0 diff --git a/src/app/Fake.Core.Process/Process.fs b/src/app/Fake.Core.Process/Process.fs index 4583b24175c..56bd3005319 100644 --- a/src/app/Fake.Core.Process/Process.fs +++ b/src/app/Fake.Core.Process/Process.fs @@ -234,17 +234,18 @@ type ProcStartInfo = p.ErrorDialogParentHandle <- x.ErrorDialogParentHandle #endif p.LoadUserProfile <- x.LoadUserProfile + + if not (isNull x.Password) then #if FX_PASSWORD_CLEAR_TEXT - p.PasswordInClearText <- x.Password + p.PasswordInClearText <- x.Password #else #if FX_PASSWORD - p.Password <- - let sec = new System.Security.SecureString() - x.Password |> Seq.iter (sec.AppendChar) - sec.MakeReadOnly() - sec + p.Password <- + let sec = new System.Security.SecureString() + x.Password |> Seq.iter (sec.AppendChar) + sec.MakeReadOnly() + sec #else - if not (isNull x.Password) then failwithf "Password for starting a process was set but with this compiled binary neither ProcessStartInfo.Password nor ProcessStartInfo.PasswordInClearText was available." #endif #endif @@ -617,7 +618,7 @@ type ExecParams = { /// The path to the executable, without arguments. Program : string /// The working directory for the program. Defaults to "". - WorkingDirectory : string + WorkingDir : string /// Command-line parameters in a string. CommandLine : string /// Command-line argument pairs. The value will be quoted if it contains @@ -625,13 +626,12 @@ type ExecParams = /// If the key ends in a letter or number, a space will be inserted between /// the key and the value. Args : (string * string) list } - -/// Default parameters for process execution. -let defaultParams = - { Program = "" - WorkingDirectory = "" - CommandLine = "" - Args = [] } + /// Default parameters for process execution. + static member Empty = + { Program = "" + WorkingDir = "" + CommandLine = "" + Args = [] } let private formatArgs args = let delimit (str : string) = @@ -658,7 +658,7 @@ let asyncShellExec (args : ExecParams) = #else CreateNoWindow = true, #endif - WorkingDirectory = args.WorkingDirectory, + WorkingDirectory = args.WorkingDir, Arguments = commandLine) use proc = new Process(StartInfo = info) proc.ErrorDataReceived.Add(fun e -> @@ -731,7 +731,7 @@ type Shell() = static member private GetParams(cmd, ?args, ?dir) = let args = defaultArg args "" let dir = defaultArg dir (Directory.GetCurrentDirectory()) - { WorkingDirectory = dir + { WorkingDir = dir Program = cmd CommandLine = args Args = [] } diff --git a/src/app/Fake.Core.String/Fake.Core.String.fsproj b/src/app/Fake.Core.String/Fake.Core.String.fsproj index dfff59882c3..f551233b138 100644 --- a/src/app/Fake.Core.String/Fake.Core.String.fsproj +++ b/src/app/Fake.Core.String/Fake.Core.String.fsproj @@ -1,4 +1,4 @@ - + 1.0.0-alpha-10 net46;netstandard1.6;netstandard2.0 diff --git a/src/app/Fake.Runtime/Fake.Runtime.fsproj b/src/app/Fake.Runtime/Fake.Runtime.fsproj index 7531e0dcb54..b8274c60fd1 100644 --- a/src/app/Fake.Runtime/Fake.Runtime.fsproj +++ b/src/app/Fake.Runtime/Fake.Runtime.fsproj @@ -1,4 +1,4 @@ - + netstandard1.6;netstandard2.0 $(DefineConstants);CORE_CLR;DOTNETCORE;EXPLICIT_DEPENDENCIES;NETSTANDARD diff --git a/src/app/Fake.netcore/Fake.netcore.fsproj b/src/app/Fake.netcore/Fake.netcore.fsproj index 1ab59e0b00e..fc606db3891 100644 --- a/src/app/Fake.netcore/Fake.netcore.fsproj +++ b/src/app/Fake.netcore/Fake.netcore.fsproj @@ -1,4 +1,4 @@ - + 1.0.0-alpha-10 netcoreapp2.0 From 1e75d2de2a9c53f669f9ee2f4e4414df06df32dd Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 12:11:27 +0200 Subject: [PATCH 22/43] downgrade to alpha again --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f55eac88881..5c298fc4a23 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ addons: - libunwind8 before_script: - - wget https://github.com/fsharp/FAKE/releases/download/5.0.0-beta005/fake-dotnetcore-ubuntu.14.04-x64.zip -O /tmp/fake-dotnetcore-ubuntu.14.04-x64.zip + - wget https://github.com/fsharp/FAKE/releases/download/5.0.0-alpha018/fake-dotnetcore-ubuntu.14.04-x64.zip -O /tmp/fake-dotnetcore-ubuntu.14.04-x64.zip - mkdir fake-dotnetcore - unzip /tmp/fake-dotnetcore-ubuntu.14.04-x64.zip -d fake-dotnetcore || echo unzip returned $? - export PATH=$PATH:$PWD/fake-dotnetcore/ From d72f5cf433f072cdb6f763603878b9493fe093d1 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 13:16:17 +0200 Subject: [PATCH 23/43] release notes & paket update --- RELEASE_NOTES.md | 4 + paket.lock | 2280 +++++++++-------- src/app/FAKE/FAKE.fsproj | 149 +- .../Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj | 154 +- src/app/Fake.Deploy/Fake.Deploy.fsproj | 161 +- .../Fake.Experimental.fsproj | 145 +- .../Fake.FluentMigrator.fsproj | 138 +- src/app/Fake.Gallio/Fake.Gallio.fsproj | 145 +- src/app/Fake.IIS/Fake.IIS.fsproj | 138 +- src/app/Fake.SQL/Fake.SQL.fsproj | 145 +- src/app/FakeLib/FakeLib.fsproj | 185 +- .../Fake.Deploy.Web.Abstractions.fsproj | 138 +- .../Fake.Deploy.Web.File.fsproj | 142 +- .../Fake.Deploy.Web.RavenDb.fsproj | 138 +- .../Fake.Deploy.Web/Fake.Deploy.Web.fsproj | 164 +- .../Fake.Core.IntegrationTests.fsproj | 142 +- src/test/FsCheck.Fake/FsCheck.Fake.fsproj | 159 +- .../ProjectTestFiles/CSharpApp.csproj | 153 +- .../ProjectTestFiles/FakeLib.fsproj | 145 +- .../ProjectTestFiles/FakeLib2.csproj | 145 +- .../ProjectTestFiles/FakeLib2.fsproj | 145 +- .../ProjectTestFiles/FakeLib3.csproj | 145 +- .../ProjectTestFiles/FakeLib3.fsproj | 145 +- .../ProjectTestFiles/FakeLib4.fsproj | 145 +- .../ProjectTestFiles/FakeLib5.fsproj | 145 +- .../ProjectTestFiles/FakeLib6.fsproj | 145 +- src/test/Test.FAKECore/Test.FAKECore.csproj | 153 +- .../TestData/fake_no_template.csproj | 153 +- .../Test.Fake.Deploy.Web.File.fsproj | 152 +- .../Test.Fake.Deploy.Web.fsproj | 155 +- .../Test.Fake.Deploy/Test.Fake.Deploy.csproj | 161 +- src/test/Test.Git/Test.Git.csproj | 153 +- 32 files changed, 1375 insertions(+), 5392 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index e4ce5a6884c..441de575978 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,7 @@ +#### 5.0.0-beta006 - 2017-10-22 +* BUGFIX: Add `Process.withFramework` to indicate that a process might need to be started with mono and use it in kown wrappers like test-runners - https://github.com/fsharp/FAKE/pull/1697 +* DOCS: Typo (https://github.com/fsharp/FAKE/pull/1701), Canopy docs (https://github.com/fsharp/FAKE/pull/1704), some Urls (https://github.com/fsharp/FAKE/pull/1708) + #### 5.0.0-beta005 - 2017-10-02 * ENHANCEMENT: Improve error messages of Fake.Core.Process - https://github.com/fsharp/FAKE/pull/1696 * BUGFIX: `fake --version` was printing the wrong version - https://github.com/fsharp/FAKE/pull/1696 diff --git a/paket.lock b/paket.lock index 36678605ced..77bc53f135a 100644 --- a/paket.lock +++ b/paket.lock @@ -28,45 +28,45 @@ NUGET xunit.abstractions (>= 2.0.1) - restriction: >= netstandard1.6 xunit.core (>= 2.2) - restriction: >= netstandard1.6 xunit.extensibility.execution (>= 2.2 < 3.0) - restriction: < netstandard1.6 - FSharp.Compiler.Service (14.0.2) - content: none - FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - System.Collections.Immutable (>= 1.2) - restriction: >= net45 - System.Collections.Immutable (>= 1.3) - restriction: >= netstandard1.6 - System.Diagnostics.Process (>= 4.1) - restriction: >= netstandard1.6 - System.Diagnostics.TraceSource (>= 4.0) - restriction: >= netstandard1.6 - System.Reflection.Emit (>= 4.3) - restriction: >= netstandard1.6 - System.Reflection.Metadata (>= 1.4.1) - restriction: >= netstandard1.6 + FSharp.Compiler.Service (16.0.2) - content: none + FSharp.Core (>= 4.1.18) - restriction: && (< net45) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.6) + System.Collections.Immutable (>= 1.3) - restriction: && (< net45) (>= netstandard1.6) + System.Collections.Immutable (>= 1.3.1) - restriction: >= net45 + System.Diagnostics.Process (>= 4.1) - restriction: && (< net45) (>= netstandard1.6) + System.Diagnostics.TraceSource (>= 4.0) - restriction: && (< net45) (>= netstandard1.6) + System.Reflection.Emit (>= 4.3) - restriction: && (< net45) (>= netstandard1.6) + System.Reflection.Metadata (>= 1.4.1) - restriction: && (< net45) (>= netstandard1.6) System.Reflection.Metadata (>= 1.4.2) - restriction: >= net45 - System.Reflection.TypeExtensions (>= 4.3) - restriction: >= netstandard1.6 - System.Runtime.Loader (>= 4.0) - restriction: >= netstandard1.6 - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.6 - System.ValueTuple (>= 4.4) - restriction: >= netstandard1.6 - FSharp.Compiler.Tools (4.1.23) - restriction: < netstandard1.6 + System.Reflection.TypeExtensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.6) + System.Runtime.Loader (>= 4.0) - restriction: && (< net45) (>= netstandard1.6) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< net45) (>= netstandard1.6) + System.ValueTuple (>= 4.4) - restriction: && (< net45) (>= netstandard1.6) + FSharp.Compiler.Tools (4.1.27) - restriction: < netstandard1.6 FSharp.Core (4.1.18) - redirects: force - System.Collections (>= 4.0.11) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Console (>= 4.0) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Diagnostics.Debug (>= 4.0.11) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Diagnostics.Tools (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Globalization (>= 4.0.11) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.IO (>= 4.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Linq (>= 4.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Linq.Expressions (>= 4.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Linq.Queryable (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Net.Requests (>= 4.0.11) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Reflection (>= 4.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Reflection.Extensions (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Resources.ResourceManager (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Runtime (>= 4.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Runtime.Extensions (>= 4.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Runtime.Numerics (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Text.RegularExpressions (>= 4.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Threading (>= 4.0.11) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Threading.Tasks (>= 4.0.11) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Threading.Thread (>= 4.0) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Threading.ThreadPool (>= 4.0.10) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Threading.Timer (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) + System.Collections (>= 4.0.11) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Console (>= 4.0) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Diagnostics.Debug (>= 4.0.11) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Diagnostics.Tools (>= 4.0.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Globalization (>= 4.0.11) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.IO (>= 4.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Linq (>= 4.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Linq.Expressions (>= 4.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Linq.Queryable (>= 4.0.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Net.Requests (>= 4.0.11) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Reflection (>= 4.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Reflection.Extensions (>= 4.0.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Resources.ResourceManager (>= 4.0.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Runtime (>= 4.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Runtime.Extensions (>= 4.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Runtime.Numerics (>= 4.0.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Text.RegularExpressions (>= 4.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Threading (>= 4.0.11) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Threading.Tasks (>= 4.0.11) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Threading.Thread (>= 4.0) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Threading.ThreadPool (>= 4.0.10) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Threading.Timer (>= 4.0.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) HashLib (2.0.1) jQuery (3.2.1) Knockout (0.0.1) @@ -100,20 +100,20 @@ NUGET System.Runtime.Extensions (>= 4.1) - restriction: && (< net45) (>= netstandard1.3) System.Runtime.InteropServices (>= 4.1) - restriction: && (< net45) (>= netstandard1.3) System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: && (< net45) (>= netstandard1.3) - Microsoft.NETCore.Platforms (2.0) - restriction: || (>= dnxcore50) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= monoandroid) (< netstandard1.0)) (&& (>= monoandroid) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) (>= uap10.0) - Microsoft.NETCore.Targets (2.0) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< win81) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (>= netcoreapp1.1) (&& (< netstandard1.1) (>= uap10.0) (< win8)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) + Microsoft.NETCore.Platforms (2.0) - restriction: || (>= dnxcore50) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (>= net461) (< netstandard1.3)) (&& (>= monoandroid) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= monoandroid) (< netstandard1.0)) (&& (>= monoandroid) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.0)) (&& (>= monoandroid) (< portable-net45+win8+wp8+wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (>= monotouch) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net461)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wp8+wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wp8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.6)) (&& (< net20) (>= netstandard2.0)) (&& (< net35) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.5)) (&& (>= net45) (< netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (>= net45) (< portable-net45+win8+wp8+wpa81)) (&& (>= net45) (< portable-net45+win8+wpa81)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.6)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net461) (< netstandard2.0)) (>= netcoreapp1.1) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wp8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) + Microsoft.NETCore.Targets (2.0) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< win81) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) (&& (< netstandard1.1) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.Web.Administration (7.0) Microsoft.Web.Infrastructure (1.0) Microsoft.Web.Xdt (2.1.1) - Microsoft.Win32.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< netstandard2.0) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.Win32.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - Microsoft.Win32.Registry (4.4) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.Win32.Registry (4.4) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.AccessControl (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - System.Security.Principal.Windows (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) + System.Security.AccessControl (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) + System.Security.Principal.Windows (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) Mono.Cecil (0.10.0-beta6) System.Collections (>= 4.0.11) - restriction: && (< net35) (>= netstandard1.3) System.IO.FileSystem (>= 4.0.1) - restriction: && (< net35) (>= netstandard1.3) @@ -143,51 +143,51 @@ NUGET Microsoft.AspNet.Razor - restriction: < net40 Microsoft.AspNet.Razor (>= 2.0.30506) - restriction: >= net40 Nancy (>= 1.4.3) - NETStandard.Library (2.0) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.1) (&& (>= netstandard1.6) (< netstandard2.0) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= monoandroid) (< netstandard1.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) (>= uap10.0) - Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.AppContext (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Console (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.IO.Compression (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Net.Http (>= 4.3.2) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Net.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Net.Sockets (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.ObjectModel (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Threading.Timer (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= uap10.0) (< uap10.1)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + NETStandard.Library (2.0.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard1.1)) (&& (< net452) (>= netstandard1.1)) (>= netstandard1.6) (>= uap10.0) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.AppContext (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= uap10.0) + System.Console (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= uap10.0) + System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.IO.Compression (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Net.Http (>= 4.3.2) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Net.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Net.Sockets (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.ObjectModel (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= uap10.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= uap10.0) + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= uap10.0) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= uap10.0) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Threading.Timer (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= uap10.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Xml.XDocument (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) Newtonsoft.Json (10.0.3) - redirects: force Microsoft.CSharp (>= 4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) NETStandard.Library (>= 1.6.1) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) @@ -200,9 +200,9 @@ NUGET Nuget.Core (2.14) Microsoft.Web.Xdt (>= 2.1) NUnit (3.8.1) - NETStandard.Library (>= 1.6) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3)) (>= netstandard1.6) (>= uap10.0) - System.Runtime.Loader (>= 4.3) - restriction: && (>= netstandard1.6) (< xamarinios) - System.Threading.Thread (>= 4.3) - restriction: && (>= netstandard1.6) (< xamarinios) + NETStandard.Library (>= 1.6) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.6)) (&& (< net20) (>= netstandard1.6)) (>= uap10.0) (>= xamarinios) + System.Runtime.Loader (>= 4.3) - restriction: && (< net20) (>= netstandard1.6) (< xamarinios) + System.Threading.Thread (>= 4.3) - restriction: && (< net20) (>= netstandard1.6) (< xamarinios) NUnit.Console (3.7) NUnit.ConsoleRunner (>= 3.7) NUnit.Extension.NUnitProjectLoader (>= 3.5) @@ -216,9 +216,9 @@ NUGET NUnit.Extension.NUnitV2ResultWriter (3.6) NUnit.Extension.TeamCityEventListener (1.0.2) NUnit.Extension.VSProjectLoader (3.6) - Octokit (0.26) + Octokit (0.27) NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.1) - Paket.Core (5.101) + Paket.Core (5.119.7) Chessie (>= 0.6) FSharp.Compiler.Tools - restriction: < netstandard1.6 FSharp.Core - restriction: < netstandard1.6 @@ -236,21 +236,21 @@ NUGET RavenDB.Client (2.5.25023) Microsoft.CompilerServices.AsyncTargetingPack (>= 1.0) - restriction: < net45 RavenDB.Server (3.5.4) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.native.System (4.3) - restriction: || (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (>= uap10.0) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (>= uap10.0) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (>= uap10.0) + runtime.native.System (4.3) - restriction: || (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.IO.Compression (4.3.1) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) + runtime.native.System.IO.Compression (4.3.1) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1.1) - runtime.native.System.Net.Http (4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Net.Http (4.3) - restriction: && (< 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.1) - content: none, restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (>= uap10.0) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) @@ -261,19 +261,19 @@ NUGET runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (>= uap10.0) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (>= uap10.0) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (>= uap10.0) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (>= uap10.0) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (>= uap10.0) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (>= uap10.0) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (>= uap10.0) Serilog (1.5.14) serilog.sinks.nlog (1.5.4) NLog (>= 3.0) Serilog (>= 1.4.204 < 2.0) - SSH.NET (2016.0) + SSH.NET (2016.1) Microsoft.CSharp (>= 4.0.1) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) SshNet.Security.Cryptography (1.2) - restriction: || (&& (< net35) (>= netstandard1.3)) (>= sl4) (>= uap10.0) (>= wp71) System.Diagnostics.Debug (>= 4.0.11) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) @@ -299,19 +299,19 @@ NUGET SshNet.Security.Cryptography (1.2) - restriction: || (&& (< net35) (>= netstandard1.3)) (>= sl4) (>= uap10.0) (>= wp71) System.IO (>= 4.1) - restriction: || (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp71)) (&& (< net20) (>= netstandard1.3)) (>= uap10.0) System.Security.Cryptography.Primitives (>= 4.0) - restriction: || (&& (< net20) (>= netstandard1.3)) (>= uap10.0) - System.AppContext (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Buffers (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.AppContext (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Buffers (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= uap10.0) System.Diagnostics.Debug (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Diagnostics.Tracing (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) - System.Collections (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< xamarinmac)) (>= uap10.0) + System.Collections (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Collections.Concurrent (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Collections.Concurrent (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= uap10.0) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -361,17 +361,17 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Console (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Console (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Debug (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Diagnostics.Debug (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Collections (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac) System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) @@ -411,7 +411,7 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Thread (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.ThreadPool (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Tools (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Diagnostics.Tools (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -425,7 +425,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Tracing (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Diagnostics.Tracing (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -444,29 +444,29 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< xamarinmac)) (>= uap10.0) + System.Globalization (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization.Calendars (4.3) - redirects: force, restriction: || (>= dnxcore50) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Globalization.Calendars (4.3) - redirects: force, restriction: || (>= dnxcore50) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Globalization.Extensions (4.3) - restriction: || (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) + System.Globalization.Extensions (4.3) - restriction: || (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (< net46) (>= net461)) (&& (>= net461) (>= netstandard1.6)) (>= net463) (&& (>= netstandard1.0) (>= sl4)) (&& (>= netstandard1.3) (>= sl4)) (&& (>= netstandard1.3) (>= wp71)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< xamarinmac)) (>= uap10.0) + System.IO (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net46) (>= netstandard1.6)) (&& (< net35) (>= net46) (< netstandard2.0)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net46) (>= net461) (< netstandard1.4)) (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (< net46) (>= net461) (< netstandard1.6)) (>= net463) (&& (>= netstandard1.0) (>= sl4)) (&& (>= netstandard1.3) (>= sl4)) (&& (>= netstandard1.3) (>= wp71)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO.Compression (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.IO.Compression (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.IO.Compression (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -482,7 +482,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO.Compression.ZipFile (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.IO.Compression.ZipFile (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) System.Buffers (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO.Compression (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -492,7 +492,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.IO.FileSystem (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -501,33 +501,33 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net20) (>= net46) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net20) (>= net46) (>= netstandard1.5) (< netstandard1.6)) (&& (< net20) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Linq (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Linq.Expressions (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.ObjectModel (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.Emit (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Linq.Queryable (4.3) - redirects: force, restriction: && (>= netstandard1.6) (< xamarinmac) + System.Linq (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq.Expressions (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.ObjectModel (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq.Queryable (4.3) - redirects: force, restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -537,36 +537,36 @@ NUGET System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Net.Http (4.3.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81) - runtime.native.System (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization.Extensions (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization.Extensions (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.IO.Compression (>= 4.3) - restriction: && (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81) - System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Net.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Net.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.WindowsRuntime (>= 4.3) - restriction: >= dnxcore50 - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) - System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Text.Encoding.Extensions (>= 4.3) - restriction: >= dnxcore50 - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Net.NameResolution (4.3) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -582,12 +582,12 @@ NUGET System.Security.Principal.Windows (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Primitives (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Net.Primitives (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Requests (4.3) - redirects: force, restriction: && (>= netstandard1.6) (< xamarinmac) + System.Net.Requests (4.3) - redirects: force, restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -601,46 +601,46 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Sockets (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Net.Sockets (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Net.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Net.WebHeaderCollection (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.WebHeaderCollection (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.ObjectModel (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.ObjectModel (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection (4.3) - redirects: force, restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (>= netcoreapp1.1) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Reflection (4.3) - redirects: force, restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.Emit (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netstandard1.6) + System.Reflection.Emit (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.6)) System.IO (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Emit.ILGeneration (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit.ILGeneration (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Emit.Lightweight (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit.Lightweight (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Extensions (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= net45)) (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Reflection.Extensions (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= net45)) (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -648,39 +648,39 @@ NUGET System.Reflection.Metadata (1.5) - content: none, restriction: || (>= net45) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (>= netstandard1.1) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections.Immutable (>= 1.4) - restriction: || (&& (>= monoandroid) (< netstandard1.1)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8)) (>= monotouch) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.1) (< netstandard2.0)) (&& (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - System.Reflection.Primitives (4.3) - redirects: force, restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Reflection.Primitives (4.3) - redirects: force, restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.TypeExtensions (4.4) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.3)) (>= netstandard1.6) + System.Reflection.TypeExtensions (4.4) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6)) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< xamarinmac)) (>= uap10.0) + System.Resources.ResourceManager (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net45) (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46) (>= netstandard1.4)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net462)) (&& (>= net46) (>= netstandard1.6)) (&& (< net46) (>= net461)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net462) (>= netstandard1.6)) (>= net463) (>= netcoreapp1.1) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< xamarinmac)) (>= uap10.0) + System.Runtime (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net45) (>= net462) (< netstandard1.6)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net46) (>= net461) (< netstandard1.4)) (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (< net46) (>= net461) (< netstandard1.6)) (>= net463) (>= netcoreapp1.1) (&& (< netstandard1.1) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< xamarinmac)) (>= uap10.0) + System.Runtime.Extensions (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Runtime.Handles (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.InteropServices (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Runtime.InteropServices (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net462) (>= netcoreapp1.1) System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) - System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (>= dnxcore50) (>= net45)) (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0) (>= portable-net45+win8+wpa81)) (&& (>= dnxcore50) (>= netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.0) (< portable-net451+win81+wpa81)) (&& (>= monoandroid) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (>= dnxcore50) (>= net45)) (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0) (>= portable-net45+win8+wpa81)) (&& (>= dnxcore50) (>= netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.0) (< portable-net451+win81+wpa81)) (&& (>= monoandroid) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net45) (< netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= uap10.0) runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -688,11 +688,11 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Loader (4.3) - restriction: >= netstandard1.6 + System.Runtime.Loader (4.3) - restriction: || (&& (< net20) (>= netstandard1.6) (< xamarinios)) (&& (< net45) (>= netstandard1.6)) System.IO (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Numerics (4.3) - redirects: force, restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.Numerics (4.3) - redirects: force, restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= uap10.0) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -707,10 +707,10 @@ NUGET System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.WindowsRuntime (4.3) - restriction: >= dnxcore50 - System.Security.AccessControl (4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= netstandard2.0) + System.Security.AccessControl (4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (< net46) (>= netstandard2.0)) (>= netcoreapp2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.Security.Principal.Windows (>= 4.4) - restriction: || (>= monoandroid) (>= netstandard1.3) - System.Security.Claims (4.3) - restriction: || (&& (< monotouch) (< net35) (>= netstandard1.3) (< netstandard2.0) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46)) + System.Security.Principal.Windows (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (&& (>= net46) (< netstandard2.0)) (&& (< net46) (>= netstandard1.3) (< netstandard2.0)) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) + System.Security.Claims (4.3) - restriction: || (&& (< monotouch) (< net35) (>= netstandard1.3) (< netstandard2.0) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46) (< netstandard2.0)) System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -718,34 +718,34 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Principal (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Algorithms (4.3) - content: none, restriction: || (>= dnxcore50) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) - System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Cng (4.4) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) + System.Security.Cryptography.Algorithms (4.3) - content: none, restriction: || (>= dnxcore50) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netstandard1.6) (>= uap10.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.6)) (>= net463) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Cng (4.4) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Csp (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Csp (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= netstandard1.3)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -759,7 +759,7 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (4.3) - restriction: || (>= dnxcore50) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (>= net461) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Encoding (4.3) - restriction: || (>= dnxcore50) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net35) (>= net46) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (>= net463) (>= netstandard1.6)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -772,21 +772,21 @@ NUGET System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.OpenSsl (4.4) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.OpenSsl (4.4) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.Collections (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Primitives (4.3) - restriction: || (>= dnxcore50) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net35) (>= net46)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (>= net461) (&& (>= netstandard1.3) (>= sl4)) (&& (>= netstandard1.3) (>= wp71)) (&& (< netstandard1.3) (>= netstandard1.6)) (>= uap10.0) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (4.3) - restriction: || (>= dnxcore50) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net461) (< netstandard1.3)) (&& (< net20) (>= net461) (< netstandard1.5)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net35) (>= net46)) (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (>= net461) (< netstandard1.4)) (&& (>= net461) (< netstandard1.6)) (>= net463) (&& (>= netstandard1.3) (>= sl4)) (&& (>= netstandard1.3) (>= wp71)) (>= uap10.0) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -796,35 +796,35 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.ProtectedData (4.4) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.X509Certificates (4.3.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.native.System (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) - System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Csp (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Principal (4.3) - restriction: || (&& (< monotouch) (< net35) (>= netstandard1.3) (< netstandard2.0) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46)) + System.Security.Cryptography.X509Certificates (4.3.1) - restriction: || (>= dnxcore50) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (>= net46) (>= uap10.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) + System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Csp (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Principal (4.3) - restriction: || (&& (< monotouch) (< net35) (>= netstandard1.3) (< netstandard2.0) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46) (< netstandard2.0)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Principal.Windows (4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netstandard1.6)) (>= netstandard2.0) + System.Security.Principal.Windows (4.4) - restriction: || (&& (>= monoandroid) (>= monotouch) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.0)) (&& (>= monoandroid) (< netstandard1.3) (>= xamarinios)) (&& (>= monoandroid) (< netstandard1.3) (>= xamarinmac)) (&& (>= monoandroid) (< netstandard1.3) (>= xamarintvos)) (&& (>= monoandroid) (< netstandard1.3) (>= xamarinwatchos)) (&& (>= monotouch) (>= net461)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (< net46) (>= netstandard2.0)) (&& (>= net461) (>= xamarinios)) (&& (>= net461) (>= xamarinmac)) (&& (>= net461) (>= xamarintvos)) (&& (>= net461) (>= xamarinwatchos)) (>= netcoreapp2.0) (&& (>= netstandard2.0) (>= xamarinios)) (&& (>= netstandard2.0) (>= xamarinmac)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -835,34 +835,34 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Claims (>= 4.3) - restriction: || (&& (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< net461)) + System.Security.Claims (>= 4.3) - restriction: || (&& (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< net461) (< netstandard2.0)) System.Security.Principal (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Text.Encoding (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Text.Encoding (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Text.Encoding.Extensions (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) - System.Text.RegularExpressions (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< xamarinmac)) (>= uap10.0) + System.Text.Encoding.Extensions (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Text.RegularExpressions (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading.Tasks (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Threading.Tasks (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net45) (>= net46) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading.Tasks.Extensions (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Threading.Tasks.Extensions (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Threading.Tasks (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) - System.Threading.Tasks.Parallel (4.3) - redirects: force, restriction: && (>= netstandard1.6) (< xamarinmac) + System.Threading.Tasks.Parallel (4.3) - redirects: force, restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) System.Collections.Concurrent (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -871,19 +871,19 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading.Thread (4.3) - restriction: || (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (>= netstandard1.6) (< xamarinios)) (&& (>= netstandard1.6) (< xamarinmac)) + System.Threading.Thread (4.3) - restriction: || (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.6) (< xamarinios)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.ThreadPool (4.3) - redirects: force, restriction: || (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) + System.Threading.ThreadPool (4.3) - redirects: force, restriction: || (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.Timer (4.3) - redirects: force, restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Threading.Timer (4.3) - redirects: force, restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.ValueTuple (4.4) - content: none, restriction: >= netstandard1.6 + System.ValueTuple (4.4) - content: none, restriction: && (< net45) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net461) (>= netstandard1.0) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Web.Razor.Unofficial (2.0.2) - System.Xml.ReaderWriter (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= monoandroid) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= uap10.0) + System.Xml.ReaderWriter (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= monoandroid) (>= net46) (< netstandard1.3)) (&& (>= monoandroid) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= monoandroid) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net45) (< portable-net45+win8+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -899,7 +899,7 @@ NUGET System.Text.RegularExpressions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Xml.XDocument (4.3) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) + System.Xml.XDocument (4.3) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (>= netstandard1.6) (>= uap10.0) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Tools (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -957,23 +957,25 @@ NUGET toastr (2.1.1) jQuery (>= 1.6.3) Unquote (3.2) - xunit (2.2) - xunit.assert (2.2) - xunit.core (2.2) + xunit (2.3) + xunit.analyzers (>= 0.7) + xunit.assert (2.3) + xunit.core (2.3) xunit.abstractions (2.0.1) - restriction: >= netstandard1.1 NETStandard.Library (>= 1.6) - restriction: && (< net35) (>= netstandard1.0) - xunit.assert (2.2) - NETStandard.Library (>= 1.6) - restriction: && (< net452) (>= netstandard1.1) - xunit.core (2.2) - xunit.extensibility.core (2.2) - xunit.extensibility.execution (2.2) - xunit.extensibility.core (2.2) - NETStandard.Library (>= 1.6) - restriction: && (< net452) (>= netstandard1.1) + xunit.analyzers (0.7) + xunit.assert (2.3) + NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.1) + xunit.core (2.3) + xunit.extensibility.core (2.3) + xunit.extensibility.execution (2.3) + xunit.extensibility.core (2.3) + NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.1) xunit.abstractions (>= 2.0.1) - restriction: >= netstandard1.1 - xunit.extensibility.execution (2.2) - NETStandard.Library (>= 1.6) - restriction: && (< net452) (>= netstandard1.1) - xunit.extensibility.core (2.2) - restriction: >= netstandard1.1 - xunit.runner.console (2.2) + xunit.extensibility.execution (2.3) + NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.1) + xunit.extensibility.core (2.3) - restriction: >= netstandard1.1 + xunit.runner.console (2.3) GITHUB remote: matthid/Yaaf.FSharp.Scripting src/source/Yaaf.FSharp.Scripting/YaafFSharpScripting.fs (cb0ca0f74e3f7356b88c5fd4246b0a4dbd2624eb) @@ -981,7 +983,7 @@ GROUP Build CONTENT: NONE NUGET remote: https://api.nuget.org/v3/index.json - FAKE (5.0.0-beta004) + FAKE (5.0.0-beta005) FSharp.Compiler.Service (13.0) FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 Microsoft.DiaSymReader (>= 1.1) - restriction: >= netstandard1.6 @@ -1022,29 +1024,29 @@ NUGET System.Threading (>= 4.3) - restriction: >= netstandard1.6 System.Threading.Tasks (>= 4.3) - restriction: >= netstandard1.6 FSharp.Core (4.1.18) - System.Collections (>= 4.0.11) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Console (>= 4.0) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Diagnostics.Debug (>= 4.0.11) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Diagnostics.Tools (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Globalization (>= 4.0.11) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.IO (>= 4.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Linq (>= 4.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Linq.Expressions (>= 4.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Linq.Queryable (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Net.Requests (>= 4.0.11) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Reflection (>= 4.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Reflection.Extensions (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Resources.ResourceManager (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Runtime (>= 4.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Runtime.Extensions (>= 4.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Runtime.Numerics (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Text.RegularExpressions (>= 4.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Threading (>= 4.0.11) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Threading.Tasks (>= 4.0.11) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Threading.Thread (>= 4.0) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Threading.ThreadPool (>= 4.0.10) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Threading.Timer (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) + System.Collections (>= 4.0.11) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Console (>= 4.0) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Diagnostics.Debug (>= 4.0.11) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Diagnostics.Tools (>= 4.0.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Globalization (>= 4.0.11) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.IO (>= 4.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Linq (>= 4.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Linq.Expressions (>= 4.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Linq.Queryable (>= 4.0.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Net.Requests (>= 4.0.11) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Reflection (>= 4.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Reflection.Extensions (>= 4.0.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Resources.ResourceManager (>= 4.0.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Runtime (>= 4.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Runtime.Extensions (>= 4.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Runtime.Numerics (>= 4.0.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Text.RegularExpressions (>= 4.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Threading (>= 4.0.11) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Threading.Tasks (>= 4.0.11) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Threading.Thread (>= 4.0) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Threading.ThreadPool (>= 4.0.10) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Threading.Timer (>= 4.0.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) ILRepack (2.0.13) Microsoft.AspNet.Razor (3.2.3) Microsoft.DiaSymReader (1.1) - restriction: >= netstandard1.6 @@ -1067,80 +1069,80 @@ NUGET System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.1 System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.1 System.Threading (>= 4.3) - restriction: >= netstandard1.1 - Microsoft.NETCore.Platforms (2.0) - content: none, restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net462)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= monoandroid) (< netstandard1.0) (>= netstandard1.1)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net451) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net462)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (>= netcoreapp1.1) (< netstandard1.2)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) - Microsoft.NETCore.Targets (2.0) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net462)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win81) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.2)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net462)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.1)) (&& (>= net462) (>= uap10.0)) (&& (>= net463) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netstandard1.2)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.1) (>= uap10.0) (< win8)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) - Microsoft.Win32.Primitives (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (2.0) - content: none, restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net462)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= monoandroid) (< netstandard1.0) (>= netstandard1.1)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net451) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net461)) (&& (< net45) (>= net462)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< netstandard1.2)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wp8+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wp8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) + Microsoft.NETCore.Targets (2.0) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net462)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win81) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.2)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net462)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.1)) (&& (>= netcoreapp1.1) (< netstandard1.2)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) + Microsoft.Win32.Primitives (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - Microsoft.Win32.Registry (4.4) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.Win32.Registry (4.4) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.AccessControl (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - System.Security.Principal.Windows (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - NETStandard.Library (2.0) - content: none, restriction: || (&& (< monotouch) (>= netstandard1.1) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1)) (&& (>= netstandard1.0) (< netstandard2.0) (< xamarinmac)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= monoandroid) (< netstandard1.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) (>= uap10.0) - Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.AppContext (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Console (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.IO.Compression (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Net.Http (>= 4.3.2) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Net.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Net.Sockets (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.ObjectModel (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Threading.Timer (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= uap10.0) (< uap10.1)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Security.AccessControl (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) + System.Security.Principal.Windows (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) + NETStandard.Library (2.0.1) - content: none, restriction: || (&& (< monotouch) (>= netstandard1.1) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1)) (&& (>= netstandard1.0) (< netstandard2.0) (< xamarinmac)) (>= netstandard1.6) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.AppContext (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= uap10.0) + System.Console (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= uap10.0) + System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.IO.Compression (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Net.Http (>= 4.3.2) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Net.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Net.Sockets (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.ObjectModel (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= uap10.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= uap10.0) + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= uap10.0) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= uap10.0) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Threading.Timer (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= uap10.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Xml.XDocument (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) Nuget.CommandLine (4.3) - Octokit (0.26) - content: none + Octokit (0.27) - content: none NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.1) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= uap10.0) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= uap10.0) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= uap10.0) runtime.native.System (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (>= netstandard1.6) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) runtime.native.System.IO.Compression (4.3.1) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (>= netstandard1.6) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1.1) - runtime.native.System.Net.Http (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + runtime.native.System.Net.Http (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: || (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) + runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= net463) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net46) (>= net463) (>= netstandard1.6)) (>= uap10.0) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) @@ -1151,28 +1153,28 @@ NUGET runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: || (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= uap10.0) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= uap10.0) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= uap10.0) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= uap10.0) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= uap10.0) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= uap10.0) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= uap10.0) SourceLink.Fake (1.1) - System.AppContext (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Buffers (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.AppContext (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Buffers (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (>= netstandard1.6) (>= uap10.0) System.Diagnostics.Debug (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Diagnostics.Tracing (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) - System.Collections (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net463) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Collections (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Collections.Concurrent (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net463) (>= netstandard1.6)) (&& (>= net463) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Collections.Concurrent (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net46) (>= net463) (>= netstandard1.6)) (>= uap10.0) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1185,17 +1187,17 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Collections.Immutable (1.4) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) - System.Console (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Console (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Debug (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net461) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Diagnostics.Debug (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.DiagnosticSource (4.4.1) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Diagnostics.DiagnosticSource (4.4.1) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac) System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) @@ -1225,7 +1227,7 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Thread (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.ThreadPool (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Tools (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Diagnostics.Tools (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1239,33 +1241,33 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Tracing (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Diagnostics.Tracing (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net461) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Globalization (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization.Calendars (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Globalization.Calendars (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Globalization.Extensions (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Globalization.Extensions (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net463) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.IO (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO.Compression (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.IO.Compression (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.IO.Compression (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1281,7 +1283,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO.Compression.ZipFile (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.IO.Compression.ZipFile (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) System.Buffers (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO.Compression (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -1291,7 +1293,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.IO.FileSystem (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -1300,33 +1302,33 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem.Primitives (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.IO.FileSystem.Primitives (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= uap10.0) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Linq (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net463) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Linq.Expressions (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.ObjectModel (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.Emit (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Linq.Queryable (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) + System.Linq (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq.Expressions (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.ObjectModel (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq.Queryable (4.3) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1335,41 +1337,41 @@ NUGET System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Http (4.3.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Http (4.3.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81) - runtime.native.System (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization.Extensions (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization.Extensions (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.IO.Compression (>= 4.3) - restriction: && (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81) - System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Net.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) - System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Primitives (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Net.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Primitives (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Requests (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) + System.Net.Requests (4.3) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1383,25 +1385,25 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Sockets (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Net.Sockets (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Net.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Net.WebHeaderCollection (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.WebHeaderCollection (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.ObjectModel (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.ObjectModel (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Reflection (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1413,16 +1415,16 @@ NUGET System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Reflection.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1430,7 +1432,7 @@ NUGET System.Reflection.Metadata (1.5) NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (>= netstandard1.1) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections.Immutable (>= 1.4) - restriction: || (&& (>= monoandroid) (< netstandard1.1)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8)) (>= monotouch) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.1) (< netstandard2.0)) (&& (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - System.Reflection.Primitives (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Reflection.Primitives (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1438,31 +1440,31 @@ NUGET System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net461) (>= uap10.0)) (&& (>= net463) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Resources.ResourceManager (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net462)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.1)) (&& (>= net462) (>= uap10.0)) (&& (>= net463) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.1) (>= uap10.0) (< win8)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) + System.Runtime (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net462)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net462)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.1)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net463) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Runtime.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.4) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (>= uap10.0)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Runtime.Handles (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.4) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.InteropServices (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net463) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Runtime.InteropServices (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net462) (>= netcoreapp1.1) System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) - System.Runtime.InteropServices.RuntimeInformation (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.InteropServices.RuntimeInformation (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= uap10.0) runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1474,41 +1476,41 @@ NUGET System.IO (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Numerics (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.Numerics (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net45) (>= net46) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= uap10.0) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.AccessControl (4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= netstandard2.0) + System.Security.AccessControl (4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (< net46) (>= netstandard2.0)) (>= netcoreapp2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.Security.Principal.Windows (>= 4.4) - restriction: || (>= monoandroid) (>= netstandard1.3) - System.Security.Cryptography.Algorithms (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.4) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (< netstandard1.4)) (&& (>= net461) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) - System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Cng (4.4) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Csp (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Security.Principal.Windows (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (&& (>= net46) (< netstandard2.0)) (&& (< net46) (>= netstandard1.3) (< netstandard2.0)) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) + System.Security.Cryptography.Algorithms (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.4) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.4)) (>= netstandard1.6) (>= uap10.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.6)) (>= net463) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Cng (4.4) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Csp (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -1522,7 +1524,7 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.4) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (< netstandard1.4)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net461) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= net463) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Security.Cryptography.Encoding (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (>= netstandard1.6)) (&& (< net20) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= net461) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.4) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.4)) (&& (>= net463) (>= netstandard1.6)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -1535,20 +1537,20 @@ NUGET System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.OpenSsl (4.4) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) - System.Collections (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Primitives (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.4)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net461) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= net463) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Security.Cryptography.OpenSsl (4.4) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.4)) (&& (>= net463) (< netstandard1.4)) (&& (>= net463) (>= netstandard1.6)) (>= uap10.0) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -1556,62 +1558,62 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.X509Certificates (4.3.1) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.native.System (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) - System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Csp (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Principal.Windows (4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= netstandard2.0) + System.Security.Cryptography.X509Certificates (4.3.1) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) + System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Csp (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Principal.Windows (4.4) - restriction: || (&& (>= monoandroid) (>= monotouch) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.0)) (&& (>= monoandroid) (< netstandard1.3) (>= xamarinios)) (&& (>= monoandroid) (< netstandard1.3) (>= xamarinmac)) (&& (>= monoandroid) (< netstandard1.3) (>= xamarintvos)) (&& (>= monoandroid) (< netstandard1.3) (>= xamarinwatchos)) (&& (>= monotouch) (>= net461)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (< net46) (>= netstandard2.0)) (&& (>= net461) (>= xamarinios)) (&& (>= net461) (>= xamarinmac)) (&& (>= net461) (>= xamarintvos)) (&& (>= net461) (>= xamarinwatchos)) (>= netcoreapp2.0) (&& (>= netstandard2.0) (>= xamarinios)) (&& (>= netstandard2.0) (>= xamarinmac)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.Text.Encoding (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net463) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Text.Encoding (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Text.Encoding.Extensions (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Text.Encoding.Extensions (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Text.RegularExpressions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net461) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Text.RegularExpressions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading.Tasks (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net461) (>= uap10.0)) (&& (>= net463) (>= uap10.0)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Threading.Tasks (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading.Tasks.Extensions (4.4) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Threading.Tasks.Extensions (4.4) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Threading.Tasks (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) - System.Threading.Tasks.Parallel (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) + System.Threading.Tasks.Parallel (4.3) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) System.Collections.Concurrent (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1620,18 +1622,18 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading.Thread (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) + System.Threading.Thread (4.3) - restriction: || (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.ThreadPool (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) + System.Threading.ThreadPool (4.3) - restriction: || (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.Timer (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Threading.Timer (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.ValueTuple (4.4) NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net461) (>= netstandard1.0) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Xml.ReaderWriter (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Xml.ReaderWriter (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1647,7 +1649,7 @@ NUGET System.Text.RegularExpressions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Xml.XDocument (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Xml.XDocument (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Tools (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1670,7 +1672,7 @@ NUGET RoslynTools.ReferenceAssemblies (0.1.1) GITHUB remote: fsharp/FAKE - modules/Octokit/Octokit.fsx (676a635dcc8152dd50b8c1f5beea6feaabe989f4) + modules/Octokit/Octokit.fsx (ddf45441759a2a7bc528b3b4c6f9a1edc7bd9f55) Octokit (>= 0.20) GROUP netcore STORAGE: NONE @@ -1685,49 +1687,49 @@ NUGET FSharp.Core - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.6)) FSharp.Core (>= 4.0.1.7-alpha) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) NETStandard.Library (>= 1.6) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - FSharp.Compiler.Service (14.0.2) - storage: packages, content: none - FSharp.Core (>= 4.1.18) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Collections.Immutable (>= 1.2) - restriction: || (== net46) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard2.0) (>= net45)) - System.Collections.Immutable (>= 1.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.Process (>= 4.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.TraceSource (>= 4.0) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection.Metadata (>= 1.4.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + FSharp.Compiler.Service (16.0.2) - storage: packages, content: none + FSharp.Core (>= 4.1.18) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections.Immutable (>= 1.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections.Immutable (>= 1.3.1) - restriction: || (== net46) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard2.0) (>= net45)) + System.Diagnostics.Process (>= 4.1) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.TraceSource (>= 4.0) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Metadata (>= 1.4.1) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection.Metadata (>= 1.4.2) - restriction: || (== net46) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard2.0) (>= net45)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Loader (>= 4.0) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.ValueTuple (>= 4.4) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - FSharp.Compiler.Tools (4.1.23) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Loader (>= 4.0) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.ValueTuple (>= 4.4) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + FSharp.Compiler.Tools (4.1.27) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.6)) FSharp.Core (4.1.18) - System.Collections (>= 4.0.11) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Console (>= 4.0) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.0.11) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.Tools (>= 4.0.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Globalization (>= 4.0.11) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.IO (>= 4.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Linq (>= 4.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Linq.Expressions (>= 4.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Linq.Queryable (>= 4.0.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Net.Requests (>= 4.0.11) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection (>= 4.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection.Extensions (>= 4.0.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.0.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime (>= 4.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Extensions (>= 4.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Numerics (>= 4.0.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Text.RegularExpressions (>= 4.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Threading (>= 4.0.11) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Threading.Tasks (>= 4.0.11) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Threading.Thread (>= 4.0) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Threading.ThreadPool (>= 4.0.10) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Threading.Timer (>= 4.0.1) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.0.11) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Console (>= 4.0) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.0.11) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Tools (>= 4.0.1) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.0.11) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.1) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq (>= 4.1) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq.Expressions (>= 4.1) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq.Queryable (>= 4.0.1) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Net.Requests (>= 4.0.11) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.1) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Extensions (>= 4.0.1) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.0.1) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.1) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.1) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Numerics (>= 4.0.1) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.RegularExpressions (>= 4.1) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.0.11) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks (>= 4.0.11) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Thread (>= 4.0) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.ThreadPool (>= 4.0.10) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Timer (>= 4.0.1) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.CSharp (4.4) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.3)) - System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.3)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.3)) + System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.3)) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) Microsoft.DotNet.PlatformAbstractions (2.0) System.AppContext (>= 4.1) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Collections (>= 4.0.11) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -1739,16 +1741,16 @@ NUGET System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.App (2.0) - restriction: || (&& (== net46) (== netcoreapp1.1)) (&& (== netcoreapp1.1) (== netcoreapp2.0)) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (2.0) - Microsoft.NETCore.Targets (2.0) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net46) (< netstandard1.1)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Targets (2.0) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net46) (< netstandard1.1)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.Win32.Primitives (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.Win32.Registry (4.4) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net46) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= netcoreapp2.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Security.AccessControl (>= 4.4) - restriction: || (&& (== net46) (>= monoandroid) (< netstandard1.3)) (&& (== net46) (>= monotouch)) (&& (== net46) (>= net461)) (&& (== net46) (>= netstandard2.0)) (&& (== net46) (>= xamarinios)) (&& (== net46) (>= xamarinmac)) (&& (== net46) (>= xamarintvos)) (&& (== net46) (>= xamarinwatchos)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= monoandroid) (< netstandard1.3)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (== netstandard2.0) - System.Security.Principal.Windows (>= 4.4) - restriction: || (&& (== net46) (>= monoandroid) (< netstandard1.3)) (&& (== net46) (>= monotouch)) (&& (== net46) (>= net461)) (&& (== net46) (>= netstandard2.0)) (&& (== net46) (>= xamarinios)) (&& (== net46) (>= xamarinmac)) (&& (== net46) (>= xamarintvos)) (&& (== net46) (>= xamarinwatchos)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= monoandroid) (< netstandard1.3)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (== netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Security.AccessControl (>= 4.4) - restriction: || (&& (== net46) (>= monoandroid) (< netstandard1.3)) (&& (== net46) (>= monotouch)) (&& (== net46) (>= net461)) (&& (== net46) (>= netcoreapp2.0)) (&& (== net46) (>= xamarinios)) (&& (== net46) (>= xamarinmac)) (&& (== net46) (>= xamarintvos)) (&& (== net46) (>= xamarinwatchos)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= monoandroid) (< netstandard1.3)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (>= netcoreapp2.0)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (== netstandard2.0) + System.Security.Principal.Windows (>= 4.4) - restriction: || (&& (== net46) (>= monoandroid) (< netstandard1.3)) (&& (== net46) (>= monotouch)) (&& (== net46) (>= net461)) (&& (== net46) (>= netcoreapp2.0)) (&& (== net46) (>= xamarinios)) (&& (== net46) (>= xamarinmac)) (&& (== net46) (>= xamarintvos)) (&& (== net46) (>= xamarinwatchos)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= monoandroid) (< netstandard1.3)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (>= netcoreapp2.0)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (== netstandard2.0) Mono.Cecil (0.10.0-beta6) System.Collections (>= 4.0.11) - restriction: || (&& (== net46) (< net35)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.IO.FileSystem (>= 4.0.1) - restriction: || (&& (== net46) (< net35)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -1758,51 +1760,51 @@ NUGET System.Security.Cryptography.Algorithms (>= 4.2) - restriction: || (&& (== net46) (< net35)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Security.Cryptography.Csp (>= 4.0) - restriction: || (&& (== net46) (< net35)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading (>= 4.0.11) - restriction: || (&& (== net46) (< net35)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - NETStandard.Library (2.0) + NETStandard.Library (2.0.1) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.Win32.Primitives (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) System.AppContext (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) System.Console (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Globalization (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) System.Globalization.Calendars (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.IO (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) System.IO.Compression (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) System.IO.Compression.ZipFile (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) System.IO.FileSystem (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) - System.Linq (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Linq (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) System.Net.Http (>= 4.3.2) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Net.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Net.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) System.Net.Sockets (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) - System.ObjectModel (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.ObjectModel (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.0)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Threading.Timer (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Threading.Timer (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (>= uap10.0)) System.Xml.ReaderWriter (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) + System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< portable-net451+win81+wpa81)) (&& (== netcoreapp2.0) (>= uap10.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== netstandard2.0) (< portable-net451+win81+wpa81)) (&& (== netstandard2.0) (>= uap10.0)) Newtonsoft.Json (10.0.3) Microsoft.CSharp (>= 4.3) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -1810,9 +1812,9 @@ NUGET System.Runtime.Serialization.Formatters (>= 4.3) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - Octokit (0.26) + Octokit (0.27) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - Paket.Core (5.101) + Paket.Core (5.119.7) Chessie (>= 0.6) FSharp.Compiler.Tools - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.6)) FSharp.Core - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.6)) @@ -1827,21 +1829,21 @@ NUGET System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Xml.XPath.XDocument (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - runtime.native.System (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System (4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) runtime.native.System.IO.Compression (4.3.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1.1) - runtime.native.System.Net.Http (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System.Net.Http (4.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Security.Cryptography.Apple (4.3.1) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System.Security.Cryptography.Apple (4.3.1) - storage: packages, content: none, restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) @@ -1852,27 +1854,27 @@ NUGET runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - storage: packages, content: none, restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - storage: packages, content: none, restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.AppContext (4.3) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Buffers (4.4) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) System.Diagnostics.Tracing (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) System.Resources.ResourceManager (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) System.Runtime (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) System.Threading (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Collections (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net35)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net35)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Collections.Concurrent (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections.Concurrent (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -1928,18 +1930,18 @@ NUGET System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.Debug (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (== netstandard1.6) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.FileVersionInfo (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -1972,7 +1974,7 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading.Thread (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading.ThreadPool (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.Tools (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Tools (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20) (>= netstandard1.6)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -1986,7 +1988,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.Tracing (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Tracing (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2005,7 +2007,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Globalization (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2014,14 +2016,14 @@ NUGET Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Globalization.Extensions (4.3) - restriction: || (&& (== net46) (< net20) (>= netstandard1.5)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization.Extensions (4.3) - restriction: || (&& (== net46) (< net20) (>= netstandard1.5)) (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime.InteropServices (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.IO (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.5)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.5)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2064,30 +2066,30 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.IO.FileSystem.Primitives (4.3) System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Linq (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20) (>= netstandard1.5)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Linq.Expressions (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Linq (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.ObjectModel (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20) (>= netstandard1.5)) (&& (== net46) (< net20) (>= netstandard1.6)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq.Expressions (4.3) - restriction: || (&& (== net46) (>= dnxcore50) (>= netstandard1.6)) (&& (== net46) (< net20) (>= netstandard1.6)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.ObjectModel (>= 4.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Linq.Parallel (4.3) System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2099,7 +2101,7 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Linq.Queryable (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Linq.Queryable (4.3) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Linq (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2109,38 +2111,38 @@ NUGET System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Net.Http (4.3.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - runtime.native.System (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - runtime.native.System.Net.Http (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Globalization.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Net.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System (>= 4.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System.Net.Http (>= 4.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization.Extensions (>= 4.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Net.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Security.Cryptography.X509Certificates (>= 4.3) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Net.Primitives (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Net.Primitives (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20) (>= netstandard1.6)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (< netstandard1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (< netstandard1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (< netstandard1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Net.Requests (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Net.Requests (4.3) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2161,39 +2163,39 @@ NUGET System.Net.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Net.WebHeaderCollection (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Net.WebHeaderCollection (4.3) - restriction: || (&& (== net46) (>= dnxcore50) (>= netstandard1.6)) (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.ObjectModel (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.ObjectModel (4.3) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net35)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net46) (>= netstandard1.5)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net35)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net46) (>= netstandard1.5)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection.Emit (4.3) - storage: packages, content: none, restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Emit (4.3) - storage: packages, content: none, restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net46) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (== net46) (>= netstandard1.6) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net46) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (== net46) (>= netstandard1.6) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20) (>= netstandard1.6)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net46) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (== net46) (>= netstandard1.6) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection.Extensions (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Extensions (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2201,32 +2203,32 @@ NUGET System.Reflection.Metadata (1.5) - storage: packages, content: none NETStandard.Library (>= 1.6.1) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) System.Collections.Immutable (>= 1.4) - restriction: || (== net46) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (< netstandard1.1)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (== netstandard1.6) (== netstandard2.0) - System.Reflection.Primitives (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.Primitives (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection.TypeExtensions (4.4) - storage: packages, content: none, restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= dnxcore50)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.5)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= dnxcore50)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.5)) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= dnxcore50)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.5)) - System.Resources.ResourceManager (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection.TypeExtensions (4.4) - storage: packages, content: none, restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (== net46) (>= netstandard1.6) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.5)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.5)) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.5)) + System.Resources.ResourceManager (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (< netstandard1.1)) (&& (== net46) (>= netstandard1.5)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (< netstandard1.1)) (&& (== net46) (>= netstandard1.5)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Extensions (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net35)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net35)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Handles (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Handles (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.InteropServices (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.InteropServices (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2245,7 +2247,7 @@ NUGET System.IO (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Numerics (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Numerics (4.3) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2259,36 +2261,36 @@ NUGET System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (== net46) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Security.AccessControl (4.4) - restriction: || (== netcoreapp2.0) (&& (== netstandard1.6) (>= monoandroid) (< netstandard1.3)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (== netstandard2.0) + System.Security.AccessControl (4.4) - restriction: || (== netcoreapp2.0) (&& (== netstandard1.6) (>= monoandroid) (< netstandard1.3)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (>= netcoreapp2.0)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net46) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= netcoreapp2.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Security.Principal.Windows (>= 4.4) System.Security.Cryptography.Algorithms (4.3) - storage: packages, content: none - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= net463)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= net463)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= net463)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= net463)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= net463)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Numerics (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= net463)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Security.Cryptography.Primitives (>= 4.3) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Security.Cryptography.Cng (4.4) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.6)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.Cng (4.4) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime (>= 4.3) - restriction: || (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.6)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.6)) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.6)) - System.Security.Cryptography.Csp (4.3) - restriction: || (&& (== net46) (< net35)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.6)) + System.Security.Cryptography.Csp (4.3) - restriction: || (&& (== net46) (< net35)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2315,19 +2317,19 @@ NUGET System.Runtime.InteropServices (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Security.Cryptography.OpenSsl (4.4) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Security.Cryptography.OpenSsl (4.4) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.IO (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) System.Security.Cryptography.Primitives (4.3) System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2337,55 +2339,55 @@ NUGET System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Security.Cryptography.ProtectedData (4.4) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) System.Security.Cryptography.X509Certificates (4.3.1) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - runtime.native.System (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - runtime.native.System.Net.Http (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Globalization.Calendars (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System.Net.Http (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Globalization.Calendars (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Security.Cryptography.Algorithms (>= 4.3) - System.Security.Cryptography.Cng (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Security.Cryptography.Csp (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.Cng (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.Csp (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Security.Cryptography.Encoding (>= 4.3) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Security.Principal.Windows (4.4) - restriction: || (== netcoreapp2.0) (&& (== netstandard1.6) (>= monoandroid) (< netstandard1.3)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (== netstandard2.0) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Security.Principal.Windows (4.4) - restriction: || (== netcoreapp2.0) (&& (== netstandard1.6) (>= monoandroid) (< netstandard1.3)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (>= netcoreapp2.0)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net46) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= netcoreapp2.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) - System.Text.Encoding (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.Encoding (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Text.Encoding.Extensions (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.Encoding.Extensions (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Text.RegularExpressions (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) - System.Threading (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net35)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Text.RegularExpressions (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20) (>= netstandard1.6)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) + System.Threading (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net35)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Threading.Tasks (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20) (>= netstandard1.6)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2393,7 +2395,7 @@ NUGET System.Collections (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) System.Runtime (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) System.Threading.Tasks (>= 4.3) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Threading.Tasks.Parallel (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Tasks.Parallel (4.3) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2402,16 +2404,16 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Threading.Thread (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Thread (4.3) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Threading.ThreadPool (4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.ThreadPool (4.3) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime.Handles (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Threading.Timer (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= netstandard1.6)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Timer (4.3) - restriction: || (&& (== net46) (< net20) (>= netstandard1.6)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net451)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net451)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net451)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.ValueTuple (4.4) - storage: packages, content: none, restriction: || (&& (== net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.ValueTuple (4.4) - storage: packages, content: none, restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) NETStandard.Library (>= 1.6.1) - restriction: || (== net46) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) System.Xml.ReaderWriter (4.3) System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2495,26 +2497,26 @@ NUGET NETStandard.Library (>= 1.6) - restriction: >= netstandard1.6 Fake.Api.GitHub (5.0.0-beta005) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Octokit (>= 0.26) - restriction: || (>= net46) (>= netstandard1.6) Fake.Core.BuildServer (5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.Core.Environment (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Fake.Core.Context (5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Fake.Core.Environment (5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Fake.Core.Globbing (5.0.0-beta005) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Fake.Core.Process (5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) @@ -2524,23 +2526,23 @@ NUGET Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 System.Diagnostics.Process (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) Fake.Core.ReleaseNotes (5.0.0-beta005) Fake.Core.SemVer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Fake.Core.SemVer (5.0.0-beta005) Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Fake.Core.String (5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Fake.Core.Target (5.0.0-beta005) Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) @@ -2549,7 +2551,7 @@ NUGET Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Fake.Core.Tasks (5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) @@ -2560,14 +2562,14 @@ NUGET Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Fake.Core.Tracing (5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.Core.Environment (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Fake.Core.Xml (5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) @@ -2578,13 +2580,13 @@ NUGET Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 System.Xml.ReaderWriter (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.6 - System.Xml.XPath (>= 4.3) - restriction: >= netstandard1.6 - System.Xml.XPath.XDocument (>= 4.3) - restriction: >= netstandard1.6 - System.Xml.XPath.XmlDocument (>= 4.3) - restriction: >= netstandard1.6 + System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net46) (>= netstandard2.0)) + System.Xml.XPath (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net46) (>= netstandard2.0)) + System.Xml.XPath.XDocument (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net46) (>= netstandard2.0)) + System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net46) (>= netstandard2.0)) Fake.DotNet.AssemblyInfoFile (5.0.0-beta005) Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.Core.Environment (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) @@ -2592,7 +2594,7 @@ NUGET Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Fake.DotNet.Cli (5.0.0-beta005) Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) @@ -2603,7 +2605,7 @@ NUGET Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Fake.DotNet.FSFormatting (5.0.0-beta005) Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) @@ -2615,7 +2617,7 @@ NUGET Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Fake.DotNet.MsBuild (5.0.0-beta005) Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) @@ -2627,7 +2629,7 @@ NUGET Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Fake.DotNet.NuGet (5.0.0-beta005) Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) @@ -2642,7 +2644,7 @@ NUGET Fake.Core.Xml (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Newtonsoft.Json (>= 10.0.3) - restriction: || (>= net46) (>= netstandard1.6) System.Net.Http (>= 4.3.3) - restriction: || (>= net46) (>= netstandard1.6) @@ -2656,7 +2658,7 @@ NUGET Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Fake.DotNet.Testing.MSpec (5.0.0-beta005) Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) @@ -2669,7 +2671,7 @@ NUGET Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.Testing.Common (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Fake.DotNet.Testing.NUnit (5.0.0-beta005) Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) @@ -2682,10 +2684,10 @@ NUGET Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.Testing.Common (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 System.Linq.Parallel (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.6 + System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net46) (>= netstandard2.0)) Fake.DotNet.Testing.XUnit2 (5.0.0-beta005) Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.Core.Context (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) @@ -2697,13 +2699,13 @@ NUGET Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.Testing.Common (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Fake.IO.FileSystem (5.0.0-beta005) Fake.Core.Globbing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) Fake.IO.Zip (5.0.0-beta005) @@ -2711,7 +2713,7 @@ NUGET Fake.Core.String (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 System.IO.Compression (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) System.IO.Compression.ZipFile (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) @@ -2724,7 +2726,7 @@ NUGET Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Fake.Tools.Git (5.0.0-beta005) Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) @@ -2737,7 +2739,7 @@ NUGET Fake.Core.Tracing (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 Fake.Windows.Chocolatey (5.0.0-beta005) Fake.Core.BuildServer (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) @@ -2750,48 +2752,48 @@ NUGET Fake.DotNet.NuGet (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) Fake.IO.FileSystem (>= 5.0.0-beta005) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.1.18) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) NETStandard.Library (>= 2.0) - restriction: >= net46 - FSharp.Compiler.Tools (4.1.23) - restriction: < netstandard1.6 + FSharp.Compiler.Tools (4.1.27) - restriction: < netstandard1.6 FSharp.Core (4.1.18) - System.Collections (>= 4.0.11) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Console (>= 4.0) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Diagnostics.Debug (>= 4.0.11) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Diagnostics.Tools (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Globalization (>= 4.0.11) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.IO (>= 4.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Linq (>= 4.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Linq.Expressions (>= 4.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Linq.Queryable (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Net.Requests (>= 4.0.11) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Reflection (>= 4.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Reflection.Extensions (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Resources.ResourceManager (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Runtime (>= 4.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Runtime.Extensions (>= 4.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Runtime.Numerics (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Text.RegularExpressions (>= 4.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Threading (>= 4.0.11) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Threading.Tasks (>= 4.0.11) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Threading.Thread (>= 4.0) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Threading.ThreadPool (>= 4.0.10) - restriction: && (>= netstandard1.6) (< xamarinmac) - System.Threading.Timer (>= 4.0.1) - restriction: && (>= netstandard1.6) (< xamarinmac) - Microsoft.CSharp (4.4) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.Collections (>= 4.0.11) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Console (>= 4.0) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Diagnostics.Debug (>= 4.0.11) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Diagnostics.Tools (>= 4.0.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Globalization (>= 4.0.11) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.IO (>= 4.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Linq (>= 4.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Linq.Expressions (>= 4.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Linq.Queryable (>= 4.0.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Net.Requests (>= 4.0.11) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Reflection (>= 4.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Reflection.Extensions (>= 4.0.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Resources.ResourceManager (>= 4.0.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Runtime (>= 4.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Runtime.Extensions (>= 4.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Runtime.Numerics (>= 4.0.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Text.RegularExpressions (>= 4.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Threading (>= 4.0.11) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Threading.Tasks (>= 4.0.11) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Threading.Thread (>= 4.0) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Threading.ThreadPool (>= 4.0.10) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + System.Threading.Timer (>= 4.0.1) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) + Microsoft.CSharp (4.4) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.6)) NETStandard.Library (>= 1.6.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Dynamic.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - Microsoft.NETCore.Platforms (2.0) - restriction: || (>= dnxcore50) (&& (>= monoandroid) (< netstandard1.0) (>= netstandard1.1)) (&& (>= monoandroid) (< netstandard1.0) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netcoreapp1.1)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (< portable-net451+win81+wpa81)) (>= net461) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) - Microsoft.NETCore.Targets (2.0) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win81) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (>= netcoreapp1.1) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= uap10.0) (< win8)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) - Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (2.0) - restriction: || (>= dnxcore50) (&& (>= monoandroid) (< netstandard1.0) (>= netstandard1.1)) (&& (>= monoandroid) (< netstandard1.0) (>= netstandard1.3)) (&& (>= monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (>= monotouch) (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wp8+wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wp8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.6)) (&& (< net20) (>= netstandard2.0)) (&& (< net35) (>= net463)) (&& (< net35) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.6)) (&& (>= net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (< portable-net45+win8+wp8+wpa81)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (< portable-net451+win81+wpa81)) (&& (< net46) (>= netstandard1.6)) (>= net461) (>= netcoreapp1.1) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wp8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wp8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) + Microsoft.NETCore.Targets (2.0) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win81) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= net463) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (< portable-net45+win8+wpa81)) (>= netcoreapp1.1) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) + Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - Microsoft.Win32.Registry (4.4) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.Win32.Registry (4.4) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.AccessControl (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - System.Security.Principal.Windows (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) + System.Security.AccessControl (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) + System.Security.Principal.Windows (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) Mono.Cecil (0.10.0-beta6) System.Collections (>= 4.0.11) - restriction: && (< net35) (>= netstandard1.3) System.IO.FileSystem (>= 4.0.1) - restriction: && (< net35) (>= netstandard1.3) @@ -2801,51 +2803,51 @@ NUGET System.Security.Cryptography.Algorithms (>= 4.2) - restriction: && (< net35) (>= netstandard1.3) System.Security.Cryptography.Csp (>= 4.0) - restriction: && (< net35) (>= netstandard1.3) System.Threading (>= 4.0.11) - restriction: && (< net35) (>= netstandard1.3) - NETStandard.Library (2.0) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.1)) (>= net46) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= monoandroid) (< netstandard1.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) (>= uap10.0) - Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.AppContext (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Console (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.IO.Compression (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Net.Http (>= 4.3.2) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Net.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Net.Sockets (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.ObjectModel (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Threading.Timer (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= uap10.0) (< uap10.1)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + NETStandard.Library (2.0.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.1)) (>= net46) (>= netstandard1.6) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.AppContext (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= uap10.0) + System.Console (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= uap10.0) + System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.IO.Compression (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Net.Http (>= 4.3.2) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Net.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Net.Sockets (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.ObjectModel (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= uap10.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= uap10.0) + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= portable-net451+win81+wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= uap10.0) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= uap10.0) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Threading.Timer (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= uap10.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Xml.XDocument (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (>= uap10.0) Newtonsoft.Json (10.0.3) Microsoft.CSharp (>= 4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) NETStandard.Library (>= 1.6.1) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) @@ -2853,9 +2855,9 @@ NUGET System.Runtime.Serialization.Formatters (>= 4.3) - restriction: && (< net20) (>= netstandard1.3) System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) System.Xml.XmlDocument (>= 4.3) - restriction: && (< net20) (>= netstandard1.3) - Octokit (0.26) + Octokit (0.27) NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.1) - Paket.Core (5.103) + Paket.Core (5.119.7) Chessie (>= 0.6) FSharp.Compiler.Tools - restriction: < netstandard1.6 FSharp.Core - restriction: < netstandard1.6 @@ -2870,21 +2872,21 @@ NUGET System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.6 System.Xml.XPath.XDocument (>= 4.3) - restriction: >= netstandard1.6 System.Xml.XPath.XmlDocument (>= 4.3) - restriction: >= netstandard1.6 - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.native.System (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.6)) (>= uap10.0) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.6)) (>= uap10.0) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.6)) (>= uap10.0) + runtime.native.System (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.IO.Compression (4.3.1) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= uap10.0) (< win8) (< wpa81)) + runtime.native.System.IO.Compression (4.3.1) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1.1) - runtime.native.System.Net.Http (4.3) - restriction: || (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) + runtime.native.System.Net.Http (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.6)) (>= uap10.0) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) @@ -2895,27 +2897,27 @@ NUGET runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.6)) (>= uap10.0) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.6)) (>= uap10.0) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.6)) (>= uap10.0) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.6)) (>= uap10.0) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.6)) (>= uap10.0) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.6)) (>= uap10.0) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.6)) (>= uap10.0) System.AppContext (4.3) System.Collections (>= 4.3) - restriction: >= dnxcore50 System.Resources.ResourceManager (>= 4.3) - restriction: >= dnxcore50 - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: >= dnxcore50 - System.Buffers (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Buffers (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (>= uap10.0) System.Diagnostics.Debug (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Diagnostics.Tracing (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) - System.Collections (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) - System.Collections.Concurrent (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Collections (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (< net46) (>= netstandard2.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Collections.Concurrent (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= uap10.0) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -2926,7 +2928,7 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Collections.Immutable (1.4) - restriction: || (&& (>= dnxcore50) (>= monotouch)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (>= dnxcore50) (>= xamarinios)) (&& (>= dnxcore50) (>= xamarinmac)) (&& (>= dnxcore50) (>= xamarintvos)) (&& (>= dnxcore50) (>= xamarinwatchos)) (&& (>= monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8)) + System.Collections.Immutable (1.4) - restriction: || (&& (>= dnxcore50) (>= monotouch)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (>= dnxcore50) (>= xamarinios)) (&& (>= dnxcore50) (>= xamarinmac)) (&& (>= dnxcore50) (>= xamarintvos)) (&& (>= dnxcore50) (>= xamarinwatchos)) (&& (>= monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8)) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Collections.NonGeneric (4.3) - restriction: || (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -2949,7 +2951,7 @@ NUGET System.ComponentModel (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.ComponentModel.TypeConverter (4.3) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.ComponentModel.TypeConverter (4.3) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.6)) System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Collections.NonGeneric (>= 4.3) - restriction: || (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net462) System.Collections.Specialized (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -2965,17 +2967,17 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Console (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Console (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Debug (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Diagnostics.Debug (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (< net46) (>= netstandard2.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.6)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac) System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) @@ -3015,7 +3017,7 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Thread (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.ThreadPool (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Tools (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Diagnostics.Tools (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3029,7 +3031,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Tracing (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Diagnostics.Tracing (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3048,29 +3050,29 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Globalization (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (< net46) (>= netstandard2.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization.Calendars (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Globalization.Calendars (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Globalization.Extensions (4.3) - restriction: || (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (>= net46) (>= netstandard1.6)) + System.Globalization.Extensions (4.3) - restriction: || (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.6)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46) (>= netstandard1.4)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (< net46) (>= net461)) (&& (>= net461) (>= netstandard1.6)) (>= net463) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.IO (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (< net46) (>= net461) (< netstandard1.4)) (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (< net46) (>= net461) (< netstandard1.6)) (&& (< net46) (>= netstandard2.0)) (>= net463) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO.Compression (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= net46) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) + System.IO.Compression (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= net46) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.IO.Compression (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3086,7 +3088,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO.Compression.ZipFile (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (>= net46) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) + System.IO.Compression.ZipFile (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (>= net46) (>= netstandard1.6) (>= uap10.0) System.Buffers (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO.Compression (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3096,7 +3098,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.IO.FileSystem (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3105,32 +3107,32 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= uap10.0) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Linq (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Linq.Expressions (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.ObjectModel (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.Emit (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq.Expressions (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.ObjectModel (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Linq.Parallel (4.3) - restriction: || (>= net46) (>= netstandard1.6) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Collections.Concurrent (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3142,7 +3144,7 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Linq.Queryable (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) + System.Linq.Queryable (4.3) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3151,39 +3153,39 @@ NUGET System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Http (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= net46) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.native.System (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization.Extensions (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Net.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) - System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Net.Http (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (>= net46) (>= netstandard1.6) (>= uap10.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization.Extensions (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Net.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.6)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Requests (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) + System.Net.Requests (4.3) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3197,81 +3199,81 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Sockets (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Net.Sockets (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Net.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Net.WebHeaderCollection (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Net.WebHeaderCollection (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.ObjectModel (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.ObjectModel (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (>= netcoreapp1.1) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Reflection (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< portable-net45+win8+wpa81)) (>= netcoreapp1.1) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.Emit (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.IO (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Reflection.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net451)) (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.Metadata (1.5) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Metadata (1.5) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (>= netstandard1.1) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections.Immutable (>= 1.4) - restriction: || (&& (>= monoandroid) (< netstandard1.1)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8)) (>= monotouch) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.1) (< netstandard2.0)) (&& (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - System.Reflection.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (>= netcoreapp1.1) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Reflection.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< portable-net45+win8+wpa81)) (>= netcoreapp1.1) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.TypeExtensions (4.4) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) + System.Reflection.TypeExtensions (4.4) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) (&& (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) - System.Runtime (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46) (>= netstandard1.4)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= net462)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (< net46) (>= net461)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net462) (>= netstandard1.6)) (&& (>= net462) (>= uap10.0)) (>= net463) (>= netcoreapp1.1) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= uap10.0) (< win8)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) + System.Resources.ResourceManager (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (< net46) (>= netstandard2.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Runtime (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.2) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.5)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= net462) (< netstandard1.3)) (&& (< net45) (>= net462) (< netstandard1.4)) (&& (< net45) (>= net462) (< netstandard1.5)) (&& (< net45) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= net462) (< netstandard1.6)) (&& (< net45) (>= net462) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (< net46) (>= net461) (< netstandard1.4)) (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (< net46) (>= net461) (< netstandard1.6)) (&& (< net46) (>= net462) (>= netstandard1.6)) (&& (< net46) (>= netstandard2.0)) (>= net463) (>= netcoreapp1.1) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Runtime.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (< net46) (>= netstandard2.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (>= netcoreapp1.1) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Runtime.Handles (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< portable-net45+win8+wpa81)) (>= netcoreapp1.1) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.InteropServices (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Runtime.InteropServices (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net462) (>= netcoreapp1.1) System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) - System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net451) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= uap10.0) runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3279,51 +3281,51 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Numerics (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.Numerics (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= uap10.0) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Serialization.Formatters (4.3) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.Runtime.Serialization.Formatters (4.3) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.6)) System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) - System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.6)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.AccessControl (4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= netstandard2.0) + System.Security.AccessControl (4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (< net46) (>= netstandard2.0)) (>= netcoreapp2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.Security.Principal.Windows (>= 4.4) - restriction: || (>= monoandroid) (>= netstandard1.3) - System.Security.Cryptography.Algorithms (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= uap10.0)) (>= net461) (&& (< netstandard1.4) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) - System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Cng (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Security.Principal.Windows (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (&& (>= net46) (< netstandard2.0)) (&& (< net46) (>= netstandard1.3) (< netstandard2.0)) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) + System.Security.Cryptography.Algorithms (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netstandard1.6) (>= uap10.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.6)) (>= net463) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Cng (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Csp (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Csp (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3337,7 +3339,7 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (>= net461) (&& (>= net463) (>= netstandard1.6)) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.6)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (>= net463) (>= netstandard1.6)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3350,21 +3352,21 @@ NUGET System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.OpenSsl (4.4) - restriction: || (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Security.Cryptography.OpenSsl (4.4) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.Collections (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46)) (&& (< net45) (>= net46)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (>= net461) (&& (< netstandard1.4) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (>= net461) (< netstandard1.4)) (&& (>= net461) (< netstandard1.6)) (>= net463) (>= uap10.0) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3374,60 +3376,60 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.ProtectedData (4.4) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.X509Certificates (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (>= net46) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.native.System (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) - System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Csp (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Principal.Windows (4.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= netstandard2.0) + System.Security.Cryptography.X509Certificates (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= net46) (>= uap10.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) + System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Csp (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Principal.Windows (4.4) - restriction: || (&& (>= monoandroid) (>= monotouch) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.0)) (&& (>= monoandroid) (< netstandard1.3) (>= xamarinios)) (&& (>= monoandroid) (< netstandard1.3) (>= xamarinmac)) (&& (>= monoandroid) (< netstandard1.3) (>= xamarintvos)) (&& (>= monoandroid) (< netstandard1.3) (>= xamarinwatchos)) (&& (>= monotouch) (>= net461)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (< net46) (>= netstandard2.0)) (&& (>= net461) (>= xamarinios)) (&& (>= net461) (>= xamarinmac)) (&& (>= net461) (>= xamarintvos)) (&& (>= net461) (>= xamarinwatchos)) (>= netcoreapp2.0) (&& (>= netstandard2.0) (>= xamarinios)) (&& (>= netstandard2.0) (>= xamarinmac)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.Text.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Text.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net46)) (&& (< net45) (>= net463) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Text.Encoding.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Text.Encoding.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Text.RegularExpressions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) - System.Threading.Tasks (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Text.RegularExpressions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (>= portable-net451+win81+wpa81) (< win8)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.6)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (< net46) (>= netstandard2.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81) (< win8)) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) + System.Threading.Tasks (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= net463)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.6)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net35) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net35) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net35) (< netstandard1.5) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net35) (>= net463)) (&& (< net45) (>= net46)) (&& (< net45) (>= net463) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.6) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading.Tasks.Extensions (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Threading.Tasks.Extensions (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Threading.Tasks (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) - System.Threading.Tasks.Parallel (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) + System.Threading.Tasks.Parallel (4.3) - restriction: && (< net20) (>= netstandard1.6) (< xamarinmac) System.Collections.Concurrent (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3436,16 +3438,16 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading.Thread (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) + System.Threading.Thread (4.3) - restriction: || (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.ThreadPool (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) + System.Threading.ThreadPool (4.3) - restriction: || (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.Timer (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) + System.Threading.Timer (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.6) (< xamarinmac)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Xml.ReaderWriter (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (>= net46) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Xml.ReaderWriter (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< portable-net451+win81+wpa81) (< win8)) (&& (< net45) (>= netstandard2.0)) (>= net46) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3461,7 +3463,7 @@ NUGET System.Text.RegularExpressions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Xml.XDocument (4.3) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (>= netstandard1.6) (&& (>= uap10.0) (< uap10.1)) + System.Xml.XDocument (4.3) - restriction: || (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (< net46) (>= netstandard2.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (>= netstandard1.6) (>= uap10.0) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Tools (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3474,7 +3476,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Xml.ReaderWriter (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Xml.XmlDocument (4.3) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.Xml.XmlDocument (4.3) - restriction: || (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.6)) (&& (>= net46) (>= netstandard1.6)) System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3485,7 +3487,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Xml.XPath (4.3) - restriction: >= netstandard1.6 + System.Xml.XPath (4.3) - restriction: || (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netstandard1.6)) (&& (< net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net46) (>= netstandard2.0)) System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3495,7 +3497,7 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Xml.XPath.XDocument (4.3) - restriction: >= netstandard1.6 + System.Xml.XPath.XDocument (4.3) - restriction: || (&& (< net46) (>= netstandard2.0)) (>= netstandard1.6) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Linq (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3505,7 +3507,7 @@ NUGET System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Xml.XDocument (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Xml.XPath (>= 4.3) - restriction: || (&& (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) - System.Xml.XPath.XmlDocument (4.3) - restriction: >= netstandard1.6 + System.Xml.XPath.XmlDocument (4.3) - restriction: || (&& (< net46) (>= netstandard2.0)) (>= netstandard1.6) System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) diff --git a/src/app/FAKE/FAKE.fsproj b/src/app/FAKE/FAKE.fsproj index 73e37fc3c02..8c6eef7e04e 100644 --- a/src/app/FAKE/FAKE.fsproj +++ b/src/app/FAKE/FAKE.fsproj @@ -204,7 +204,7 @@
        - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -331,7 +331,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -371,15 +371,6 @@ - - - - ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -402,15 +393,6 @@ - - - - ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -469,7 +451,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -489,15 +471,6 @@ - - - - ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -615,7 +588,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -635,7 +608,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -664,15 +637,6 @@ - - - - ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -702,15 +666,6 @@ - - - - ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -956,15 +911,6 @@ - - - - ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1076,15 +1022,6 @@ - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1211,15 +1148,6 @@ - - - - ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1260,15 +1188,6 @@ - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1354,13 +1273,6 @@ - - - - True - - - @@ -1437,15 +1349,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1493,15 +1396,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1560,7 +1454,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1687,15 +1581,6 @@ - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1801,7 +1686,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -1832,15 +1717,6 @@ - - - - ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1861,15 +1737,6 @@ - - - - ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - @@ -1901,7 +1768,7 @@ - + True diff --git a/src/app/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj b/src/app/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj index b847d7fbc1c..710755e9da3 100644 --- a/src/app/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj +++ b/src/app/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj @@ -235,7 +235,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -684,7 +684,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -724,15 +724,6 @@ - - - - ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -775,15 +766,6 @@ - - - - ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -871,7 +853,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -891,15 +873,6 @@ - - - - ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -1017,7 +990,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -1037,7 +1010,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -1066,15 +1039,6 @@ - - - - ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -1104,15 +1068,6 @@ - - - - ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -1369,15 +1324,6 @@ - - - - ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1489,15 +1435,6 @@ - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1624,15 +1561,6 @@ - - - - ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1673,15 +1601,6 @@ - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1912,15 +1831,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1968,15 +1878,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -2035,7 +1936,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -2142,15 +2043,6 @@ - - - - ..\..\..\packages\System.Security.Principal.Windows\lib\net461\System.Security.Principal.Windows.dll - True - True - - - @@ -2229,15 +2121,6 @@ - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -2343,7 +2226,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -2374,15 +2257,6 @@ - - - - ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -2403,15 +2277,6 @@ - - - - ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - @@ -2443,7 +2308,7 @@ - + True @@ -2522,6 +2387,9 @@ + + True + ..\..\..\packages\System.Xml.XmlDocument\lib\net46\System.Xml.XmlDocument.dll True diff --git a/src/app/Fake.Deploy/Fake.Deploy.fsproj b/src/app/Fake.Deploy/Fake.Deploy.fsproj index d083ca7bfa8..f1ef63e1a8d 100644 --- a/src/app/Fake.Deploy/Fake.Deploy.fsproj +++ b/src/app/Fake.Deploy/Fake.Deploy.fsproj @@ -242,7 +242,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -859,7 +859,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -899,15 +899,6 @@ - - - - ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -950,15 +941,6 @@ - - - - ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -1046,7 +1028,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -1066,15 +1048,6 @@ - - - - ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -1192,7 +1165,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -1212,7 +1185,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -1241,15 +1214,6 @@ - - - - ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -1279,15 +1243,6 @@ - - - - ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -1544,15 +1499,6 @@ - - - - ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1664,15 +1610,6 @@ - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1799,15 +1736,6 @@ - - - - ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1848,15 +1776,6 @@ - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1942,13 +1861,6 @@ - - - - True - - - @@ -2094,15 +2006,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -2150,15 +2053,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -2217,7 +2111,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -2324,15 +2218,6 @@ - - - - ..\..\..\packages\System.Security.Principal.Windows\lib\net461\System.Security.Principal.Windows.dll - True - True - - - @@ -2411,15 +2296,6 @@ - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -2525,7 +2401,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -2556,15 +2432,6 @@ - - - - ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -2585,15 +2452,6 @@ - - - - ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - @@ -2625,7 +2483,7 @@ - + True @@ -2704,6 +2562,9 @@ + + True + ..\..\..\packages\System.Xml.XmlDocument\lib\net46\System.Xml.XmlDocument.dll True diff --git a/src/app/Fake.Experimental/Fake.Experimental.fsproj b/src/app/Fake.Experimental/Fake.Experimental.fsproj index df1304aa307..0b12b1abc67 100644 --- a/src/app/Fake.Experimental/Fake.Experimental.fsproj +++ b/src/app/Fake.Experimental/Fake.Experimental.fsproj @@ -147,7 +147,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -236,7 +236,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -276,15 +276,6 @@ - - - - ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -307,15 +298,6 @@ - - - - ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -374,7 +356,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -394,15 +376,6 @@ - - - - ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -488,7 +461,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -508,7 +481,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -537,15 +510,6 @@ - - - - ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -575,15 +539,6 @@ - - - - ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -809,15 +764,6 @@ - - - - ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -929,15 +875,6 @@ - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1064,15 +1001,6 @@ - - - - ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1113,15 +1041,6 @@ - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1169,13 +1088,6 @@ - - - - True - - - @@ -1252,15 +1164,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1308,15 +1211,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1375,7 +1269,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1502,15 +1396,6 @@ - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1627,15 +1512,6 @@ - - - - ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1656,15 +1532,6 @@ - - - - ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - diff --git a/src/app/Fake.FluentMigrator/Fake.FluentMigrator.fsproj b/src/app/Fake.FluentMigrator/Fake.FluentMigrator.fsproj index ea619b2f26e..7a9e2b8e6e3 100644 --- a/src/app/Fake.FluentMigrator/Fake.FluentMigrator.fsproj +++ b/src/app/Fake.FluentMigrator/Fake.FluentMigrator.fsproj @@ -188,7 +188,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -277,7 +277,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -317,15 +317,6 @@ - - - - ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -348,15 +339,6 @@ - - - - ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -415,7 +397,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -435,15 +417,6 @@ - - - - ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -529,7 +502,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -549,7 +522,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -578,15 +551,6 @@ - - - - ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -616,15 +580,6 @@ - - - - ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -850,15 +805,6 @@ - - - - ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -970,15 +916,6 @@ - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1105,15 +1042,6 @@ - - - - ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1154,15 +1082,6 @@ - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1286,15 +1205,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1342,15 +1252,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1409,7 +1310,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1536,15 +1437,6 @@ - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1661,15 +1553,6 @@ - - - - ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1690,15 +1573,6 @@ - - - - ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - diff --git a/src/app/Fake.Gallio/Fake.Gallio.fsproj b/src/app/Fake.Gallio/Fake.Gallio.fsproj index 7ff36f95f35..3a1c33a7a45 100644 --- a/src/app/Fake.Gallio/Fake.Gallio.fsproj +++ b/src/app/Fake.Gallio/Fake.Gallio.fsproj @@ -158,7 +158,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -247,7 +247,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -287,15 +287,6 @@ - - - - ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -318,15 +309,6 @@ - - - - ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -385,7 +367,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -405,15 +387,6 @@ - - - - ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -499,7 +472,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -519,7 +492,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -548,15 +521,6 @@ - - - - ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -586,15 +550,6 @@ - - - - ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -820,15 +775,6 @@ - - - - ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -940,15 +886,6 @@ - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1075,15 +1012,6 @@ - - - - ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1124,15 +1052,6 @@ - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1180,13 +1099,6 @@ - - - - True - - - @@ -1263,15 +1175,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1319,15 +1222,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1386,7 +1280,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1513,15 +1407,6 @@ - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1638,15 +1523,6 @@ - - - - ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1667,15 +1543,6 @@ - - - - ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - diff --git a/src/app/Fake.IIS/Fake.IIS.fsproj b/src/app/Fake.IIS/Fake.IIS.fsproj index 858c4a8f4db..a22cf4491f8 100644 --- a/src/app/Fake.IIS/Fake.IIS.fsproj +++ b/src/app/Fake.IIS/Fake.IIS.fsproj @@ -164,7 +164,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -253,7 +253,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -293,15 +293,6 @@ - - - - ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -324,15 +315,6 @@ - - - - ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -391,7 +373,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -411,15 +393,6 @@ - - - - ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -505,7 +478,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -525,7 +498,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -554,15 +527,6 @@ - - - - ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -592,15 +556,6 @@ - - - - ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -826,15 +781,6 @@ - - - - ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -946,15 +892,6 @@ - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1081,15 +1018,6 @@ - - - - ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1130,15 +1058,6 @@ - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1262,15 +1181,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1318,15 +1228,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1385,7 +1286,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1512,15 +1413,6 @@ - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1637,15 +1529,6 @@ - - - - ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1666,15 +1549,6 @@ - - - - ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - diff --git a/src/app/Fake.SQL/Fake.SQL.fsproj b/src/app/Fake.SQL/Fake.SQL.fsproj index 487cb24bf61..7fa5a65a36f 100644 --- a/src/app/Fake.SQL/Fake.SQL.fsproj +++ b/src/app/Fake.SQL/Fake.SQL.fsproj @@ -171,7 +171,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -260,7 +260,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -300,15 +300,6 @@ - - - - ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -331,15 +322,6 @@ - - - - ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -398,7 +380,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -418,15 +400,6 @@ - - - - ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -512,7 +485,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -532,7 +505,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -561,15 +534,6 @@ - - - - ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -599,15 +563,6 @@ - - - - ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -833,15 +788,6 @@ - - - - ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -953,15 +899,6 @@ - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1088,15 +1025,6 @@ - - - - ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1137,15 +1065,6 @@ - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1193,13 +1112,6 @@ - - - - True - - - @@ -1276,15 +1188,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1332,15 +1235,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1399,7 +1293,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1526,15 +1420,6 @@ - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1651,15 +1536,6 @@ - - - - ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1680,15 +1556,6 @@ - - - - ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - diff --git a/src/app/FakeLib/FakeLib.fsproj b/src/app/FakeLib/FakeLib.fsproj index 8607a8c51ec..d623397d598 100644 --- a/src/app/FakeLib/FakeLib.fsproj +++ b/src/app/FakeLib/FakeLib.fsproj @@ -719,7 +719,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -739,15 +739,6 @@ - - - - ..\..\..\packages\Microsoft.Win32.Registry\lib\net461\Microsoft.Win32.Registry.dll - True - True - - - @@ -1241,7 +1232,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -1281,15 +1272,6 @@ - - - - ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -1372,15 +1354,6 @@ - - - - ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -1468,7 +1441,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -1488,15 +1461,6 @@ - - - - ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -1614,7 +1578,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -1634,7 +1598,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -1663,15 +1627,6 @@ - - - - ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -1701,15 +1656,6 @@ - - - - ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -1955,15 +1901,6 @@ - - - - ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -2095,15 +2032,6 @@ - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -2230,15 +2158,6 @@ - - - - ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -2279,15 +2198,6 @@ - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -2393,13 +2303,6 @@ - - - - True - - - @@ -2469,15 +2372,6 @@ - - - - ..\..\..\packages\System.Security.AccessControl\lib\net461\System.Security.AccessControl.dll - True - True - - - @@ -2574,15 +2468,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -2630,15 +2515,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -2697,7 +2573,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -2854,15 +2730,6 @@ - - - - ..\..\..\packages\System.Security.Principal.Windows\lib\net461\System.Security.Principal.Windows.dll - True - True - - - @@ -2941,15 +2808,6 @@ - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -3055,7 +2913,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -3086,15 +2944,6 @@ - - - - ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -3115,15 +2964,6 @@ - - - - ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - @@ -3155,15 +2995,6 @@ - - - - ..\..\..\packages\System.ValueTuple\lib\net47\System.ValueTuple.dll - True - True - - - @@ -3184,7 +3015,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\net46\System.Xml.ReaderWriter.dll diff --git a/src/deploy.web/Fake.Deploy.Web.Abstractions/Fake.Deploy.Web.Abstractions.fsproj b/src/deploy.web/Fake.Deploy.Web.Abstractions/Fake.Deploy.Web.Abstractions.fsproj index 810de643d7a..0f8a8c0dc9f 100644 --- a/src/deploy.web/Fake.Deploy.Web.Abstractions/Fake.Deploy.Web.Abstractions.fsproj +++ b/src/deploy.web/Fake.Deploy.Web.Abstractions/Fake.Deploy.Web.Abstractions.fsproj @@ -141,7 +141,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -230,7 +230,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -270,15 +270,6 @@ - - - - ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -301,15 +292,6 @@ - - - - ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -368,7 +350,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -388,15 +370,6 @@ - - - - ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -482,7 +455,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -502,7 +475,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -531,15 +504,6 @@ - - - - ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -569,15 +533,6 @@ - - - - ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -803,15 +758,6 @@ - - - - ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -923,15 +869,6 @@ - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1055,15 +992,6 @@ - - - - ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1104,15 +1032,6 @@ - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1236,15 +1155,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1292,15 +1202,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1359,7 +1260,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1486,15 +1387,6 @@ - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1611,15 +1503,6 @@ - - - - ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1640,15 +1523,6 @@ - - - - ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - diff --git a/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.File/Fake.Deploy.Web.File.fsproj b/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.File/Fake.Deploy.Web.File.fsproj index ffeb072c3aa..17b0846a796 100644 --- a/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.File/Fake.Deploy.Web.File.fsproj +++ b/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.File/Fake.Deploy.Web.File.fsproj @@ -227,7 +227,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -546,7 +546,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -586,15 +586,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -617,15 +608,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -713,7 +695,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -733,15 +715,6 @@ - - - - ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -859,7 +832,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -879,7 +852,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -908,15 +881,6 @@ - - - - ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -946,15 +910,6 @@ - - - - ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -1200,15 +1155,6 @@ - - - - ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1320,15 +1266,6 @@ - - - - ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1455,15 +1392,6 @@ - - - - ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1504,15 +1432,6 @@ - - - - ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1723,15 +1642,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1779,15 +1689,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1846,7 +1747,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1973,15 +1874,6 @@ - - - - ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -2087,7 +1979,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -2118,15 +2010,6 @@ - - - - ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -2147,15 +2030,6 @@ - - - - ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - @@ -2187,7 +2061,7 @@ - + ..\..\..\..\packages\System.Xml.ReaderWriter\lib\net46\System.Xml.ReaderWriter.dll diff --git a/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.RavenDb/Fake.Deploy.Web.RavenDb.fsproj b/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.RavenDb/Fake.Deploy.Web.RavenDb.fsproj index 2628a9120db..b47ba8c099e 100644 --- a/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.RavenDb/Fake.Deploy.Web.RavenDb.fsproj +++ b/src/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.RavenDb/Fake.Deploy.Web.RavenDb.fsproj @@ -172,7 +172,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -303,7 +303,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -343,15 +343,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -374,15 +365,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -441,7 +423,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -461,15 +443,6 @@ - - - - ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -555,7 +528,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -575,7 +548,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -604,15 +577,6 @@ - - - - ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -642,15 +606,6 @@ - - - - ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -876,15 +831,6 @@ - - - - ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -996,15 +942,6 @@ - - - - ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1131,15 +1068,6 @@ - - - - ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1180,15 +1108,6 @@ - - - - ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1312,15 +1231,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1368,15 +1278,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1435,7 +1336,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1562,15 +1463,6 @@ - - - - ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1687,15 +1579,6 @@ - - - - ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1716,15 +1599,6 @@ - - - - ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - diff --git a/src/deploy.web/Fake.Deploy.Web/Fake.Deploy.Web.fsproj b/src/deploy.web/Fake.Deploy.Web/Fake.Deploy.Web.fsproj index 75e66b87c4d..d1a2ce3411c 100644 --- a/src/deploy.web/Fake.Deploy.Web/Fake.Deploy.Web.fsproj +++ b/src/deploy.web/Fake.Deploy.Web/Fake.Deploy.Web.fsproj @@ -479,7 +479,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -675,13 +675,6 @@ - - - - True - - - @@ -849,7 +842,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -889,15 +882,6 @@ - - - - ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -920,15 +904,6 @@ - - - - ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -1016,7 +991,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -1036,15 +1011,6 @@ - - - - ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -1162,7 +1128,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -1182,7 +1148,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -1211,15 +1177,6 @@ - - - - ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -1249,15 +1206,6 @@ - - - - ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -1315,15 +1263,6 @@ - - - - - True - - - - @@ -1355,6 +1294,9 @@ + + True + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll True @@ -1512,15 +1454,6 @@ - - - - ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1632,15 +1565,6 @@ - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1764,15 +1688,6 @@ - - - - ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1813,15 +1728,6 @@ - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -2032,15 +1938,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -2088,15 +1985,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -2155,7 +2043,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -2282,15 +2170,6 @@ - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -2396,7 +2275,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -2427,15 +2306,6 @@ - - - - ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -2456,15 +2326,6 @@ - - - - ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - @@ -2507,7 +2368,7 @@ - + True @@ -2586,6 +2447,9 @@ + + True + ..\..\..\packages\System.Xml.XmlDocument\lib\net46\System.Xml.XmlDocument.dll True diff --git a/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj b/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj index 30715a14f88..c697d06ec72 100644 --- a/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj +++ b/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj @@ -155,7 +155,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -370,7 +370,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -410,15 +410,6 @@ - - - - ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -441,15 +432,6 @@ - - - - ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -508,7 +490,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -528,15 +510,6 @@ - - - - ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -654,7 +627,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -674,7 +647,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -703,15 +676,6 @@ - - - - ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -741,15 +705,6 @@ - - - - ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -995,15 +950,6 @@ - - - - ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1115,15 +1061,6 @@ - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1250,15 +1187,6 @@ - - - - ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1299,15 +1227,6 @@ - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1489,15 +1408,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1545,15 +1455,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1612,7 +1513,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1739,15 +1640,6 @@ - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1853,7 +1745,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -1884,15 +1776,6 @@ - - - - ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1913,15 +1796,6 @@ - - - - ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - @@ -1953,7 +1827,7 @@ - + True diff --git a/src/test/FsCheck.Fake/FsCheck.Fake.fsproj b/src/test/FsCheck.Fake/FsCheck.Fake.fsproj index 75c56ccc430..36fcaee6873 100644 --- a/src/test/FsCheck.Fake/FsCheck.Fake.fsproj +++ b/src/test/FsCheck.Fake/FsCheck.Fake.fsproj @@ -1,5 +1,6 @@  + @@ -52,14 +53,6 @@ --> - - - - <__paket__xunit_core_props>uap10.0\xunit.core - - - - @@ -236,7 +229,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -363,7 +356,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -403,15 +396,6 @@ - - - - ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -434,15 +418,6 @@ - - - - ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -501,7 +476,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -521,15 +496,6 @@ - - - - ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -647,7 +613,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -667,7 +633,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -696,15 +662,6 @@ - - - - ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -734,15 +691,6 @@ - - - - ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -988,15 +936,6 @@ - - - - ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1108,15 +1047,6 @@ - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1243,15 +1173,6 @@ - - - - ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1292,15 +1213,6 @@ - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1386,13 +1298,6 @@ - - - - True - - - @@ -1469,15 +1374,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1525,15 +1421,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1592,7 +1479,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1719,15 +1606,6 @@ - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1833,7 +1711,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -1864,15 +1742,6 @@ - - - - ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1893,15 +1762,6 @@ - - - - ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - @@ -1933,7 +1793,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\net46\System.Xml.ReaderWriter.dll @@ -2070,4 +1930,5 @@ + \ No newline at end of file diff --git a/src/test/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj b/src/test/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj index 978462590c9..f2ccfcd7c9b 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj @@ -222,7 +222,7 @@ - + True @@ -410,7 +410,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -450,15 +450,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -481,15 +472,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -548,7 +530,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -568,15 +550,6 @@ - - - - ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -588,17 +561,11 @@ - + True - - - - - - ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll True @@ -671,7 +638,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -691,7 +658,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -720,15 +687,6 @@ - - - - ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -758,15 +716,6 @@ - - - - ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -943,15 +892,6 @@ - - - - ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1063,15 +1003,6 @@ - - - - ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1198,15 +1129,6 @@ - - - - ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1247,15 +1169,6 @@ - - - - ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1303,13 +1216,6 @@ - - - - True - - - @@ -1386,15 +1292,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1442,15 +1339,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1509,7 +1397,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1636,15 +1524,6 @@ - - - - ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1761,15 +1640,6 @@ - - - - ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1790,15 +1660,6 @@ - - - - ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj index b53158bf53e..d5d59d2f32e 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj @@ -307,7 +307,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -492,7 +492,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -532,15 +532,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -563,15 +554,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -630,7 +612,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -650,15 +632,6 @@ - - - - ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -744,7 +717,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -764,7 +737,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -793,15 +766,6 @@ - - - - ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -831,15 +795,6 @@ - - - - ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -1065,15 +1020,6 @@ - - - - ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1185,15 +1131,6 @@ - - - - ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1320,15 +1257,6 @@ - - - - ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1369,15 +1297,6 @@ - - - - ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1425,13 +1344,6 @@ - - - - True - - - @@ -1508,15 +1420,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1564,15 +1467,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1631,7 +1525,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1758,15 +1652,6 @@ - - - - ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1883,15 +1768,6 @@ - - - - ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1912,15 +1788,6 @@ - - - - ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj index 78862cf2a75..af3a478e321 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj @@ -306,7 +306,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -491,7 +491,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -531,15 +531,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -562,15 +553,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -629,7 +611,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -649,15 +631,6 @@ - - - - ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -743,7 +716,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -763,7 +736,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -792,15 +765,6 @@ - - - - ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -830,15 +794,6 @@ - - - - ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -1064,15 +1019,6 @@ - - - - ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1184,15 +1130,6 @@ - - - - ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1319,15 +1256,6 @@ - - - - ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1368,15 +1296,6 @@ - - - - ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1424,13 +1343,6 @@ - - - - True - - - @@ -1507,15 +1419,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1563,15 +1466,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1630,7 +1524,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1757,15 +1651,6 @@ - - - - ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1882,15 +1767,6 @@ - - - - ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1911,15 +1787,6 @@ - - - - ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj index 78862cf2a75..af3a478e321 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj @@ -306,7 +306,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -491,7 +491,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -531,15 +531,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -562,15 +553,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -629,7 +611,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -649,15 +631,6 @@ - - - - ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -743,7 +716,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -763,7 +736,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -792,15 +765,6 @@ - - - - ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -830,15 +794,6 @@ - - - - ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -1064,15 +1019,6 @@ - - - - ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1184,15 +1130,6 @@ - - - - ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1319,15 +1256,6 @@ - - - - ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1368,15 +1296,6 @@ - - - - ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1424,13 +1343,6 @@ - - - - True - - - @@ -1507,15 +1419,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1563,15 +1466,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1630,7 +1524,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1757,15 +1651,6 @@ - - - - ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1882,15 +1767,6 @@ - - - - ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1911,15 +1787,6 @@ - - - - ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj index 2bf4bc1959d..87d16575f70 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj @@ -306,7 +306,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -491,7 +491,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -531,15 +531,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -562,15 +553,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -629,7 +611,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -649,15 +631,6 @@ - - - - ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -743,7 +716,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -763,7 +736,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -792,15 +765,6 @@ - - - - ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -830,15 +794,6 @@ - - - - ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -1064,15 +1019,6 @@ - - - - ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1184,15 +1130,6 @@ - - - - ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1319,15 +1256,6 @@ - - - - ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1368,15 +1296,6 @@ - - - - ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1424,13 +1343,6 @@ - - - - True - - - @@ -1507,15 +1419,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1563,15 +1466,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1630,7 +1524,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1757,15 +1651,6 @@ - - - - ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1882,15 +1767,6 @@ - - - - ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1911,15 +1787,6 @@ - - - - ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj index 2bf4bc1959d..87d16575f70 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj @@ -306,7 +306,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -491,7 +491,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -531,15 +531,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -562,15 +553,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -629,7 +611,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -649,15 +631,6 @@ - - - - ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -743,7 +716,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -763,7 +736,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -792,15 +765,6 @@ - - - - ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -830,15 +794,6 @@ - - - - ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -1064,15 +1019,6 @@ - - - - ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1184,15 +1130,6 @@ - - - - ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1319,15 +1256,6 @@ - - - - ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1368,15 +1296,6 @@ - - - - ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1424,13 +1343,6 @@ - - - - True - - - @@ -1507,15 +1419,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1563,15 +1466,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1630,7 +1524,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1757,15 +1651,6 @@ - - - - ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1882,15 +1767,6 @@ - - - - ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1911,15 +1787,6 @@ - - - - ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj index 78862cf2a75..af3a478e321 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj @@ -306,7 +306,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -491,7 +491,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -531,15 +531,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -562,15 +553,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -629,7 +611,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -649,15 +631,6 @@ - - - - ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -743,7 +716,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -763,7 +736,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -792,15 +765,6 @@ - - - - ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -830,15 +794,6 @@ - - - - ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -1064,15 +1019,6 @@ - - - - ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1184,15 +1130,6 @@ - - - - ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1319,15 +1256,6 @@ - - - - ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1368,15 +1296,6 @@ - - - - ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1424,13 +1343,6 @@ - - - - True - - - @@ -1507,15 +1419,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1563,15 +1466,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1630,7 +1524,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1757,15 +1651,6 @@ - - - - ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1882,15 +1767,6 @@ - - - - ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1911,15 +1787,6 @@ - - - - ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj index c51af9f0af8..7645bf37ec7 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj @@ -307,7 +307,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -492,7 +492,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -532,15 +532,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -563,15 +554,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -630,7 +612,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -650,15 +632,6 @@ - - - - ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -744,7 +717,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -764,7 +737,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -793,15 +766,6 @@ - - - - ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -831,15 +795,6 @@ - - - - ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -1065,15 +1020,6 @@ - - - - ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1185,15 +1131,6 @@ - - - - ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1320,15 +1257,6 @@ - - - - ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1369,15 +1297,6 @@ - - - - ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1425,13 +1344,6 @@ - - - - True - - - @@ -1508,15 +1420,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1564,15 +1467,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1631,7 +1525,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1758,15 +1652,6 @@ - - - - ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1883,15 +1768,6 @@ - - - - ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1912,15 +1788,6 @@ - - - - ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj index c51af9f0af8..7645bf37ec7 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj @@ -307,7 +307,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -492,7 +492,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -532,15 +532,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -563,15 +554,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -630,7 +612,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -650,15 +632,6 @@ - - - - ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -744,7 +717,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -764,7 +737,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -793,15 +766,6 @@ - - - - ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -831,15 +795,6 @@ - - - - ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -1065,15 +1020,6 @@ - - - - ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1185,15 +1131,6 @@ - - - - ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1320,15 +1257,6 @@ - - - - ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1369,15 +1297,6 @@ - - - - ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1425,13 +1344,6 @@ - - - - True - - - @@ -1508,15 +1420,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1564,15 +1467,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1631,7 +1525,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1758,15 +1652,6 @@ - - - - ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1883,15 +1768,6 @@ - - - - ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1912,15 +1788,6 @@ - - - - ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - diff --git a/src/test/Test.FAKECore/Test.FAKECore.csproj b/src/test/Test.FAKECore/Test.FAKECore.csproj index 3b48e04dade..cc38055dac0 100644 --- a/src/test/Test.FAKECore/Test.FAKECore.csproj +++ b/src/test/Test.FAKECore/Test.FAKECore.csproj @@ -575,7 +575,7 @@ - + True @@ -763,7 +763,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -803,15 +803,6 @@ - - - - ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -834,15 +825,6 @@ - - - - ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -901,7 +883,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -921,15 +903,6 @@ - - - - ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -941,17 +914,11 @@ - + True - - - - - - ..\..\..\packages\System.IO\lib\net462\System.IO.dll True @@ -1024,7 +991,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -1044,7 +1011,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -1073,15 +1040,6 @@ - - - - ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -1111,15 +1069,6 @@ - - - - ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -1354,15 +1303,6 @@ - - - - ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1474,15 +1414,6 @@ - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1609,15 +1540,6 @@ - - - - ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1658,15 +1580,6 @@ - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1714,13 +1627,6 @@ - - - - True - - - @@ -1797,15 +1703,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1853,15 +1750,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1920,7 +1808,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -2047,15 +1935,6 @@ - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -2172,15 +2051,6 @@ - - - - ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -2201,15 +2071,6 @@ - - - - ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - diff --git a/src/test/Test.FAKECore/TestData/fake_no_template.csproj b/src/test/Test.FAKECore/TestData/fake_no_template.csproj index 683c0758d4c..d3cf52cde82 100644 --- a/src/test/Test.FAKECore/TestData/fake_no_template.csproj +++ b/src/test/Test.FAKECore/TestData/fake_no_template.csproj @@ -213,7 +213,7 @@ - + True @@ -401,7 +401,7 @@ - + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -441,15 +441,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -472,15 +463,6 @@ - - - - ..\..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -539,7 +521,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -559,15 +541,6 @@ - - - - ..\..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -579,17 +552,11 @@ - + True - - - - - - ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll True @@ -662,7 +629,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -682,7 +649,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -711,15 +678,6 @@ - - - - ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -749,15 +707,6 @@ - - - - ..\..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -992,15 +941,6 @@ - - - - ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1112,15 +1052,6 @@ - - - - ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1247,15 +1178,6 @@ - - - - ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1296,15 +1218,6 @@ - - - - ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1352,13 +1265,6 @@ - - - - True - - - @@ -1435,15 +1341,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1491,15 +1388,6 @@ - - - - ..\..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1558,7 +1446,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1685,15 +1573,6 @@ - - - - ..\..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1810,15 +1689,6 @@ - - - - ..\..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1839,15 +1709,6 @@ - - - - ..\..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - diff --git a/src/test/Test.Fake.Deploy.Web.File/Test.Fake.Deploy.Web.File.fsproj b/src/test/Test.Fake.Deploy.Web.File/Test.Fake.Deploy.Web.File.fsproj index 79dfefc3bf5..9f8147fb341 100644 --- a/src/test/Test.Fake.Deploy.Web.File/Test.Fake.Deploy.Web.File.fsproj +++ b/src/test/Test.Fake.Deploy.Web.File/Test.Fake.Deploy.Web.File.fsproj @@ -1,5 +1,6 @@  + @@ -63,14 +64,6 @@ --> - - - - <__paket__xunit_core_props>uap10.0\xunit.core - - - - @@ -162,7 +155,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -289,7 +282,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -329,15 +322,6 @@ - - - - ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -360,15 +344,6 @@ - - - - ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -427,7 +402,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -447,15 +422,6 @@ - - - - ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -573,7 +539,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -593,7 +559,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -622,15 +588,6 @@ - - - - ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -660,15 +617,6 @@ - - - - ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -914,15 +862,6 @@ - - - - ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1034,15 +973,6 @@ - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1169,15 +1099,6 @@ - - - - ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1218,15 +1139,6 @@ - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1388,15 +1300,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1444,15 +1347,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1511,7 +1405,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1638,15 +1532,6 @@ - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1752,7 +1637,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -1783,15 +1668,6 @@ - - - - ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1812,15 +1688,6 @@ - - - - ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - @@ -1852,7 +1719,7 @@ - + True @@ -1992,4 +1859,5 @@ + \ No newline at end of file diff --git a/src/test/Test.Fake.Deploy.Web/Test.Fake.Deploy.Web.fsproj b/src/test/Test.Fake.Deploy.Web/Test.Fake.Deploy.Web.fsproj index 6d69c87036f..2ed0df127d6 100644 --- a/src/test/Test.Fake.Deploy.Web/Test.Fake.Deploy.Web.fsproj +++ b/src/test/Test.Fake.Deploy.Web/Test.Fake.Deploy.Web.fsproj @@ -1,5 +1,6 @@  + @@ -79,14 +80,6 @@ --> - - - - <__paket__xunit_core_props>uap10.0\xunit.core - - - - @@ -273,7 +266,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll @@ -625,7 +618,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -665,15 +658,6 @@ - - - - ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -696,15 +680,6 @@ - - - - ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -792,7 +767,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -812,15 +787,6 @@ - - - - ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -938,7 +904,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -958,7 +924,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -987,15 +953,6 @@ - - - - ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -1025,15 +982,6 @@ - - - - ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -1279,15 +1227,6 @@ - - - - ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1399,15 +1338,6 @@ - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1534,15 +1464,6 @@ - - - - ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1583,15 +1504,6 @@ - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1802,15 +1714,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1858,15 +1761,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1925,7 +1819,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -2052,15 +1946,6 @@ - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -2166,7 +2051,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -2197,15 +2082,6 @@ - - - - ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -2226,15 +2102,6 @@ - - - - ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - @@ -2277,7 +2144,7 @@ - + True @@ -2356,6 +2223,9 @@ + + True + ..\..\..\packages\System.Xml.XmlDocument\lib\net46\System.Xml.XmlDocument.dll True @@ -2447,4 +2317,5 @@ + \ No newline at end of file diff --git a/src/test/Test.Fake.Deploy/Test.Fake.Deploy.csproj b/src/test/Test.Fake.Deploy/Test.Fake.Deploy.csproj index da9d221b9f7..c9c9d52ab45 100644 --- a/src/test/Test.Fake.Deploy/Test.Fake.Deploy.csproj +++ b/src/test/Test.Fake.Deploy/Test.Fake.Deploy.csproj @@ -323,7 +323,7 @@ - + True @@ -797,7 +797,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -837,15 +837,6 @@ - - - - ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -870,6 +861,9 @@ + + True + ..\..\..\packages\System.Diagnostics.TraceSource\lib\net46\System.Diagnostics.TraceSource.dll True @@ -888,15 +882,6 @@ - - - - ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -984,7 +969,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -1004,15 +989,6 @@ - - - - ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -1139,7 +1115,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -1159,7 +1135,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -1188,15 +1164,6 @@ - - - - ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -1226,15 +1193,6 @@ - - - - ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -1500,15 +1458,6 @@ - - - - ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1620,15 +1569,6 @@ - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1755,15 +1695,6 @@ - - - - ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1804,15 +1735,6 @@ - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1898,13 +1820,6 @@ - - - - True - - - @@ -2050,15 +1965,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -2106,15 +2012,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -2173,7 +2070,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -2280,15 +2177,6 @@ - - - - ..\..\..\packages\System.Security.Principal.Windows\lib\net461\System.Security.Principal.Windows.dll - True - True - - - @@ -2367,15 +2255,6 @@ - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -2481,7 +2360,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll @@ -2512,15 +2391,6 @@ - - - - ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -2541,15 +2411,6 @@ - - - - ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - @@ -2581,7 +2442,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\net46\System.Xml.ReaderWriter.dll diff --git a/src/test/Test.Git/Test.Git.csproj b/src/test/Test.Git/Test.Git.csproj index eea4e3043e1..4e9f20f42cc 100644 --- a/src/test/Test.Git/Test.Git.csproj +++ b/src/test/Test.Git/Test.Git.csproj @@ -233,7 +233,7 @@ - + True @@ -325,7 +325,7 @@ - + ..\..\..\packages\System.Console\lib\net46\System.Console.dll @@ -365,15 +365,6 @@ - - - - ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\net46\System.Diagnostics.DiagnosticSource.dll - True - True - - - @@ -396,15 +387,6 @@ - - - - ..\..\..\packages\System.Diagnostics.Tracing\lib\net462\System.Diagnostics.Tracing.dll - True - True - - - @@ -463,7 +445,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll @@ -483,15 +465,6 @@ - - - - ..\..\..\packages\System.Globalization.Extensions\lib\net46\System.Globalization.Extensions.dll - True - True - - - @@ -503,17 +476,11 @@ - + True - - - - - - ..\..\..\packages\System.IO\lib\net462\System.IO.dll True @@ -586,7 +553,7 @@ - + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll @@ -606,7 +573,7 @@ - + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll @@ -635,15 +602,6 @@ - - - - ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll - True - True - - - @@ -673,15 +631,6 @@ - - - - ..\..\..\packages\System.Linq.Expressions\lib\net463\System.Linq.Expressions.dll - True - True - - - @@ -916,15 +865,6 @@ - - - - ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll - True - True - - - @@ -1036,15 +976,6 @@ - - - - ..\..\..\packages\System.Reflection.TypeExtensions\lib\net461\System.Reflection.TypeExtensions.dll - True - True - - - @@ -1171,15 +1102,6 @@ - - - - ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll - True - True - - - @@ -1220,15 +1142,6 @@ - - - - ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll - True - True - - - @@ -1276,13 +1189,6 @@ - - - - True - - - @@ -1359,15 +1265,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Cng\lib\net47\System.Security.Cryptography.Cng.dll - True - True - - - @@ -1415,15 +1312,6 @@ - - - - ..\..\..\packages\System.Security.Cryptography.Csp\lib\net46\System.Security.Cryptography.Csp.dll - True - True - - - @@ -1482,7 +1370,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll @@ -1609,15 +1497,6 @@ - - - - ..\..\..\packages\System.Text.RegularExpressions\lib\net463\System.Text.RegularExpressions.dll - True - True - - - @@ -1734,15 +1613,6 @@ - - - - ..\..\..\packages\System.Threading.Thread\lib\net46\System.Threading.Thread.dll - True - True - - - @@ -1763,15 +1633,6 @@ - - - - ..\..\..\packages\System.Threading.ThreadPool\lib\net46\System.Threading.ThreadPool.dll - True - True - - - From 4a3bf9e1297c1a6af2ffebd5fc422e61af5c4ead Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 13:33:53 +0200 Subject: [PATCH 24/43] fix compilation --- src/app/Fake.Runtime/FakeRuntime.fs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/Fake.Runtime/FakeRuntime.fs b/src/app/Fake.Runtime/FakeRuntime.fs index 5e82baa0498..8ddb0a1b8ea 100644 --- a/src/app/Fake.Runtime/FakeRuntime.fs +++ b/src/app/Fake.Runtime/FakeRuntime.fs @@ -126,7 +126,7 @@ let paketCachingProvider printDetails cacheDir (paketDependencies:Paket.Dependen Paket.NuGet.DownloadAndExtractPackage (None, rootDir, false, PackagesFolderGroupConfig.NoPackagesFolder, source, [], Paket.Constants.MainDependencyGroup, - packageName, version, false, false, false, false) + packageName, version, false, false, false, false, false) |> Async.RunSynchronously //let netstandard = System.Runtime.Loader.AssemblyLoadContext.Default.LoadFromAssemblyName(System.Reflection.AssemblyName("netstandard")) let sdkDir = Path.Combine(extractedFolder, "build", "netstandard2.0", "ref") @@ -155,7 +155,8 @@ let paketCachingProvider printDetails cacheDir (paketDependencies:Paket.Dependen |> ignore let lockFile = paketDependencies.GetLockFile() - let (cache:DependencyCache) = DependencyCache(paketDependencies.GetDependenciesFile(), lockFile) + //let (cache:DependencyCache) = DependencyCache(paketDependencies.GetDependenciesFile(), lockFile) + let (cache:DependencyCache) = DependencyCache(paketDependencies.DependenciesFile, lockFile) if printDetails then Trace.log "Setup DependencyCache..." cache.SetupGroup groupName |> ignore From a1b7a32bf420c98032301b29d98e27705e0423e2 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 14:19:01 +0200 Subject: [PATCH 25/43] detailed errors --- src/test/Fake.Core.IntegrationTests/TestHelpers.fs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/test/Fake.Core.IntegrationTests/TestHelpers.fs b/src/test/Fake.Core.IntegrationTests/TestHelpers.fs index 718c4a48e48..c3ced65fcd5 100644 --- a/src/test/Fake.Core.IntegrationTests/TestHelpers.fs +++ b/src/test/Fake.Core.IntegrationTests/TestHelpers.fs @@ -32,7 +32,8 @@ let directFakeInPath command scenarioPath target = FileName = fakeToolPath WorkingDirectory = scenarioPath Arguments = command } - |> Process.setEnvironmentVariable "target" target) (System.TimeSpan.FromMinutes 15.) + |> Process.setEnvironmentVariable "target" target + |> Process.setEnvironmentVariable "FAKE_DETAILED_ERRORS" "true") (System.TimeSpan.FromMinutes 15.) if result.ExitCode <> 0 then let errors = String.Join(Environment.NewLine,result.Errors) printfn "%s" <| String.Join(Environment.NewLine,result.Messages) From 242ba0eda556f70f61f67d9b009f1fc43a3175a4 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 14:51:58 +0200 Subject: [PATCH 26/43] add resource to fake (required for restore) --- src/app/Fake.Core.Process/Process.fs | 4 ++-- src/app/Fake.netcore/Fake.netcore.fsproj | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app/Fake.Core.Process/Process.fs b/src/app/Fake.Core.Process/Process.fs index 56bd3005319..c286d24b054 100644 --- a/src/app/Fake.Core.Process/Process.fs +++ b/src/app/Fake.Core.Process/Process.fs @@ -241,10 +241,10 @@ type ProcStartInfo = #else #if FX_PASSWORD p.Password <- - let sec = new System.Security.SecureString() + (let sec = new System.Security.SecureString() x.Password |> Seq.iter (sec.AppendChar) sec.MakeReadOnly() - sec + sec) #else failwithf "Password for starting a process was set but with this compiled binary neither ProcessStartInfo.Password nor ProcessStartInfo.PasswordInClearText was available." #endif diff --git a/src/app/Fake.netcore/Fake.netcore.fsproj b/src/app/Fake.netcore/Fake.netcore.fsproj index fc606db3891..9911bb1a056 100644 --- a/src/app/Fake.netcore/Fake.netcore.fsproj +++ b/src/app/Fake.netcore/Fake.netcore.fsproj @@ -16,6 +16,8 @@ + + From 25d83c75e33f1ce0f75136219ce42eabb291358f Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 15:21:34 +0200 Subject: [PATCH 27/43] redirect stderr? --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index fb40fd18882..7979cdbb6b1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,7 +2,7 @@ image: Visual Studio 2017 install: - cinst fake -pre build_script: - - ps: Fake.exe -v run build.fsx + - ps: & fake.exe -v run build.fsx 2>&1 # - ps: .\build.cmd on_failure: - appveyor PushArtifact FAKE.svclog From b322b3cb8771744e9ad4054b6b3a99611b71d4ea Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 15:22:15 +0200 Subject: [PATCH 28/43] appveyor.yml --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 7979cdbb6b1..de1ce1fcc36 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,7 +2,7 @@ image: Visual Studio 2017 install: - cinst fake -pre build_script: - - ps: & fake.exe -v run build.fsx 2>&1 + - ps: "& fake.exe -v run build.fsx 2>&1" # - ps: .\build.cmd on_failure: - appveyor PushArtifact FAKE.svclog From eb315821e43f4e57658f381f327c9de4ca5b0c66 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 15:46:26 +0200 Subject: [PATCH 29/43] detailed errors on bootstrap. --- build.fsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.fsx b/build.fsx index d3510ad0ecd..578308e14dc 100644 --- a/build.fsx +++ b/build.fsx @@ -418,7 +418,8 @@ Target.Create "BootstrapTest" (fun _ -> { info with FileName = "build/FAKE.exe" WorkingDirectory = "." - Arguments = sprintf "%s %s --fsiargs \"--define:BOOTSTRAP_NEW_BUILD\" -pd" script target } + Arguments = sprintf "%s %s --fsiargs \"--define:BOOTSTRAP\" -pd" script target } + |> Process.setEnvironmentVariable "FAKE_DETAILED_ERRORS" "true" #else info.FileName <- "build/FAKE.exe" info.WorkingDirectory <- "." @@ -473,6 +474,7 @@ Target.Create "BootstrapTestDotnetCore" (fun _ -> FileName = fileName WorkingDirectory = "." Arguments = sprintf "run %s --fsiargs \"--define:BOOTSTRAP\" --target %s" script target } + |> Process.setEnvironmentVariable "FAKE_DETAILED_ERRORS" "true" #else info.FileName <- fileName info.WorkingDirectory <- "." From b7edfbc1bba6e9e20ff4c987f565fcd5b675f913 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 16:42:54 +0200 Subject: [PATCH 30/43] make is compile after merges, release notes and add detailed errors for \!BOOTSTRAP as well. --- RELEASE_NOTES.md | 3 +++ build.fsx | 6 ++++++ src/app/Fake.DotNet.Xamarin/Xamarin.fs | 5 +++-- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 441de575978..444f2844b41 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,9 @@ #### 5.0.0-beta006 - 2017-10-22 * BUGFIX: Add `Process.withFramework` to indicate that a process might need to be started with mono and use it in kown wrappers like test-runners - https://github.com/fsharp/FAKE/pull/1697 * DOCS: Typo (https://github.com/fsharp/FAKE/pull/1701), Canopy docs (https://github.com/fsharp/FAKE/pull/1704), some Urls (https://github.com/fsharp/FAKE/pull/1708) +* DOCS: Migrate Slack API documentation for FAKE 5 - (https://github.com/fsharp/FAKE/pull/1706) +* ENHANCEMENT: Provide full fidelity of build options in Xamarin helpers - (https://github.com/fsharp/FAKE/pull/1702) +* ENHANCEMENT: Added WarnAsError to MSBuild options - (https://github.com/fsharp/FAKE/pull/1691) #### 5.0.0-beta005 - 2017-10-02 * ENHANCEMENT: Improve error messages of Fake.Core.Process - https://github.com/fsharp/FAKE/pull/1696 diff --git a/build.fsx b/build.fsx index 09f49d922ed..e8411dcbc6e 100644 --- a/build.fsx +++ b/build.fsx @@ -388,6 +388,9 @@ Target.Create "TestDotnetCore" (fun _ -> Target.Create "BootstrapTest" (fun _ -> let buildScript = "build.fsx" let testScript = "testbuild.fsx" +#if !BOOTSTRAP + Environment.setEnvironVar "FAKE_DETAILED_ERRORS" "true" +#endif // Check if we can build ourself with the new binaries. let test clearCache (script:string) = let clear () = @@ -451,6 +454,9 @@ Target.Create "BootstrapTest" (fun _ -> Target.Create "BootstrapTestDotnetCore" (fun _ -> let buildScript = "build.fsx" let testScript = "testbuild.fsx" +#if !BOOTSTRAP + Environment.setEnvironVar "FAKE_DETAILED_ERRORS" "true" +#endif // Check if we can build ourself with the new binaries. let test timeout clearCache script = let clear () = diff --git a/src/app/Fake.DotNet.Xamarin/Xamarin.fs b/src/app/Fake.DotNet.Xamarin/Xamarin.fs index 97d37a8d5e1..71eb16c82d3 100644 --- a/src/app/Fake.DotNet.Xamarin/Xamarin.fs +++ b/src/app/Fake.DotNet.Xamarin/Xamarin.fs @@ -17,8 +17,9 @@ open Fake.DotNet.MsBuild let private executeCommand command args = ExecProcessAndReturnMessages (fun p -> - p.FileName <- command - p.Arguments <- args + { p with + FileName = command + Arguments = args } ) TimeSpan.MaxValue |> fun result -> let output = String.Join (Environment.NewLine, result.Messages) From 4aa156d1f580d2ca2d6534b07c0610b858cca195 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 16:53:58 +0200 Subject: [PATCH 31/43] powershell is a big mistake --- appveyor.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index de1ce1fcc36..8a0b761b3a8 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,7 +2,8 @@ image: Visual Studio 2017 install: - cinst fake -pre build_script: - - ps: "& fake.exe -v run build.fsx 2>&1" + - ps: | + & fake.exe -v run build.fsx 2>&1 | %{ "$_" } # - ps: .\build.cmd on_failure: - appveyor PushArtifact FAKE.svclog From 8242221a83e8651e4d57b2516b6a337e1e98b26a Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 17:58:57 +0200 Subject: [PATCH 32/43] appveyor again. --- appveyor.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index 8a0b761b3a8..9a8f7915cd9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -4,6 +4,11 @@ install: build_script: - ps: | & fake.exe -v run build.fsx 2>&1 | %{ "$_" } + if ($LASTEXITCODE -ne 0) { + throw "fake failed with $LASTEXITCODE" + } else { + Write-Host "Fake build finished sucessfully" + } # - ps: .\build.cmd on_failure: - appveyor PushArtifact FAKE.svclog From b51008661db5b476cc145c8d9b00f7d81f97dba8 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 18:55:06 +0200 Subject: [PATCH 33/43] debug paket issue --- appveyor.yml | 1 + src/app/Fake.Runtime/FakeRuntime.fs | 18 +++++++++++++++++- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 9a8f7915cd9..b980b2032b1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,6 +2,7 @@ image: Visual Studio 2017 install: - cinst fake -pre build_script: +# See https://stackoverflow.com/a/12866669/1269722 - ps: | & fake.exe -v run build.fsx 2>&1 | %{ "$_" } if ($LASTEXITCODE -ne 0) { diff --git a/src/app/Fake.Runtime/FakeRuntime.fs b/src/app/Fake.Runtime/FakeRuntime.fs index 8ddb0a1b8ea..ea5166bb81b 100644 --- a/src/app/Fake.Runtime/FakeRuntime.fs +++ b/src/app/Fake.Runtime/FakeRuntime.fs @@ -158,8 +158,24 @@ let paketCachingProvider printDetails cacheDir (paketDependencies:Paket.Dependen //let (cache:DependencyCache) = DependencyCache(paketDependencies.GetDependenciesFile(), lockFile) let (cache:DependencyCache) = DependencyCache(paketDependencies.DependenciesFile, lockFile) if printDetails then Trace.log "Setup DependencyCache..." - cache.SetupGroup groupName |> ignore + try + cache.SetupGroup groupName |> ignore + with e when e.Message.Contains "doesn't exist. Did you restore" -> + let idx = e.Message.IndexOf(" doesn't exist. Did you restore") + let folder = e.Message.Substring("Folder ".Length, idx - "Folder ".Length) + let rec printFolder f = + if not (System.IO.Directory.Exists f) then + printfn "Dir '%s' doesn't exist" f + else + printfn "Dir '%s':" f + System.IO.Directory.EnumerateDirectories(f) + |> Seq.iter (fun dir -> printfn " -> %s" dir) + let parent = System.IO.Path.GetDirectoryName(f) + if not (isNull parent) then + printFolder parent + printFolder folder + reraise() let orderedGroup = cache.OrderedGroups groupName // lockFile.GetGroup groupName // Write loadDependencies file (basically only for editor support) let intellisenseFile = Path.Combine (cacheDir, "intellisense.fsx") From b295023ccb1c7b471ed49bcfd7f7eb683f72bc06 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 19:22:42 +0200 Subject: [PATCH 34/43] (appveyor) print warnings in red --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index b980b2032b1..10c72955581 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -4,7 +4,7 @@ install: build_script: # See https://stackoverflow.com/a/12866669/1269722 - ps: | - & fake.exe -v run build.fsx 2>&1 | %{ "$_" } + & fake.exe -v run build.fsx 2>&1 | %{ if ($_ -is [System.Management.Automation.ErrorRecord]) { write-host "$_" -foregroundcolor "red" } else { "$_" } } if ($LASTEXITCODE -ne 0) { throw "fake failed with $LASTEXITCODE" } else { From ae2425c7b065d0339bae9479e985fa470d1a649f Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 19:27:43 +0200 Subject: [PATCH 35/43] (appveyor) get colors back --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 10c72955581..42de7ccbe06 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -4,7 +4,7 @@ install: build_script: # See https://stackoverflow.com/a/12866669/1269722 - ps: | - & fake.exe -v run build.fsx 2>&1 | %{ if ($_ -is [System.Management.Automation.ErrorRecord]) { write-host "$_" -foregroundcolor "red" } else { "$_" } } + & fake.exe -v run build.fsx 2>&1 if ($LASTEXITCODE -ne 0) { throw "fake failed with $LASTEXITCODE" } else { From 2f5a7a1be50f7128ebe5127cbc023194cc0c6de9 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 19:39:33 +0200 Subject: [PATCH 36/43] Cleanup Xamarin modules --- src/app/Fake.DotNet.Xamarin/Xamarin.fs | 5 ----- src/app/FakeLib/XamarinHelper.fs | 11 +++++++++++ 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/src/app/Fake.DotNet.Xamarin/Xamarin.fs b/src/app/Fake.DotNet.Xamarin/Xamarin.fs index 71eb16c82d3..bb601088c57 100644 --- a/src/app/Fake.DotNet.Xamarin/Xamarin.fs +++ b/src/app/Fake.DotNet.Xamarin/Xamarin.fs @@ -27,7 +27,6 @@ let private executeCommand command args = if result.ExitCode <> 0 then failwithf "%s exited with error %d" command result.ExitCode /// The package restore paramater type -[] type XamarinComponentRestoreParams = { /// Path to xamarin-component.exe, defaults to checking tools/xpkg ToolPath: string @@ -50,7 +49,6 @@ let RestoreComponents setParams projectFile = |> restoreComponents projectFile /// The iOS build paramater type -[] type iOSBuildParams = { /// (Required) Path to solution or project file ProjectPath: string @@ -176,7 +174,6 @@ let iOSBuild setParams = |> buildProject /// The Android packaging parameter type -[] type AndroidPackageParams = { /// (Required) Path to the Android project file (not the solution file!) ProjectPath: string @@ -368,7 +365,6 @@ let AndroidPackage setParams = AndroidBuildPackages setParams |> Seq.exactlyOne // Parameters for signing and aligning an Android package -[] type AndroidSignAndAlignParams = { /// (Required) Path to keystore used to sign the app KeystorePath: string @@ -437,7 +433,6 @@ let AndroidSignAndAlignPackages setParams apkFiles = apkFiles |> Seq.map (fun f -> AndroidSignAndAlign setParams f) /// The iOS archive paramater type -[] type iOSArchiveParams = { /// Path to desired solution file. If not provided, mdtool finds the first solution in the current directory. /// Although mdtool can take a project file, the archiving seems to fail to work without a solution. diff --git a/src/app/FakeLib/XamarinHelper.fs b/src/app/FakeLib/XamarinHelper.fs index 2ab25308385..086c8243a9b 100644 --- a/src/app/FakeLib/XamarinHelper.fs +++ b/src/app/FakeLib/XamarinHelper.fs @@ -1,4 +1,5 @@ /// Contains tasks for building Xamarin.iOS and Xamarin.Android apps +[] module Fake.XamarinHelper open System @@ -20,12 +21,14 @@ let private executeCommand command args = /// The package restore paramater type [] +[] type XamarinComponentRestoreParams = { /// Path to xamarin-component.exe, defaults to checking tools/xpkg ToolPath: string } /// The default package restore parameters +[] let XamarinComponentRestoreDefaults = { ToolPath = findToolInSubPath "xamarin-component.exe" (currentDirectory @@ "tools" @@ "xpkg") } @@ -33,6 +36,7 @@ let XamarinComponentRestoreDefaults = { /// Restores NuGet packages and Xamarin Components for a project or solution /// ## Parameters /// - `setParams` - Function used to override the default package restore parameters +[] let RestoreComponents setParams projectFile = let restoreComponents project param = executeCommand param.ToolPath ("restore " + project) @@ -42,6 +46,7 @@ let RestoreComponents setParams projectFile = |> restoreComponents projectFile /// The iOS build paramater type +[] [] type iOSBuildParams = { /// (Required) Path to solution or project file @@ -71,6 +76,7 @@ type iOSBuildParams = { } /// The default iOS build parameters +[] let iOSBuildDefaults = { ProjectPath = "" Target = "Build" @@ -92,10 +98,12 @@ let iOSBuildDefaults = { } +[] type AndroidAbiTargetConfig = { SuffixAndExtension: string } +[] type AndroidAbiTarget = | X86 of AndroidAbiTargetConfig | ArmEabi of AndroidAbiTargetConfig @@ -104,10 +112,12 @@ type AndroidAbiTarget = | X86And64 of AndroidAbiTargetConfig | AllAbi +[] type AndroidPackageAbiParam = | OneApkForAll | SpecificAbis of AndroidAbiTarget list +[] let AllAndroidAbiTargets = AndroidPackageAbiParam.SpecificAbis ( [ AndroidAbiTarget.X86({ SuffixAndExtension="-x86.apk"; }) @@ -117,6 +127,7 @@ let AllAndroidAbiTargets = AndroidAbiTarget.X86And64({ SuffixAndExtension="-x86_64.apk"; }) ] ) +[] type IncrementerVersion = int32 -> AndroidAbiTarget -> int32 /// Builds a project or solution using Xamarin's iOS build tools From f1c9448ed6a8b0d5d92fa285c3bf7a09cbd7335a Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 20:34:23 +0200 Subject: [PATCH 37/43] powershell is crap. --- appveyor.yml | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 42de7ccbe06..8948ba16e2a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,9 +3,25 @@ install: - cinst fake -pre build_script: # See https://stackoverflow.com/a/12866669/1269722 +# Problem is that colors are lost +# Don't blame me but powershell is the bigest crap on earth - ps: | - & fake.exe -v run build.fsx 2>&1 - if ($LASTEXITCODE -ne 0) { + $pinfo = New-Object System.Diagnostics.ProcessStartInfo + $pinfo.FileName = "fake.exe" + $pinfo.RedirectStandardError = $true + $pinfo.RedirectStandardOutput = $false + $pinfo.UseShellExecute = $false + $pinfo.Arguments = '-v run build.fsx' + $p = New-Object System.Diagnostics.Process + $p.StartInfo = $pinfo + Register-ObjectEvent -InputObject $p -EventName ErrorDataReceived -Action { + $Global:test = $Event + Write-Host $test.SourceEventArgs.Data -ForegroundColor red + } | Out-Null + $p.Start() | Out-Null + $p.BeginErrorReadLine() + $p.WaitForExit() + if ($p.ExitCode -ne 0) { throw "fake failed with $LASTEXITCODE" } else { Write-Host "Fake build finished sucessfully" From 88ec605a26d89dfb8cf1ac18801ebe6fed2810bc Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 20:40:13 +0200 Subject: [PATCH 38/43] ... --- appveyor.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/appveyor.yml b/appveyor.yml index 8948ba16e2a..66095f68cc3 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -8,6 +8,7 @@ build_script: - ps: | $pinfo = New-Object System.Diagnostics.ProcessStartInfo $pinfo.FileName = "fake.exe" + $pinfo.WorkingDirecory = $pwd $pinfo.RedirectStandardError = $true $pinfo.RedirectStandardOutput = $false $pinfo.UseShellExecute = $false From 6b030029c07811076e52eb6a411be172ca29d7f9 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 20:41:55 +0200 Subject: [PATCH 39/43] typo. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 66095f68cc3..bb89d15bec2 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -8,7 +8,7 @@ build_script: - ps: | $pinfo = New-Object System.Diagnostics.ProcessStartInfo $pinfo.FileName = "fake.exe" - $pinfo.WorkingDirecory = $pwd + $pinfo.WorkingDirectory = $pwd $pinfo.RedirectStandardError = $true $pinfo.RedirectStandardOutput = $false $pinfo.UseShellExecute = $false From a33369db2419d1ba4bb165a9a275106f7d926af8 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 20:51:20 +0200 Subject: [PATCH 40/43] ... --- appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index bb89d15bec2..cd5a95b01c1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -21,6 +21,8 @@ build_script: } | Out-Null $p.Start() | Out-Null $p.BeginErrorReadLine() + $exited = $p.HasExited + while ($exited -eq $false) { $p.Refresh(); $exited = $p.HasExited; [System.Threading.Thread]::Sleep(50) } $p.WaitForExit() if ($p.ExitCode -ne 0) { throw "fake failed with $LASTEXITCODE" From d09963936290b35c4a79528b635873f3bdeb3d4d Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 20:54:35 +0200 Subject: [PATCH 41/43] wow. --- appveyor.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index cd5a95b01c1..7d0705ca42c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -10,6 +10,7 @@ build_script: $pinfo.FileName = "fake.exe" $pinfo.WorkingDirectory = $pwd $pinfo.RedirectStandardError = $true + $pinfo.CreateNoWindow = $true $pinfo.RedirectStandardOutput = $false $pinfo.UseShellExecute = $false $pinfo.Arguments = '-v run build.fsx' @@ -22,7 +23,7 @@ build_script: $p.Start() | Out-Null $p.BeginErrorReadLine() $exited = $p.HasExited - while ($exited -eq $false) { $p.Refresh(); $exited = $p.HasExited; [System.Threading.Thread]::Sleep(50) } + while ($exited -eq $false) { $p.Refresh(); $exited = $p.HasExited; Start-Sleep -m 50 } $p.WaitForExit() if ($p.ExitCode -ne 0) { throw "fake failed with $LASTEXITCODE" From fc464dddff49c2fa6b4bb33a1f9f022f4c68ae4a Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 21:29:22 +0200 Subject: [PATCH 42/43] ... --- appveyor.yml | 26 ++------------------------ 1 file changed, 2 insertions(+), 24 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 7d0705ca42c..49900b734df 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,30 +6,8 @@ build_script: # Problem is that colors are lost # Don't blame me but powershell is the bigest crap on earth - ps: | - $pinfo = New-Object System.Diagnostics.ProcessStartInfo - $pinfo.FileName = "fake.exe" - $pinfo.WorkingDirectory = $pwd - $pinfo.RedirectStandardError = $true - $pinfo.CreateNoWindow = $true - $pinfo.RedirectStandardOutput = $false - $pinfo.UseShellExecute = $false - $pinfo.Arguments = '-v run build.fsx' - $p = New-Object System.Diagnostics.Process - $p.StartInfo = $pinfo - Register-ObjectEvent -InputObject $p -EventName ErrorDataReceived -Action { - $Global:test = $Event - Write-Host $test.SourceEventArgs.Data -ForegroundColor red - } | Out-Null - $p.Start() | Out-Null - $p.BeginErrorReadLine() - $exited = $p.HasExited - while ($exited -eq $false) { $p.Refresh(); $exited = $p.HasExited; Start-Sleep -m 50 } - $p.WaitForExit() - if ($p.ExitCode -ne 0) { - throw "fake failed with $LASTEXITCODE" - } else { - Write-Host "Fake build finished sucessfully" - } + cmd /c '(((fake.exe -v run build.fsx 1>&3) 2>&1) | @powershell -Command "$input | write-host -foregroundcolor red") 3>&1' + # - ps: .\build.cmd on_failure: - appveyor PushArtifact FAKE.svclog From 6c1635335a8d91fe051fd98cf37c6d8d2ef9fb4b Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 22 Oct 2017 21:43:30 +0200 Subject: [PATCH 43/43] no powershell --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 49900b734df..90de4983b9a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,7 +6,7 @@ build_script: # Problem is that colors are lost # Don't blame me but powershell is the bigest crap on earth - ps: | - cmd /c '(((fake.exe -v run build.fsx 1>&3) 2>&1) | @powershell -Command "$input | write-host -foregroundcolor red") 3>&1' + cmd /c '(((fake.exe -v run build.fsx 1>&3) 2>&1)) 3>&1' # - ps: .\build.cmd on_failure: