From a656dc7028f0791263dc44cfad25e07a9370725d Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 3 Sep 2017 11:18:00 +0200 Subject: [PATCH 01/25] paket update --- .../Fake_WebSite.Tests.csproj | 2 +- .../YaafFSharpScripting.fs | 24 +- .../Yaaf.FSharp.Scripting/paket.version | 2 +- paket.dependencies | 12 +- paket.lock | 3183 ++++++++++------- src/app/FAKE/FAKE.fsproj | 375 +- src/app/FAKE/app.config | 5 - .../Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj | 446 ++- src/app/Fake.Deploy.Lib/app.config | 5 - src/app/Fake.Deploy/Fake.Deploy.fsproj | 471 ++- src/app/Fake.Deploy/app.config | 5 - .../Fake.Experimental.fsproj | 313 +- src/app/Fake.Experimental/app.config | 5 - .../Fake.FluentMigrator.fsproj | 310 +- src/app/Fake.Gallio/Fake.Gallio.fsproj | 313 +- src/app/Fake.Gallio/app.config | 5 - src/app/Fake.IIS/Fake.IIS.fsproj | 308 +- src/app/Fake.IIS/app.config | 5 - src/app/Fake.SQL/Fake.SQL.fsproj | 313 +- src/app/Fake.SQL/app.config | 5 - src/app/FakeLib/FakeLib.fsproj | 587 ++- src/app/FakeLib/app.config | 5 - .../Fake.Deploy.Web.Abstractions.fsproj | 299 +- .../Fake.Deploy.Web.File.fsproj | 388 +- .../Fake.Deploy.Web.RavenDb.fsproj | 308 +- src/deploy.web/Fake.Deploy.Web/App.config | 5 - .../Fake.Deploy.Web/Fake.Deploy.Web.fsproj | 429 ++- .../Fake.Core.IntegrationTests.fsproj | 401 ++- src/test/FsCheck.Fake/FsCheck.Fake.fsproj | 379 +- src/test/FsCheck.Fake/app.config | 5 - .../ProjectTestFiles/CSharpApp.csproj | 291 +- .../ProjectTestFiles/FakeLib.fsproj | 327 +- .../ProjectTestFiles/FakeLib2.csproj | 327 +- .../ProjectTestFiles/FakeLib2.fsproj | 327 +- .../ProjectTestFiles/FakeLib3.csproj | 327 +- .../ProjectTestFiles/FakeLib3.fsproj | 327 +- .../ProjectTestFiles/FakeLib4.fsproj | 327 +- .../ProjectTestFiles/FakeLib5.fsproj | 327 +- .../ProjectTestFiles/FakeLib6.fsproj | 327 +- src/test/Test.FAKECore/Test.FAKECore.csproj | 330 +- .../TestData/fake_no_template.csproj | 330 +- src/test/Test.FAKECore/app.config | 5 - .../Test.Fake.Deploy.Web.File.fsproj | 372 +- .../Test.Fake.Deploy.Web.fsproj | 418 ++- src/test/Test.Fake.Deploy.Web/app.config | 5 - .../Test.Fake.Deploy/Test.Fake.Deploy.csproj | 440 ++- src/test/Test.Fake.Deploy/app.config | 5 - src/test/Test.Git/Test.Git.csproj | 320 +- src/test/Test.Git/app.config | 5 - 49 files changed, 9101 insertions(+), 4949 deletions(-) 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 843524df2e6..ed4edb50a64 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-files/matthid/Yaaf.FSharp.Scripting/src/source/Yaaf.FSharp.Scripting/YaafFSharpScripting.fs b/paket-files/matthid/Yaaf.FSharp.Scripting/src/source/Yaaf.FSharp.Scripting/YaafFSharpScripting.fs index 506f951783a..a553eea20fe 100644 --- a/paket-files/matthid/Yaaf.FSharp.Scripting/src/source/Yaaf.FSharp.Scripting/YaafFSharpScripting.fs +++ b/paket-files/matthid/Yaaf.FSharp.Scripting/src/source/Yaaf.FSharp.Scripting/YaafFSharpScripting.fs @@ -277,7 +277,7 @@ module internal CompilerServiceExtensions = let results = checker.ParseAndCheckProject(options) |> Async.RunSynchronously let mapError (err:FSharpErrorInfo) = - sprintf "**** %s: %s" (if err.Severity = Microsoft.FSharp.Compiler.FSharpErrorSeverity.Error then "error" else "warning") err.Message + sprintf "**** %s: %s" (if err.Severity = FSharpErrorSeverity.Error then "error" else "warning") err.Message if results.HasCriticalErrors then let errors = results.Errors |> Seq.map mapError let errorMsg = sprintf "Parsing and checking project failed: \n\t%s" (System.String.Join("\n\t", errors)) @@ -726,9 +726,31 @@ module internal Extensions = x.EvalInteraction (sprintf "open %s" ns) member x.Reference file = x.EvalInteraction (sprintf "#r @\"%s\"" file) + member x.Include dir = + x.EvalInteraction (sprintf "#I @\"%s\"" dir) member x.Load file = x.EvalInteraction (sprintf "#load @\"%s\" " file) + /// Change the current directory (so that relative paths within scripts work properly). + /// Returns a handle to change the current directory back to it's initial state + /// (Because this will change the current directory of the currently running code as well!). + member x.Cd dir = + let oldDir = System.IO.Directory.GetCurrentDirectory() + let cd dir = + x.EvalInteraction (sprintf "#cd @\"%s\"" dir) + cd dir + let isDisposed = ref false + { new System.IDisposable with + member __.Dispose() = + if not !isDisposed then + cd oldDir + isDisposed := true } + + /// Same as Cd but takes a function for the scope. + member x.WithCd dir f = + use __ = x.ChangeCurrentDirectory dir + f () + /// Change the current directory (so that relative paths within scripts work properly). /// Returns a handle to change the current directory back to it's initial state /// (Because this will change the current directory of the currently running code as well!). diff --git a/paket-files/matthid/Yaaf.FSharp.Scripting/src/source/Yaaf.FSharp.Scripting/paket.version b/paket-files/matthid/Yaaf.FSharp.Scripting/src/source/Yaaf.FSharp.Scripting/paket.version index 10eeafb31d0..d5359b43e43 100644 --- a/paket-files/matthid/Yaaf.FSharp.Scripting/src/source/Yaaf.FSharp.Scripting/paket.version +++ b/paket-files/matthid/Yaaf.FSharp.Scripting/src/source/Yaaf.FSharp.Scripting/paket.version @@ -1 +1 @@ -40ef4e32a115962436809666b6868693be6444c2 +cb0ca0f74e3f7356b88c5fd4246b0a4dbd2624eb diff --git a/paket.dependencies b/paket.dependencies index 23478295e4a..ade6cb68065 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -1,8 +1,8 @@ -version 5.92.3 +version 5.92.2 content: none // just in case we need some special nuget feature again... //source https://ci.appveyor.com/nuget/paket -source http://nuget.org/api/v2 +source https://api.nuget.org/v3/index.json nuget FSharp.Core ~> 4.1.0 redirects: force nuget Knockout @@ -26,7 +26,7 @@ nuget SSH.NET // Because of net45 support nuget Microsoft.Web.Administration 7.0.0 nuget Mono.Web.Xdt -nuget Mono.Cecil +nuget Mono.Cecil prerelease nuget Nuget.Core nuget bootstrap nuget Knockout.Mapping @@ -54,7 +54,7 @@ github matthid/Yaaf.FSharp.Scripting src/source/Yaaf.FSharp.Scripting/YaafFSharp group Build content: none - source http://nuget.org/api/v2 + source https://api.nuget.org/v3/index.json source https://ci.appveyor.com/nuget/fake source https://ci.appveyor.com/nuget/fsharp-formatting @@ -70,7 +70,7 @@ group Build // [ FAKE GROUP ] group NetcoreBuild - source https://nuget.org/api/v2 + source https://api.nuget.org/v3/index.json storage: none //source https://ci.appveyor.com/nuget/fake @@ -98,7 +98,7 @@ group NetcoreBuild group netcore //source https://ci.appveyor.com/nuget/paket - source http://nuget.org/api/v2 + source https://api.nuget.org/v3/index.json storage: none framework: netstandard1.6, netcoreapp1.0 diff --git a/paket.lock b/paket.lock index e53e727537d..66989e88bd1 100644 --- a/paket.lock +++ b/paket.lock @@ -1,6 +1,6 @@ CONTENT: NONE NUGET - remote: http://www.nuget.org/api/v2 + remote: https://api.nuget.org/v3/index.json Argu (3.3) FSharp.Core (>= 4.0.1.7-alpha) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6) - restriction: >= netstandard1.6 @@ -17,82 +17,56 @@ NUGET FluentMigrator (1.6.2) FluentMigrator.Runner (1.6.2) FluentMigrator (>= 1.6.2) - FsCheck (2.9) + FsCheck (2.9.2) FSharp.Core (>= 4.1) - restriction: < netstandard1.6 - FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - FsCheck.Xunit (2.9) - FsCheck (>= 2.9) - FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FsCheck.Xunit (2.9.2) + FsCheck (>= 2.9.2) + FSharp.Core (>= 4.1.18) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 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 (13.0) - content: none - FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 - Microsoft.DiaSymReader (>= 1.1) - restriction: >= netstandard1.6 - Microsoft.DiaSymReader.PortablePdb (>= 1.2) - restriction: >= netstandard1.6 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: >= netstandard1.6 - Microsoft.NETCore.Targets (>= 1.1) - 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 - runtime.native.System (>= 4.3) - restriction: >= netstandard1.6 - runtime.native.System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 - System.Buffers (>= 4.3) - restriction: >= netstandard1.6 - System.Collections (>= 4.3) - restriction: >= netstandard1.6 + System.Collections.Immutable (>= 1.2) - restriction: >= net45 System.Collections.Immutable (>= 1.3) - restriction: >= netstandard1.6 - System.Collections.Immutable (>= 1.3.1) - restriction: < netstandard1.6 - System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard1.6 System.Diagnostics.Process (>= 4.1) - restriction: >= netstandard1.6 System.Diagnostics.TraceSource (>= 4.0) - restriction: >= netstandard1.6 - System.Diagnostics.Tracing (>= 4.3) - restriction: >= netstandard1.6 - System.Globalization (>= 4.3) - restriction: >= netstandard1.6 - System.IO (>= 4.3) - restriction: >= netstandard1.6 - System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 - System.Linq (>= 4.3) - restriction: >= netstandard1.6 - System.Reflection (>= 4.3) - restriction: >= netstandard1.6 System.Reflection.Emit (>= 4.3) - restriction: >= netstandard1.6 - System.Reflection.Extensions (>= 4.3) - restriction: >= netstandard1.6 System.Reflection.Metadata (>= 1.4.1) - restriction: >= netstandard1.6 - System.Reflection.Metadata (>= 1.4.2) - restriction: < netstandard1.6 - System.Reflection.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Metadata (>= 1.4.2) - restriction: >= net45 System.Reflection.TypeExtensions (>= 4.3) - restriction: >= netstandard1.6 - System.Resources.ResourceManager (>= 4.3) - restriction: >= netstandard1.6 - System.Runtime (>= 4.3) - restriction: >= netstandard1.6 - System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard1.6 - System.Runtime.Handles (>= 4.3) - restriction: >= netstandard1.6 - System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.6 System.Runtime.Loader (>= 4.0) - restriction: >= netstandard1.6 System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.6 - System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.6 - System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard1.6 - System.Threading (>= 4.3) - restriction: >= netstandard1.6 - System.Threading.Tasks (>= 4.3) - restriction: >= netstandard1.6 - FSharp.Compiler.Tools (4.1.17) - FSharp.Core (4.1.17) - redirects: force - System.Collections (>= 4.0.11) - restriction: >= netstandard1.6 - System.Console (>= 4.0) - restriction: >= netstandard1.6 - System.Diagnostics.Debug (>= 4.0.11) - restriction: >= netstandard1.6 - System.Diagnostics.Tools (>= 4.0.1) - restriction: >= netstandard1.6 - System.Globalization (>= 4.0.11) - restriction: >= netstandard1.6 - System.IO (>= 4.1) - restriction: >= netstandard1.6 - System.Linq (>= 4.1) - restriction: >= netstandard1.6 - System.Linq.Expressions (>= 4.1) - restriction: >= netstandard1.6 - System.Linq.Queryable (>= 4.0.1) - restriction: >= netstandard1.6 - System.Net.Requests (>= 4.0.11) - restriction: >= netstandard1.6 - System.Reflection (>= 4.1) - restriction: >= netstandard1.6 - System.Reflection.Extensions (>= 4.0.1) - restriction: >= netstandard1.6 - System.Resources.ResourceManager (>= 4.0.1) - restriction: >= netstandard1.6 - System.Runtime (>= 4.1) - restriction: >= netstandard1.6 - System.Runtime.Extensions (>= 4.1) - restriction: >= netstandard1.6 - System.Runtime.Numerics (>= 4.0.1) - restriction: >= netstandard1.6 - System.Text.RegularExpressions (>= 4.1) - restriction: >= netstandard1.6 - System.Threading (>= 4.0.11) - restriction: >= netstandard1.6 - System.Threading.Tasks (>= 4.0.11) - restriction: >= netstandard1.6 - System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: >= netstandard1.6 - System.Threading.Thread (>= 4.0) - restriction: >= netstandard1.6 - System.Threading.ThreadPool (>= 4.0.10) - restriction: >= netstandard1.6 - System.Threading.Timer (>= 4.0.1) - restriction: >= netstandard1.6 - System.ValueTuple (>= 4.3) - restriction: < netstandard1.6 + System.ValueTuple (>= 4.4) - restriction: >= netstandard1.6 + FSharp.Compiler.Tools (4.1.23) - 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) HashLib (2.0.1) jQuery (3.1.1) Knockout (0.0.1) @@ -116,73 +90,36 @@ NUGET Microsoft.Bcl.Build (>= 1.0.14) Microsoft.Bcl.Build (1.0.21) - import_targets: false Microsoft.CompilerServices.AsyncTargetingPack (1.0.1) - restriction: < net45 - Microsoft.CSharp (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net35) (< uap100) (>= netstandard1.3)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.ObjectModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.DiaSymReader (1.1) - content: none, restriction: >= netstandard1.6 - System.Diagnostics.Debug (>= 4.0.11) - restriction: >= netstandard1.1 - System.Runtime (>= 4.1) - restriction: >= netstandard1.1 - System.Runtime.InteropServices (>= 4.1) - restriction: >= netstandard1.1 - Microsoft.DiaSymReader.PortablePdb (1.2) - content: none, restriction: >= netstandard1.6 - Microsoft.DiaSymReader (>= 1.1) - restriction: >= portable-net45+win8 - System.Collections (>= 4.3) - restriction: >= netstandard1.1 - System.Collections.Immutable (>= 1.3.1) - restriction: >= portable-net45+win8 - System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard1.1 - System.Globalization (>= 4.3) - restriction: >= netstandard1.1 - System.IO (>= 4.3) - restriction: >= netstandard1.1 - System.Linq (>= 4.3) - restriction: >= netstandard1.1 - System.Reflection (>= 4.3) - restriction: >= netstandard1.1 - System.Reflection.Metadata (>= 1.4.2) - restriction: >= portable-net45+win8 - System.Reflection.Primitives (>= 4.3) - restriction: >= netstandard1.1 - System.Runtime (>= 4.3) - restriction: >= netstandard1.1 - System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard1.1 - System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.1 - System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.1 - System.Threading (>= 4.3) - restriction: >= netstandard1.1 - Microsoft.DotNet.PlatformAbstractions (1.1.2) - System.AppContext (>= 4.1) - restriction: && (< net451) (>= netstandard1.3) - System.Collections (>= 4.0.11) - restriction: && (< net451) (>= netstandard1.3) - System.IO (>= 4.1) - restriction: && (< net451) (>= netstandard1.3) - System.IO.FileSystem (>= 4.0.1) - restriction: && (< net451) (>= netstandard1.3) - System.Reflection.TypeExtensions (>= 4.1) - restriction: && (< net451) (>= netstandard1.3) - System.Runtime.Extensions (>= 4.1) - restriction: && (< net451) (>= netstandard1.3) - System.Runtime.InteropServices (>= 4.1) - restriction: && (< net451) (>= netstandard1.3) - System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: && (< net451) (>= netstandard1.3) + Microsoft.CSharp (4.4) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + Microsoft.DotNet.PlatformAbstractions (2.0) + System.AppContext (>= 4.1) - restriction: && (< net45) (>= netstandard1.3) + System.Collections (>= 4.0.11) - restriction: && (< net45) (>= netstandard1.3) + System.IO (>= 4.1) - restriction: && (< net45) (>= netstandard1.3) + System.IO.FileSystem (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.3) + System.Reflection.TypeExtensions (>= 4.1) - restriction: && (< net45) (>= netstandard1.3) + System.Runtime.Extensions (>= 4.1) - restriction: && (< net45) (>= netstandard1.3) + System.Runtime.InteropServices (>= 4.1) - restriction: && (< net45) (>= netstandard1.3) + System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: && (< net45) (>= netstandard1.3) Microsoft.Net.Http (2.2.29) Microsoft.Bcl (>= 1.1.10) Microsoft.Bcl.Build (>= 1.0.14) - Microsoft.NETCore.Platforms (1.1) - content: none, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) (&& (< net20) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win81) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net451) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net452) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) - Microsoft.NETCore.Targets (1.1) - content: none, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) (&& (< net20) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win81) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< uap100) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net451) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + Microsoft.NETCore.Platforms (2.0) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net35) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net45) (>= dnxcore50)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net451) (>= dnxcore50)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (>= monoandroid) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= monoandroid)) (&& (>= netstandard1.1) (>= monoandroid) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) + Microsoft.NETCore.Targets (2.0) - restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< wp8) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win81) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net35) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.1) (< win8)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) Microsoft.Web.Administration (7.0) Microsoft.Web.Infrastructure (1.0) Microsoft.Web.Xdt (2.1.1) - Microsoft.Win32.Primitives (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.3)) (&& (< net35) (< uap100) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard1.6) + Microsoft.Win32.Primitives (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.Win32.Registry (4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) + Microsoft.Win32.Registry (4.4) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Security.AccessControl (>= 4.4) - restriction: || (>= net461) (&& (< netstandard1.3) (>= monoandroid)) (>= netstandard2.0) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) + System.Security.Principal.Windows (>= 4.4) - restriction: || (>= net461) (&& (< netstandard1.3) (>= monoandroid)) (>= netstandard2.0) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) 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) @@ -212,51 +149,51 @@ NUGET Microsoft.AspNet.Razor - restriction: < net40 Microsoft.AspNet.Razor (>= 2.0.30506) - restriction: >= net40 Nancy (>= 1.4.3) - NETStandard.Library (1.6.1) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.1)) (&& (< net452) (>= netstandard1.1)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: >= netstandard1.0 - Microsoft.Win32.Primitives (>= 4.3) - restriction: >= netstandard1.3 - System.AppContext (>= 4.3) - restriction: >= netstandard1.3 - System.Collections (>= 4.3) - restriction: >= netstandard1.0 - System.Collections.Concurrent (>= 4.3) - restriction: >= netstandard1.1 - System.Console (>= 4.3) - restriction: >= netstandard1.3 - System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard1.0 - System.Diagnostics.Tools (>= 4.3) - restriction: >= netstandard1.0 - System.Diagnostics.Tracing (>= 4.3) - restriction: >= netstandard1.1 - System.Globalization (>= 4.3) - restriction: >= netstandard1.0 - System.Globalization.Calendars (>= 4.3) - restriction: >= netstandard1.3 - System.IO (>= 4.3) - restriction: >= netstandard1.0 - System.IO.Compression (>= 4.3) - restriction: >= netstandard1.1 - System.IO.Compression.ZipFile (>= 4.3) - restriction: >= netstandard1.3 - System.IO.FileSystem (>= 4.3) - restriction: >= netstandard1.3 - System.IO.FileSystem.Primitives (>= 4.3) - restriction: >= netstandard1.3 - System.Linq (>= 4.3) - restriction: >= netstandard1.0 - System.Linq.Expressions (>= 4.3) - restriction: >= netstandard1.0 - System.Net.Http (>= 4.3) - restriction: >= netstandard1.1 - System.Net.Primitives (>= 4.3) - restriction: >= netstandard1.0 - System.Net.Sockets (>= 4.3) - restriction: >= netstandard1.3 - System.ObjectModel (>= 4.3) - restriction: >= netstandard1.0 - System.Reflection (>= 4.3) - restriction: >= netstandard1.0 - System.Reflection.Extensions (>= 4.3) - restriction: >= netstandard1.0 - System.Reflection.Primitives (>= 4.3) - restriction: >= netstandard1.0 - System.Resources.ResourceManager (>= 4.3) - restriction: >= netstandard1.0 - System.Runtime (>= 4.3) - restriction: >= netstandard1.0 - System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard1.0 - System.Runtime.Handles (>= 4.3) - restriction: >= netstandard1.3 - System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.1 - System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: >= netstandard1.1 - System.Runtime.Numerics (>= 4.3) - restriction: >= netstandard1.1 - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.3 - System.Security.Cryptography.Encoding (>= 4.3) - restriction: >= netstandard1.3 - System.Security.Cryptography.Primitives (>= 4.3) - restriction: >= netstandard1.3 - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: >= netstandard1.3 - System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.0 - System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard1.0 - System.Text.RegularExpressions (>= 4.3) - restriction: >= netstandard1.0 - System.Threading (>= 4.3) - restriction: >= netstandard1.0 - System.Threading.Tasks (>= 4.3) - restriction: >= netstandard1.0 - System.Threading.Timer (>= 4.3) - restriction: >= netstandard1.2 - System.Xml.ReaderWriter (>= 4.3) - restriction: >= netstandard1.0 - System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.0 + NETStandard.Library (2.0) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.1) (&& (< netstandard1.3) (>= monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< xamarinmac)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= uap10.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= monoandroid)) (&& (< netstandard1.0) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (< portable-net45+win8+wpa81) (>= portable-net45+win8+wp8+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) + Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.AppContext (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Console (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Net.Http (>= 4.3.2) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Net.Sockets (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.ObjectModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (< netstandard1.0) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Threading.Timer (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) 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)) @@ -264,14 +201,14 @@ 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) - NLog (4.4.11) - NuGet.CommandLine (4.1) - NuGet.Core (2.14) + NLog (4.4.12) + NuGet.CommandLine (4.3) + Nuget.Core (2.14) Microsoft.Web.Xdt (>= 2.1) - NUnit (3.7.1) - NETStandard.Library (>= 1.6) - restriction: || (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) - System.Runtime.Loader (>= 4.3) - restriction: >= netstandard1.6 - System.Threading.Thread (>= 4.3) - restriction: || (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + NUnit (3.8.1) + NETStandard.Library (>= 1.6) - restriction: || (&& (< net20) (>= netstandard1.3) (< monoandroid)) (>= uap10.0) (&& (< netstandard1.3) (>= monoandroid)) (>= netstandard1.6) + System.Runtime.Loader (>= 4.3) - restriction: && (>= netstandard1.6) (< xamarinios) + System.Threading.Thread (>= 4.3) - restriction: && (>= netstandard1.6) (< xamarinios) NUnit.Console (3.7) NUnit.ConsoleRunner (>= 3.7) NUnit.Extension.NUnitProjectLoader (>= 3.5) @@ -280,17 +217,17 @@ NUGET NUnit.Extension.TeamCityEventListener (>= 1.0.2) NUnit.Extension.VSProjectLoader (>= 3.5) NUnit.ConsoleRunner (3.7) - NUnit.Extension.NUnitProjectLoader (3.5) - NUnit.Extension.NUnitV2Driver (3.6) - NUnit.Extension.NUnitV2ResultWriter (3.5) + NUnit.Extension.NUnitProjectLoader (3.6) + NUnit.Extension.NUnitV2Driver (3.7) + NUnit.Extension.NUnitV2ResultWriter (3.6) NUnit.Extension.TeamCityEventListener (1.0.2) - NUnit.Extension.VSProjectLoader (3.5) - Octokit (0.24) - Microsoft.Net.Http - restriction: && (< net45) (< win8) (< portable-win81+wpa81) - Paket.Core (5.92.3) + NUnit.Extension.VSProjectLoader (3.6) + Octokit (0.26) + NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.1) + Paket.Core (5.92.2) Chessie (>= 0.6) - FSharp.Compiler.Tools (4.1.17) - restriction: < netstandard1.6 - FSharp.Core (4.1.17) - restriction: < netstandard1.6 + FSharp.Compiler.Tools - restriction: < netstandard1.6 + FSharp.Core - restriction: < netstandard1.6 Mono.Cecil (>= 0.10.0-beta6) Newtonsoft.Json - restriction: < netstandard1.6 Newtonsoft.Json (>= 10.0.3) - restriction: >= netstandard1.6 @@ -298,28 +235,28 @@ NUGET System.Diagnostics.Process (>= 4.3) - restriction: >= netstandard1.6 System.Diagnostics.TraceSource (>= 4.3) - restriction: >= netstandard1.6 System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.6 - System.Security.Cryptography.ProtectedData (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.ProtectedData (>= 4.4) - restriction: >= netstandard1.6 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 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.1) - content: none, restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.native.System (4.3) - content: none, restriction: || (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net35) (< uap100) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= netstandard1.6) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.native.System (4.3) - restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.IO.Compression (4.3) - content: none, restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + runtime.native.System.IO.Compression (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Net.Http (4.3) - redirects: force, restriction: || (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.native.System.Net.Http (4.3) - redirects: force, restriction: || (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) runtime.native.System.Security.Cryptography.Apple (4.3) - content: none, restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) @@ -330,57 +267,57 @@ NUGET runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3) - content: none, restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Serilog (1.5.14) - Serilog.Sinks.NLog (1.5.4) + serilog.sinks.nlog (1.5.4) NLog (>= 3.0) Serilog (>= 1.4.204 < 2.0) SSH.NET (2016.0) - Microsoft.CSharp (>= 4.0.1) - restriction: && (< net35) (< uap100) (>= netstandard1.3) - SshNet.Security.Cryptography (1.2) - restriction: || (&& (< net35) (>= netstandard1.3)) (>= uap100) (>= wp71) (>= sl4) - System.Diagnostics.Debug (>= 4.0.11) - restriction: && (< net35) (< uap100) (>= netstandard1.3) - System.Diagnostics.Tools (>= 4.0.1) - restriction: && (< net35) (< uap100) (>= netstandard1.3) - System.Diagnostics.TraceSource (>= 4.0) - restriction: && (< net35) (< uap100) (>= netstandard1.3) - System.Globalization (>= 4.0.11) - restriction: && (< net35) (< uap100) (>= netstandard1.3) - System.IO (>= 4.1) - restriction: && (< net35) (< uap100) (>= netstandard1.3) - System.IO.FileSystem (>= 4.0.1) - restriction: && (< net35) (< uap100) (>= netstandard1.3) - System.IO.FileSystem.Primitives (>= 4.0.1) - restriction: && (< net35) (< uap100) (>= netstandard1.3) - System.Linq (>= 4.1) - restriction: && (< net35) (< uap100) (>= netstandard1.3) - System.Net.NameResolution (>= 4.0) - restriction: && (< net35) (< uap100) (>= netstandard1.3) - System.Net.Sockets (>= 4.1) - restriction: && (< net35) (< uap100) (>= netstandard1.3) - System.Reflection.Extensions (>= 4.0.1) - restriction: && (< net35) (< uap100) (>= netstandard1.3) - System.Runtime.Extensions (>= 4.1) - restriction: && (< net35) (< uap100) (>= netstandard1.3) - System.Security.Cryptography.Algorithms (>= 4.2) - restriction: && (< net35) (< uap100) (>= netstandard1.3) - System.Text.RegularExpressions (>= 4.1) - restriction: && (< net35) (< uap100) (>= netstandard1.3) - System.Threading (>= 4.0.11) - restriction: && (< net35) (< uap100) (>= netstandard1.3) - System.Threading.Thread (>= 4.0) - restriction: && (< net35) (< uap100) (>= netstandard1.3) - System.Threading.ThreadPool (>= 4.0.10) - restriction: && (< net35) (< uap100) (>= netstandard1.3) - System.Threading.Timer (>= 4.0.1) - restriction: && (< net35) (< uap100) (>= netstandard1.3) - System.Xml.XmlDocument (>= 4.0.1) - restriction: && (< net35) (< uap100) (>= netstandard1.3) - System.Xml.XPath.XmlDocument (>= 4.0.1) - restriction: || (&& (< net35) (>= netstandard1.3)) (>= uap100) - SshNet.Security.Cryptography (1.2) - restriction: || (&& (< net35) (>= netstandard1.3)) (>= uap100) (>= wp71) (>= sl4) - System.IO (>= 4.1) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< wp71)) (&& (< net20) (>= netstandard1.3)) (>= uap100) - System.Security.Cryptography.Primitives (>= 4.0) - restriction: || (&& (< net20) (>= netstandard1.3)) (>= uap100) - System.AppContext (4.3) - restriction: || (&& (< net20) (>= netstandard1.3)) (&& (< net451) (>= netstandard1.3)) (>= netstandard1.6) + Microsoft.CSharp (>= 4.0.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) + SshNet.Security.Cryptography (1.2) - restriction: || (&& (< net35) (>= netstandard1.3)) (>= uap10.0) (>= wp71) (>= sl4) + System.Diagnostics.Debug (>= 4.0.11) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) + System.Diagnostics.Tools (>= 4.0.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) + System.Diagnostics.TraceSource (>= 4.0) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) + System.Globalization (>= 4.0.11) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) + System.IO (>= 4.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) + System.IO.FileSystem (>= 4.0.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) + System.IO.FileSystem.Primitives (>= 4.0.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) + System.Linq (>= 4.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) + System.Net.NameResolution (>= 4.0) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) + System.Net.Sockets (>= 4.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) + System.Reflection.Extensions (>= 4.0.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) + System.Runtime.Extensions (>= 4.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) + System.Security.Cryptography.Algorithms (>= 4.2) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) + System.Text.RegularExpressions (>= 4.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) + System.Threading (>= 4.0.11) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) + System.Threading.Thread (>= 4.0) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) + System.Threading.ThreadPool (>= 4.0.10) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) + System.Threading.Timer (>= 4.0.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) + System.Xml.XmlDocument (>= 4.0.1) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) + System.Xml.XPath.XmlDocument (>= 4.0.1) - restriction: || (&& (< net35) (>= netstandard1.3)) (>= uap10.0) + SshNet.Security.Cryptography (1.2) - restriction: || (&& (< net35) (>= netstandard1.3)) (>= uap10.0) (>= wp71) (>= sl4) + System.IO (>= 4.1) - restriction: || (&& (< net20) (>= netstandard1.0) (< wp71) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3)) (>= uap10.0) + System.Security.Cryptography.Primitives (>= 4.0) - restriction: || (&& (< net20) (>= netstandard1.3)) (>= uap10.0) + System.AppContext (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Buffers (4.3) - content: none, restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Diagnostics.Tracing (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Collections (4.3) - content: none, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net451) (>= netstandard1.3)) (&& (< net452) (>= netstandard1.1)) (>= uap100) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Buffers (4.4) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + 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) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Collections.Concurrent (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.1) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net452) (>= netstandard1.1)) (>= netstandard1.6) + System.Collections.Concurrent (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -391,15 +328,8 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Collections.Immutable (1.3.1) - content: none - System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Globalization (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Linq (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) + System.Collections.Immutable (1.4) - content: none, restriction: || (>= net45) (>= netstandard1.6) (&& (>= netstandard2.0) (< netcoreapp2.0)) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Collections.NonGeneric (4.3) - redirects: force, restriction: || (&& (< net20) (>= net462)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -437,24 +367,24 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Console (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.Console (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Debug (4.3) - content: none, restriction: || (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< uap100) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net452) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Diagnostics.Debug (4.3) - redirects: force, restriction: || (&& (< 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.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.DiagnosticSource (4.4) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcore2.0) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netcore2.0) (< xamarinmac) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcore2.0) (< xamarinmac)) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcore2.0) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcore2.0) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netcore2.0) (< xamarinmac) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcore2.0) (< xamarinmac)) + System.Diagnostics.DiagnosticSource (4.4.1) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) + System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) System.Diagnostics.FileVersionInfo (4.3) - restriction: >= netstandard1.6 Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -487,11 +417,11 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading.Thread (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading.ThreadPool (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Tools (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net35) (< uap100) (>= netstandard1.3)) (&& (< net452) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Diagnostics.Tools (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.TraceSource (4.3) - restriction: || (&& (< net35) (< uap100) (>= netstandard1.3)) (>= netstandard1.6) + System.Diagnostics.TraceSource (4.3) - restriction: || (&& (< net35) (< uap10.0) (>= netstandard1.3)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) runtime.native.System (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -501,11 +431,11 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Tracing (4.3) - content: none, restriction: || (&& (< net20) (>= netstandard1.1) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net35) (< uap100) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net452) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Diagnostics.Tracing (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Dynamic.Runtime (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) + System.Dynamic.Runtime (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -520,29 +450,29 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (4.3) - content: none, restriction: || (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (&& (< net452) (>= netstandard1.1)) (>= uap100) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Globalization (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization.Calendars (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Globalization.Calendars (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization.Extensions (4.3) - redirects: force, restriction: || (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Globalization.Extensions (4.3) - redirects: force, restriction: || (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (4.3) - content: none, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net463)) (&& (< net35) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net451) (>= netstandard1.3)) (&& (< net452) (>= netstandard1.1)) (>= uap100) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= netstandard1.0) (>= sl4)) (&& (>= netstandard1.3) (>= wp71)) (&& (>= netstandard1.3) (>= sl4)) (>= netstandard1.6) + System.IO (4.3) - redirects: force, restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46)) (&& (< net35) (>= net463)) (&& (< net35) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.0) (>= sl4)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.3) (>= wp71)) (&& (>= netstandard1.3) (>= sl4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.IO.Compression (4.3) - content: none, restriction: || (&& (< net20) (>= netstandard1.1) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net452) (>= netstandard1.1)) (>= netstandard1.6) + System.IO.Compression (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.1) (>= monoandroid) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) runtime.native.System (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) runtime.native.System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -558,7 +488,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO.Compression.ZipFile (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.IO.Compression.ZipFile (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Buffers (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO.Compression (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -568,7 +498,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem (4.3) - restriction: || (&& (< net20) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.3)) (&& (< net451) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.IO.FileSystem (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -577,15 +507,15 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (< net20) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.3)) (&& (< net451) (>= net46)) (&& (< net451) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net20) (>= net46) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Linq (4.3) - content: none, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< uap100) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net452) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Linq (4.3) - redirects: force, restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.6) (< monoandroid) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.6) (< monoandroid) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Linq.Expressions (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net452) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Linq.Expressions (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) @@ -603,7 +533,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Linq.Queryable (4.3) - redirects: force, restriction: >= netstandard1.6 + System.Linq.Queryable (4.3) - redirects: force, restriction: && (>= netstandard1.6) (< xamarinmac) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -612,7 +542,7 @@ NUGET System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Http (4.3.2) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.1) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net452) (>= netstandard1.1)) (>= netstandard1.6) + System.Net.Http (4.3.2) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.1) (>= monoandroid) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81) runtime.native.System (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -641,7 +571,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Net.NameResolution (4.3) - restriction: && (< net35) (< uap100) (>= netstandard1.3) + System.Net.NameResolution (4.3) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) runtime.native.System (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Collections (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) @@ -656,12 +586,12 @@ NUGET System.Security.Principal.Windows (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Net.Primitives (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net35) (< uap100) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net452) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Net.Primitives (4.3) - redirects: force, restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Requests (4.3) - redirects: force, restriction: >= netstandard1.6 + System.Net.Requests (4.3) - redirects: force, restriction: && (>= netstandard1.6) (< xamarinmac) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -675,7 +605,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Sockets (4.3) - restriction: || (&& (< net20) (>= netstandard1.3)) (&& (< net35) (< uap100) (>= netstandard1.3)) (>= netstandard1.6) + System.Net.Sockets (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -687,25 +617,25 @@ NUGET System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.ObjectModel (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net452) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.ObjectModel (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (4.3) - content: none, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net451) (>= net462)) (&& (< net451) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net451) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net452) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + System.Reflection (4.3) - redirects: force, restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3)) (&& (>= net45) (>= dnxcore50)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Reflection.Emit (4.3) - content: none, restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Reflection.Emit (4.3) - content: none, restriction: || (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) System.IO (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection.Emit.ILGeneration (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Reflection.Emit.ILGeneration (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) @@ -714,61 +644,47 @@ NUGET System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Extensions (4.3) - content: none, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< uap100) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net452) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Reflection.Extensions (4.3) - redirects: force, restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (>= net45) (>= dnxcore50)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Reflection.Metadata (1.4.2) - content: none - System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Collections.Immutable (>= 1.1.37) - restriction: && (< netstandard1.1) (< monoandroid) (< win8) (>= portable-net45+win8) - System.Collections.Immutable (>= 1.3.1) - restriction: || (>= net45) (&& (>= netstandard1.1) (< win8)) (&& (< netstandard1.1) (>= monoandroid)) (&& (< netstandard1.1) (>= win8)) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) (>= wpa81) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.IO (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.IO.Compression (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Linq (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Text.Encoding (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Text.Encoding.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection.Primitives (4.3) - content: none, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net452) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + System.Reflection.Metadata (1.5) - content: none, restriction: || (>= net45) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Collections.Immutable (>= 1.4) - restriction: || (&& (>= netstandard1.1) (< netstandard2.0)) (&& (< netstandard1.1) (>= monoandroid)) (&& (< netstandard1.1) (< monoandroid) (>= portable-net45+win8)) (&& (>= netstandard2.0) (< netcoreapp2.0)) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) (&& (< portable-net45+win8) (>= portable-net45+win8+wpa81)) + System.Reflection.Primitives (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Reflection.TypeExtensions (4.3) - content: none, restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net451) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) - System.Reflection (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= net462) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Resources.ResourceManager (4.3) - content: none, restriction: || (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net452) (>= netstandard1.1)) (>= uap100) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Reflection.TypeExtensions (4.4) - content: none, restriction: || (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Reflection (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.Resources.ResourceManager (4.3) - redirects: force, restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= net45) (>= dnxcore50)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Runtime (4.3) - content: none, restriction: || (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win81) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net463)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net451) (>= net462)) (&& (< net451) (>= netstandard1.3) (< monoandroid)) (&& (< net451) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net451) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net452) (>= netstandard1.1)) (&& (>= net462) (>= dnxcore50)) (>= uap100) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + System.Runtime (4.3) - redirects: force, restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net35) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net45) (>= dnxcore50)) (&& (< net45) (>= net462)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net462) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.Extensions (4.3) - content: none, restriction: || (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net451) (>= netstandard1.3)) (&& (< net452) (>= netstandard1.1)) (>= uap100) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Runtime.Extensions (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.Handles (4.3) - content: none, restriction: || (&& (< net20) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net451) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Runtime.Handles (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net46) (>= netstandard1.5)) (&& (< net20) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (4.3) - content: none, restriction: || (&& (< net20) (>= netstandard1.1) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net451) (>= netstandard1.3)) (&& (< net452) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore1.1) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore1.1) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore1.1) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore1.1) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= net462) (>= dnxcore50) (>= netcore1.1) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore1.1) - System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (< net20) (>= netstandard1.1) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net451) (>= netstandard1.3)) (&& (< net452) (>= netstandard1.1)) (>= netstandard1.6) + System.Runtime.InteropServices (4.3) - restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= net462) (>= dnxcore50) (>= netcoreapp1.1) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) + System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net45) (>= dnxcore50)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net451) (>= dnxcore50)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= 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)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.0) (>= monoandroid) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (>= monoandroid) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.3) (>= wpa81)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) runtime.native.System (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -780,7 +696,7 @@ NUGET System.IO (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Reflection (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Numerics (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.1) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net452) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Runtime.Numerics (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -794,7 +710,10 @@ NUGET System.Runtime.Serialization.Primitives (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Security.Claims (4.3) - restriction: && (< net35) (< uap100) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Security.AccessControl (4.4) - restriction: || (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (>= monoandroid)) (>= netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 + System.Security.Principal.Windows (>= 4.4) - restriction: || (>= netstandard1.3) (>= monoandroid) + System.Security.Claims (4.3) - restriction: || (&& (< net35) (>= net46)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -802,7 +721,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Security.Principal (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Algorithms (4.3) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net461)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.4) (< monoandroid)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Security.Cryptography.Algorithms (4.3) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net20) (>= net46) (>= netstandard1.5)) (&& (< net20) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net461) (< netstandard1.3)) (&& (< net20) (>= net461) (>= netstandard1.5)) (&& (< net20) (>= net461) (< netstandard1.5)) (&& (< net20) (>= net461) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (>= uap10.0)) (&& (>= net461) (>= dnxcore50)) (&& (>= net461) (< netstandard1.3) (>= monoandroid)) (&& (>= net461) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -817,19 +736,18 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= net463) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Cng (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4)) (>= net461) (>= netstandard1.6) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4)) (>= net461) (>= netstandard1.6) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Security.Cryptography.Csp (4.3) - restriction: || (&& (< net35) (>= netstandard1.3)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Cng (4.4) - redirects: force, restriction: || (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Csp (4.3) - restriction: || (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Reflection (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -843,7 +761,7 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net461)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Security.Cryptography.Encoding (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net20) (>= net46) (>= netstandard1.5)) (&& (< net20) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net461) (< netstandard1.3)) (&& (< net20) (>= net461) (>= netstandard1.5)) (&& (< net20) (>= net461) (< netstandard1.5)) (&& (< net20) (>= net461) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= uap10.0)) (&& (>= net461) (>= dnxcore50)) (&& (>= net461) (< netstandard1.3) (>= monoandroid)) (&& (>= net461) (< netstandard1.4)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -856,21 +774,21 @@ NUGET System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.OpenSsl (4.3) - redirects: force, restriction: || (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (>= net463) (>= netstandard1.6) (>= monoandroid) - System.Collections (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Numerics (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.3)) (&& (< net35) (>= net46)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< monoandroid)) (>= uap100) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= netstandard1.3) (>= wp71)) (&& (>= netstandard1.3) (>= sl4)) (>= netstandard1.6) + System.Security.Cryptography.OpenSsl (4.4) - redirects: force, restriction: || (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 + System.Collections (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.IO (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime.Extensions (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime.Handles (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime.InteropServices (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime.Numerics (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Text.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Primitives (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net461) (< netstandard1.3)) (&& (< net20) (>= net461) (>= netstandard1.5)) (&& (< net20) (>= net461) (< netstandard1.5)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= net46)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= dnxcore50)) (&& (>= net461) (< netstandard1.3) (>= monoandroid)) (&& (>= net461) (< netstandard1.4)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.3) (>= wp71)) (&& (>= netstandard1.3) (>= sl4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -878,13 +796,9 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.ProtectedData (4.3) - restriction: >= netstandard1.6 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.X509Certificates (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Security.Cryptography.ProtectedData (4.4) - restriction: >= netstandard1.6 + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.X509Certificates (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net20) (>= net46) (>= netstandard1.5)) (&& (< net20) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= monoandroid) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.3) (>= monoandroid) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) runtime.native.System (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) runtime.native.System.Net.Http (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -910,51 +824,51 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Principal (4.3) - restriction: && (< net35) (< uap100) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Security.Principal (4.3) - restriction: || (&& (< net35) (>= net46)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Security.Principal.Windows (4.3) - restriction: && (< net35) (< uap100) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) - Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Reflection (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Security.Claims (>= 4.3) - restriction: >= netstandard1.3 - System.Security.Principal (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Text.Encoding (4.3) - content: none, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net451) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net452) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Security.Principal.Windows (4.4) - restriction: || (&& (< net35) (< uap10.0) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (>= monoandroid)) (>= netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 + Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Reflection (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Security.Claims (>= 4.3) - restriction: || (&& (>= net46) (< net461)) (&& (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Principal (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Text.Encoding (4.3) - redirects: force, restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding.Extensions (4.3) - content: none, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net452) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Text.Encoding.Extensions (4.3) - redirects: force, restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.RegularExpressions (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net35) (< uap100) (>= netstandard1.3)) (&& (< net452) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcore1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcore1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcore1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netcore1.1) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcore1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcore1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (4.3) - content: none, restriction: || (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net452) (>= netstandard1.1)) (>= uap100) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Text.RegularExpressions (4.3) - redirects: force, restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netcoreapp1.1) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Threading (4.3) - redirects: force, restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= net45) (>= dnxcore50)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (4.3) - content: none, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< uap100) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net451) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net452) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Threading.Tasks (4.3) - redirects: force, restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks.Extensions (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Threading.Tasks (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Threading.Tasks.Parallel (4.3) - redirects: force, restriction: >= netstandard1.6 + System.Threading.Tasks.Extensions (4.4) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+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.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -963,21 +877,19 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Thread (4.3) - restriction: || (&& (< net20) (>= netstandard1.3)) (&& (< net35) (< uap100) (>= netstandard1.3)) (>= netstandard1.6) + System.Threading.Thread (4.3) - restriction: || (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (>= netstandard1.6) (< xamarinios)) (&& (>= netstandard1.6) (< xamarinmac)) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.ThreadPool (4.3) - redirects: force, restriction: || (&& (< net35) (< uap100) (>= netstandard1.3)) (>= netstandard1.6) + System.Threading.ThreadPool (4.3) - redirects: force, restriction: || (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (>= netstandard1.6) (< xamarinmac)) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.Timer (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.2) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net35) (< uap100) (>= netstandard1.3)) (&& (< net452) (>= netstandard1.2)) (>= netstandard1.6) + System.Threading.Timer (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net451) (>= netstandard1.2) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net451) (>= netstandard1.2) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net451) (>= netstandard1.2) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) - System.ValueTuple (4.3.1) - redirects: force, restriction: < netstandard1.6 - System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) + System.ValueTuple (4.4) - content: none, restriction: >= netstandard1.6 + NETStandard.Library (>= 1.6.1) - restriction: && (< net461) (>= netstandard1.0) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Web.Razor.Unofficial (2.0.2) - System.Xml.ReaderWriter (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net452) (>= netstandard1.1)) (>= uap100) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Xml.ReaderWriter (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.0) (>= monoandroid) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (>= monoandroid) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -993,7 +905,7 @@ NUGET System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Xml.XDocument (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net452) (>= netstandard1.1)) (>= netstandard1.6) + System.Xml.XDocument (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (>= netstandard1.6) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -1006,7 +918,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Xml.XmlDocument (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.3)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (>= uap100) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Xml.XmlDocument (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.3)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (>= uap10.0) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -1017,7 +929,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Xml.ReaderWriter (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Xml.XPath (4.3) - restriction: || (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= netstandard1.6)) (>= uap100) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Xml.XPath (4.3) - restriction: || (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= netstandard1.6)) (>= uap10.0) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -1037,7 +949,7 @@ NUGET System.Xml.ReaderWriter (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Xml.XPath (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Xml.XPath.XmlDocument (4.3) - restriction: || (&& (< net35) (>= netstandard1.3)) (>= uap100) (>= netstandard1.6) + System.Xml.XPath.XmlDocument (4.3) - restriction: || (&& (< net35) (>= netstandard1.3)) (>= uap10.0) (>= netstandard1.6) System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -1070,13 +982,14 @@ NUGET xunit.runner.console (2.2) GITHUB remote: matthid/Yaaf.FSharp.Scripting - src/source/Yaaf.FSharp.Scripting/YaafFSharpScripting.fs (40ef4e32a115962436809666b6868693be6444c2) + src/source/Yaaf.FSharp.Scripting/YaafFSharpScripting.fs (cb0ca0f74e3f7356b88c5fd4246b0a4dbd2624eb) GROUP Build CONTENT: NONE NUGET - remote: http://www.nuget.org/api/v2 - FAKE (5.0.0-alpha011) - FSharp.Compiler.Service (12.0.8) + remote: https://ci.appveyor.com/nuget/fake + FAKE (5.0.0-alpha015) + remote: https://api.nuget.org/v3/index.json + FSharp.Compiler.Service (13.0) FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 Microsoft.DiaSymReader (>= 1.1) - restriction: >= netstandard1.6 Microsoft.DiaSymReader.PortablePdb (>= 1.2) - restriction: >= netstandard1.6 @@ -1115,35 +1028,32 @@ NUGET System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard1.6 System.Threading (>= 4.3) - restriction: >= netstandard1.6 System.Threading.Tasks (>= 4.3) - restriction: >= netstandard1.6 - FSharp.Core (4.1.17) - System.Collections (>= 4.0.11) - restriction: >= netstandard1.6 - System.Console (>= 4.0) - restriction: >= netstandard1.6 - System.Diagnostics.Debug (>= 4.0.11) - restriction: >= netstandard1.6 - System.Diagnostics.Tools (>= 4.0.1) - restriction: >= netstandard1.6 - System.Globalization (>= 4.0.11) - restriction: >= netstandard1.6 - System.IO (>= 4.1) - restriction: >= netstandard1.6 - System.Linq (>= 4.1) - restriction: >= netstandard1.6 - System.Linq.Expressions (>= 4.1) - restriction: >= netstandard1.6 - System.Linq.Queryable (>= 4.0.1) - restriction: >= netstandard1.6 - System.Net.Requests (>= 4.0.11) - restriction: >= netstandard1.6 - System.Reflection (>= 4.1) - restriction: >= netstandard1.6 - System.Reflection.Extensions (>= 4.0.1) - restriction: >= netstandard1.6 - System.Resources.ResourceManager (>= 4.0.1) - restriction: >= netstandard1.6 - System.Runtime (>= 4.1) - restriction: >= netstandard1.6 - System.Runtime.Extensions (>= 4.1) - restriction: >= netstandard1.6 - System.Runtime.Numerics (>= 4.0.1) - restriction: >= netstandard1.6 - System.Text.RegularExpressions (>= 4.1) - restriction: >= netstandard1.6 - System.Threading (>= 4.0.11) - restriction: >= netstandard1.6 - System.Threading.Tasks (>= 4.0.11) - restriction: >= netstandard1.6 - System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: >= netstandard1.6 - System.Threading.Thread (>= 4.0) - restriction: >= netstandard1.6 - System.Threading.ThreadPool (>= 4.0.10) - restriction: >= netstandard1.6 - System.Threading.Timer (>= 4.0.1) - restriction: >= netstandard1.6 - System.ValueTuple (>= 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) ILRepack (2.0.13) - Microsoft.Bcl (1.1.10) - content: none, restriction: && (< net45) (< win8) (< portable-win81+wpa81) - Microsoft.Bcl.Build (>= 1.0.14) - Microsoft.Bcl.Build (1.0.21) - import_targets: false, content: none, restriction: && (< net45) (< win8) (< portable-win81+wpa81) + Microsoft.AspNet.Razor (3.2.3) Microsoft.DiaSymReader (1.1) - restriction: >= netstandard1.6 System.Diagnostics.Debug (>= 4.0.11) - restriction: >= netstandard1.1 System.Runtime (>= 4.1) - restriction: >= netstandard1.1 @@ -1164,87 +1074,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.Net.Http (2.2.29) - content: none, restriction: && (< net45) (< win8) (< portable-win81+wpa81) - Microsoft.Bcl (>= 1.1.10) - Microsoft.Bcl.Build (>= 1.0.14) - Microsoft.NETCore.Platforms (1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) - Microsoft.NETCore.Targets (1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) - Microsoft.Win32.Primitives (4.3) - restriction: >= netstandard1.6 + Microsoft.NETCore.Platforms (2.0) - content: none, restriction: || (&& (>= 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net451) (>= dnxcore50)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (>= net462) (>= dnxcore50)) (&& (>= net463) (>= dnxcore50)) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (>= monoandroid)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< netstandard1.0) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.5) (< monoandroid)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.5) (< monoandroid)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= netcoreapp1.1)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netcoreapp1.1)) (&& (< netstandard1.3) (>= wpa81)) (&& (< netstandard1.4) (>= netcoreapp1.1)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netcoreapp1.1)) (>= netstandard1.6) (&& (< netstandard2.0) (>= netcoreapp1.1)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) + Microsoft.NETCore.Targets (2.0) - restriction: || (&& (< 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) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win81) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.1)) (&& (>= net462) (>= uap10.0)) (&& (>= net462) (>= dnxcore50)) (&& (>= net463) (>= uap10.0)) (&& (>= net463) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.1) (< win8)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netcoreapp1.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< wp8) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< netstandard1.0) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.5) (< monoandroid)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.5) (< monoandroid)) (&& (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= netcoreapp1.1)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netcoreapp1.1)) (&& (< netstandard1.4) (>= netcoreapp1.1)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netcoreapp1.1)) (>= netstandard1.6) (&& (< netstandard2.0) (>= netcoreapp1.1)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) + Microsoft.Win32.Primitives (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.Win32.Registry (4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - NETStandard.Library (1.6.1) - restriction: >= netstandard1.6 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: >= netstandard1.0 - Microsoft.Win32.Primitives (>= 4.3) - restriction: >= netstandard1.3 - System.AppContext (>= 4.3) - restriction: >= netstandard1.3 - System.Collections (>= 4.3) - restriction: >= netstandard1.0 - System.Collections.Concurrent (>= 4.3) - restriction: >= netstandard1.1 - System.Console (>= 4.3) - restriction: >= netstandard1.3 - System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard1.0 - System.Diagnostics.Tools (>= 4.3) - restriction: >= netstandard1.0 - System.Diagnostics.Tracing (>= 4.3) - restriction: >= netstandard1.1 - System.Globalization (>= 4.3) - restriction: >= netstandard1.0 - System.Globalization.Calendars (>= 4.3) - restriction: >= netstandard1.3 - System.IO (>= 4.3) - restriction: >= netstandard1.0 - System.IO.Compression (>= 4.3) - restriction: >= netstandard1.1 - System.IO.Compression.ZipFile (>= 4.3) - restriction: >= netstandard1.3 - System.IO.FileSystem (>= 4.3) - restriction: >= netstandard1.3 - System.IO.FileSystem.Primitives (>= 4.3) - restriction: >= netstandard1.3 - System.Linq (>= 4.3) - restriction: >= netstandard1.0 - System.Linq.Expressions (>= 4.3) - restriction: >= netstandard1.0 - System.Net.Http (>= 4.3) - restriction: >= netstandard1.1 - System.Net.Primitives (>= 4.3) - restriction: >= netstandard1.0 - System.Net.Sockets (>= 4.3) - restriction: >= netstandard1.3 - System.ObjectModel (>= 4.3) - restriction: >= netstandard1.0 - System.Reflection (>= 4.3) - restriction: >= netstandard1.0 - System.Reflection.Extensions (>= 4.3) - restriction: >= netstandard1.0 - System.Reflection.Primitives (>= 4.3) - restriction: >= netstandard1.0 - System.Resources.ResourceManager (>= 4.3) - restriction: >= netstandard1.0 - System.Runtime (>= 4.3) - restriction: >= netstandard1.0 - System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard1.0 - System.Runtime.Handles (>= 4.3) - restriction: >= netstandard1.3 - System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.1 - System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: >= netstandard1.1 - System.Runtime.Numerics (>= 4.3) - restriction: >= netstandard1.1 - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.3 - System.Security.Cryptography.Encoding (>= 4.3) - restriction: >= netstandard1.3 - System.Security.Cryptography.Primitives (>= 4.3) - restriction: >= netstandard1.3 - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: >= netstandard1.3 - System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.0 - System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard1.0 - System.Text.RegularExpressions (>= 4.3) - restriction: >= netstandard1.0 - System.Threading (>= 4.3) - restriction: >= netstandard1.0 - System.Threading.Tasks (>= 4.3) - restriction: >= netstandard1.0 - System.Threading.Timer (>= 4.3) - restriction: >= netstandard1.2 - System.Xml.ReaderWriter (>= 4.3) - restriction: >= netstandard1.0 - System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.0 - NuGet.CommandLine (4.1) - Octokit (0.24) - content: none - Microsoft.Net.Http - restriction: && (< net45) (< win8) (< portable-win81+wpa81) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.native.System (4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= netstandard1.6) + Microsoft.Win32.Registry (4.4) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Security.AccessControl (>= 4.4) - restriction: || (>= net461) (&& (< netstandard1.3) (>= monoandroid)) (>= netstandard2.0) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) + System.Security.Principal.Windows (>= 4.4) - restriction: || (>= net461) (&& (< netstandard1.3) (>= monoandroid)) (>= netstandard2.0) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) + NETStandard.Library (2.0) - content: none, restriction: || (&& (< net45) (>= netstandard1.1)) (&& (>= netstandard1.0) (< netstandard2.0) (< xamarinmac)) (&& (>= netstandard1.1) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard1.6) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= uap10.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= monoandroid)) (&& (< netstandard1.0) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (< portable-net45+win8+wpa81) (>= portable-net45+win8+wp8+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) + Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.AppContext (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Console (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Net.Http (>= 4.3.2) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Net.Sockets (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.ObjectModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (< netstandard1.0) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Threading.Timer (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + Nuget.CommandLine (4.3) + Octokit (0.26) - content: none + NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.1) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.native.System (4.3) - restriction: || (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.IO.Compression (4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (>= netstandard1.6) + runtime.native.System.IO.Compression (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Net.Http (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.native.System.Net.Http (4.3) - content: none, restriction: || (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Security.Cryptography.Apple (4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + runtime.native.System.Security.Cryptography.Apple (4.3) - content: none, restriction: || (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) @@ -1255,28 +1158,28 @@ NUGET runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3) - content: none, restriction: || (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) SourceLink.Fake (1.1) - System.AppContext (4.3) - restriction: >= netstandard1.6 + System.AppContext (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Buffers (4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (>= netstandard1.6) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Diagnostics.Tracing (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Collections (4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (>= netstandard1.6) + System.Buffers (4.4) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + 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: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net463) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Collections.Concurrent (4.3) - restriction: >= netstandard1.6 + System.Collections.Concurrent (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net463) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -1287,33 +1190,26 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Collections.Immutable (1.3.1) - System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Globalization (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Linq (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Console (4.3) - restriction: >= netstandard1.6 + System.Collections.Immutable (1.4) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) + System.Console (4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Debug (4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (>= netstandard1.6) + System.Diagnostics.Debug (4.3) - restriction: || (&& (< 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.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net461) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.DiagnosticSource (4.4) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcore2.0) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netcore2.0) (< xamarinmac) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcore2.0) (< xamarinmac)) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcore2.0) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcore2.0) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netcore2.0) (< xamarinmac) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcore2.0) (< xamarinmac)) + System.Diagnostics.DiagnosticSource (4.4.1) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) + System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) System.Diagnostics.Process (4.3) - restriction: >= netstandard1.6 Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -1336,7 +1232,7 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading.Thread (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading.ThreadPool (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Tools (4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Tools (4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) @@ -1350,33 +1246,33 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Tracing (4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (>= netstandard1.6) + System.Diagnostics.Tracing (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Globalization (4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (>= netstandard1.6) + System.Globalization (4.3) - restriction: || (&& (< 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.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net461) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization.Calendars (4.3) - restriction: >= netstandard1.6 + System.Globalization.Calendars (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Globalization.Extensions (4.3) - content: none, restriction: || (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + System.IO (4.3) - restriction: || (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net463) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netcoreapp1.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.5) (< monoandroid)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netcoreapp1.1)) (&& (< netstandard1.4) (>= netcoreapp1.1)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netcoreapp1.1)) (>= netstandard1.6) (&& (< netstandard2.0) (>= netcoreapp1.1)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.IO.Compression (4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= netstandard1.6) + System.IO.Compression (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) runtime.native.System (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) runtime.native.System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -1392,7 +1288,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO.Compression.ZipFile (4.3) - restriction: >= netstandard1.6 + System.IO.Compression.ZipFile (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Buffers (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO.Compression (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -1402,7 +1298,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem (4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -1411,15 +1307,15 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem.Primitives (4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem.Primitives (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Linq (4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= netstandard1.6) + System.Linq (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net463) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (>= netstandard1.6) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.6) (< monoandroid) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.6) (< monoandroid) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Linq.Expressions (4.3) - restriction: >= netstandard1.6 + System.Linq.Expressions (4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) @@ -1437,7 +1333,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Linq.Queryable (4.3) - restriction: >= netstandard1.6 + System.Linq.Queryable (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -1446,8 +1342,9 @@ NUGET System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Http (4.3.2) - restriction: >= netstandard1.6 + System.Net.Http (4.3.2) - content: none, restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81) runtime.native.System (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) runtime.native.System.Net.Http (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -1458,6 +1355,7 @@ NUGET System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Globalization.Extensions (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.IO.Compression (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81) System.IO.FileSystem (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) @@ -1473,12 +1371,12 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Net.Primitives (4.3) - restriction: >= netstandard1.6 + System.Net.Primitives (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Requests (4.3) - restriction: >= netstandard1.6 + System.Net.Requests (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -1492,7 +1390,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Sockets (4.3) - restriction: >= netstandard1.6 + System.Net.Sockets (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -1504,13 +1402,13 @@ NUGET System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.ObjectModel (4.3) - restriction: >= netstandard1.6 + System.ObjectModel (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (>= netstandard1.6) + System.Reflection (4.3) - restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netcoreapp1.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netcoreapp1.1)) (&& (< netstandard1.4) (>= netcoreapp1.1)) (&& (< netstandard1.5) (>= netcoreapp1.1)) (>= netstandard1.6) (&& (< netstandard2.0) (>= netcoreapp1.1)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) @@ -1522,70 +1420,56 @@ NUGET System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Extensions (4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= netstandard1.6) + System.Reflection.Extensions (4.3) - restriction: || (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Reflection.Metadata (1.4.2) - System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Collections.Immutable (>= 1.1.37) - restriction: && (< netstandard1.1) (< monoandroid) (< win8) (>= portable-net45+win8) - System.Collections.Immutable (>= 1.3.1) - restriction: || (>= net45) (&& (>= netstandard1.1) (< win8)) (&& (< netstandard1.1) (>= monoandroid)) (&& (< netstandard1.1) (>= win8)) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) (>= wpa81) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.IO (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.IO.Compression (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Linq (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Text.Encoding (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Text.Encoding.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection.Primitives (4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + System.Reflection.Metadata (1.5) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Collections.Immutable (>= 1.4) - restriction: || (&& (>= netstandard1.1) (< netstandard2.0)) (&& (< netstandard1.1) (>= monoandroid)) (&& (< netstandard1.1) (< monoandroid) (>= portable-net45+win8)) (&& (>= netstandard2.0) (< netcoreapp2.0)) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) (&& (< portable-net45+win8) (>= portable-net45+win8+wpa81)) + System.Reflection.Primitives (4.3) - content: none, restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netcoreapp1.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.5) (< monoandroid)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netcoreapp1.1)) (&& (< netstandard1.4) (>= netcoreapp1.1)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netcoreapp1.1)) (>= netstandard1.6) (&& (< netstandard2.0) (>= netcoreapp1.1)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Reflection.TypeExtensions (4.3) - restriction: >= netstandard1.6 - System.Reflection (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= net462) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Resources.ResourceManager (4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (>= netstandard1.6) + System.Reflection.TypeExtensions (4.4) - restriction: || (&& (>= uap10.0) (>= dnxcore50)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + System.Reflection (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.Resources.ResourceManager (4.3) - restriction: || (&& (< 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.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net461) (>= uap10.0)) (&& (>= net463) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Runtime (4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + System.Runtime (4.3) - restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.1)) (&& (>= net462) (>= uap10.0)) (&& (>= net463) (>= uap10.0)) (&& (>= net463) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.1) (< win8)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netcoreapp1.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netcoreapp1.1)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.5) (< monoandroid)) (&& (< netstandard1.0) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.5) (< monoandroid)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netcoreapp1.1)) (&& (< netstandard1.4) (>= netcoreapp1.1)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netcoreapp1.1)) (>= netstandard1.6) (&& (< netstandard2.0) (>= netcoreapp1.1)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.Extensions (4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (>= netstandard1.6) + System.Runtime.Extensions (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net463) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.Handles (4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.1)) (>= netstandard1.6) + System.Runtime.Handles (4.3) - content: none, restriction: || (&& (< 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) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net463) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netcoreapp1.1)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netcoreapp1.1)) (&& (< netstandard1.4) (>= netcoreapp1.1)) (&& (< netstandard1.5) (>= netcoreapp1.1)) (>= netstandard1.6) (&& (< netstandard2.0) (>= netcoreapp1.1)) (&& (>= netcoreapp1.1) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore1.1) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore1.1) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore1.1) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore1.1) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= net462) (>= dnxcore50) (>= netcore1.1) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore1.1) - System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices (4.3) - content: none, restriction: || (&& (< net45) (>= net451) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net463) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= net462) (>= dnxcore50) (>= netcoreapp1.1) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) + System.Runtime.InteropServices.RuntimeInformation (4.3) - content: none, restriction: || (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= wpa81)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) runtime.native.System (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -1597,12 +1481,15 @@ NUGET System.IO (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Reflection (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Numerics (4.3) - restriction: >= netstandard1.6 + System.Runtime.Numerics (4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Security.Cryptography.Algorithms (4.3) - restriction: >= netstandard1.6 + System.Security.AccessControl (4.4) - restriction: || (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (>= monoandroid)) (>= netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 + System.Security.Principal.Windows (>= 4.4) - restriction: || (>= netstandard1.3) (>= monoandroid) + System.Security.Cryptography.Algorithms (4.3) - content: none, restriction: || (&& (< 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) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (>= uap10.0)) (&& (>= net461) (>= dnxcore50)) (&& (>= net461) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -1617,19 +1504,18 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= net463) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Cng (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4)) (>= net461) (>= netstandard1.6) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4)) (>= net461) (>= netstandard1.6) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Security.Cryptography.Csp (4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Cng (4.4) - content: none, restriction: || (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Csp (4.3) - content: none, restriction: || (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Reflection (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -1643,7 +1529,7 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Encoding (4.3) - content: none, restriction: || (&& (< 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) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= uap10.0)) (&& (>= net461) (>= dnxcore50)) (&& (>= net461) (< netstandard1.4)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net463) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -1656,21 +1542,20 @@ NUGET System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.OpenSsl (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (>= net463) (>= netstandard1.6) (>= monoandroid) - System.Collections (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Numerics (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.OpenSsl (4.4) - content: none, restriction: || (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Collections (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.IO (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime.Extensions (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime.Handles (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime.InteropServices (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime.Numerics (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Text.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Primitives (4.3) - content: none, restriction: || (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (>= uap10.0)) (&& (>= net461) (< netstandard1.4)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net463) (>= uap10.0)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -1678,7 +1563,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.X509Certificates (4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.X509Certificates (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) runtime.native.System (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) runtime.native.System.Net.Http (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -1704,34 +1589,36 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + System.Security.Principal.Windows (4.4) - restriction: || (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (>= monoandroid)) (>= netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 + System.Text.Encoding (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net463)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net46) (>= dnxcore50)) (&& (>= net463) (>= uap10.0)) (&& (>= net463) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= 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) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding.Extensions (4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= netstandard1.6) + System.Text.Encoding.Extensions (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.RegularExpressions (4.3) - restriction: >= netstandard1.6 - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcore1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcore1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcore1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netcore1.1) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcore1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcore1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (>= netstandard1.6) + System.Text.RegularExpressions (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netcoreapp1.1) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Threading (4.3) - restriction: || (&& (< 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.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net461) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (>= netstandard1.6) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + System.Threading.Tasks (4.3) - restriction: || (&& (< 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.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net461) (>= uap10.0)) (&& (>= net463) (>= uap10.0)) (&& (>= net463) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (< win8) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.0) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.5) (< portable-net45+win8+wpa81)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Threading.Tasks (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Threading.Tasks.Parallel (4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks.Extensions (4.4) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + 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.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -1740,20 +1627,18 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Thread (4.3) - restriction: >= netstandard1.6 + System.Threading.Thread (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.ThreadPool (4.3) - restriction: >= netstandard1.6 + System.Threading.ThreadPool (4.3) - restriction: && (>= netstandard1.6) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.Timer (4.3) - restriction: >= netstandard1.6 + System.Threading.Timer (4.3) - restriction: || (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< xamarinmac)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net451) (>= netstandard1.2) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net451) (>= netstandard1.2) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net451) (>= netstandard1.2) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) - System.ValueTuple (4.3.1) - restriction: < netstandard1.6 - System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Xml.ReaderWriter (4.3) - restriction: >= netstandard1.6 + System.ValueTuple (4.4) + NETStandard.Library (>= 1.6.1) - restriction: && (< net461) (>= netstandard1.0) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Xml.ReaderWriter (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -1769,7 +1654,7 @@ NUGET System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Xml.XDocument (4.3) - restriction: >= netstandard1.6 + System.Xml.XDocument (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -1783,17 +1668,20 @@ NUGET System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) remote: https://ci.appveyor.com/nuget/fsharp-formatting - FSharp.Formatting (3.0.0-beta06) - FSharp.Compiler.Service (>= 12.0.5 < 13.0) - FSharp.Formatting.CommandTool (3.0.0-beta06) + FSharp.Formatting (3.0.0-beta07) + FSharp.Compiler.Service (>= 13.0 < 14.0) + Microsoft.AspNet.Razor (>= 3.2.3 < 4.0) + System.ValueTuple (>= 4.3.1 < 5.0) + FSharp.Formatting.CommandTool (3.0.0-beta07) GITHUB remote: fsharp/FAKE - modules/Octokit/Octokit.fsx (b323aef299f337fbfbbc72fcc737d8652c658426) + modules/Octokit/Octokit.fsx (2b028cb33738ed3d35a79730bd792c24d48a0f31) Octokit (>= 0.20) GROUP netcore -RESTRICTION: || (== netstandard1.6) (== netcore1.0) +STORAGE: NONE +RESTRICTION: || (== netstandard1.6) (== netcoreapp1.0) NUGET - remote: http://www.nuget.org/api/v2 + remote: https://api.nuget.org/v3/index.json Argu (3.7) FSharp.Core (>= 4.0.1.7-alpha) NETStandard.Library (>= 1.6) @@ -1801,45 +1689,19 @@ NUGET Chessie (0.6) FSharp.Core (>= 4.0.1.7-alpha) NETStandard.Library (>= 1.6) - FSharp.Compiler.Service (13.0) - content: none - FSharp.Core (>= 4.1.17) - Microsoft.DiaSymReader (>= 1.1) - Microsoft.DiaSymReader.PortablePdb (>= 1.2) - Microsoft.NETCore.Platforms (>= 1.1) - Microsoft.NETCore.Targets (>= 1.1) + FSharp.Compiler.Service (14.0.2) - content: none + FSharp.Core (>= 4.1.18) NETStandard.Library (>= 1.6.1) - runtime.native.System (>= 4.3) - runtime.native.System.IO.Compression (>= 4.3) - System.Buffers (>= 4.3) - System.Collections (>= 4.3) System.Collections.Immutable (>= 1.3) - System.Diagnostics.Debug (>= 4.3) System.Diagnostics.Process (>= 4.1) System.Diagnostics.TraceSource (>= 4.0) - System.Diagnostics.Tracing (>= 4.3) - System.Globalization (>= 4.3) - System.IO (>= 4.3) - System.IO.Compression (>= 4.3) - System.Linq (>= 4.3) - System.Reflection (>= 4.3) System.Reflection.Emit (>= 4.3) - System.Reflection.Extensions (>= 4.3) System.Reflection.Metadata (>= 1.4.1) - System.Reflection.Primitives (>= 4.3) System.Reflection.TypeExtensions (>= 4.3) - System.Resources.ResourceManager (>= 4.3) - System.Runtime (>= 4.3) - System.Runtime.Extensions (>= 4.3) - System.Runtime.Handles (>= 4.3) - System.Runtime.InteropServices (>= 4.3) System.Runtime.Loader (>= 4.0) System.Security.Cryptography.Algorithms (>= 4.3) - System.Text.Encoding (>= 4.3) - System.Text.Encoding.Extensions (>= 4.3) - System.Threading (>= 4.3) - System.Threading.Tasks (>= 4.3) - FSharp.Compiler.Tools (4.1.23) - FSharp.Core (4.1.17) + System.ValueTuple (>= 4.4) + FSharp.Core (4.1.18) System.Collections (>= 4.0.11) System.Console (>= 4.0) System.Diagnostics.Debug (>= 4.0.11) @@ -1863,10 +1725,10 @@ NUGET System.Threading.Thread (>= 4.0) System.Threading.ThreadPool (>= 4.0.10) System.Threading.Timer (>= 4.0.1) - Libuv (1.9.2) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + Libuv (1.10) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.NETCore.Platforms (>= 1.0.1) - Microsoft.CodeAnalysis.Analyzers (1.1) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - Microsoft.CodeAnalysis.Common (2.3.1) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + Microsoft.CodeAnalysis.Analyzers (1.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.CodeAnalysis.Common (2.3.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.CodeAnalysis.Analyzers (>= 1.1) System.AppContext (>= 4.3) System.Collections (>= 4.3) @@ -1906,48 +1768,15 @@ NUGET System.Xml.XDocument (>= 4.3) System.Xml.XmlDocument (>= 4.3) System.Xml.XPath.XDocument (>= 4.3) - Microsoft.CodeAnalysis.CSharp (2.3.1) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - Microsoft.CodeAnalysis.Common (2.3.1) - Microsoft.CodeAnalysis.VisualBasic (2.3.1) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - Microsoft.CodeAnalysis.Common (>= 2.3.1) - Microsoft.CSharp (4.3) - System.Collections (>= 4.3) - System.Diagnostics.Debug (>= 4.3) + Microsoft.CodeAnalysis.CSharp (2.3.2) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.CodeAnalysis.Common (2.3.2) + Microsoft.CodeAnalysis.VisualBasic (2.3.2) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.CodeAnalysis.Common (>= 2.3.2) + Microsoft.CSharp (4.4) + NETStandard.Library (>= 1.6.1) System.Dynamic.Runtime (>= 4.3) - System.Globalization (>= 4.3) - System.Linq (>= 4.3) - System.Linq.Expressions (>= 4.3) - System.ObjectModel (>= 4.3) - System.Reflection (>= 4.3) - System.Reflection.Extensions (>= 4.3) - System.Reflection.Primitives (>= 4.3) System.Reflection.TypeExtensions (>= 4.3) - System.Resources.ResourceManager (>= 4.3) - System.Runtime (>= 4.3) - System.Runtime.Extensions (>= 4.3) - System.Runtime.InteropServices (>= 4.3) - System.Threading (>= 4.3) - Microsoft.DiaSymReader (1.1) - content: none - System.Diagnostics.Debug (>= 4.0.11) - System.Runtime (>= 4.1) - System.Runtime.InteropServices (>= 4.1) - Microsoft.DiaSymReader.PortablePdb (1.2) - content: none - Microsoft.DiaSymReader (>= 1.1) - System.Collections (>= 4.3) - System.Collections.Immutable (>= 1.3.1) - System.Diagnostics.Debug (>= 4.3) - System.Globalization (>= 4.3) - System.IO (>= 4.3) - System.Linq (>= 4.3) - System.Reflection (>= 4.3) - System.Reflection.Metadata (>= 1.4.2) - System.Reflection.Primitives (>= 4.3) - System.Runtime (>= 4.3) - System.Runtime.Extensions (>= 4.3) - System.Runtime.InteropServices (>= 4.3) - System.Text.Encoding (>= 4.3) - System.Threading (>= 4.3) - Microsoft.DotNet.PlatformAbstractions (1.1.2) + Microsoft.DotNet.PlatformAbstractions (2.0) System.AppContext (>= 4.1) System.Collections (>= 4.0.11) System.IO (>= 4.1) @@ -1957,92 +1786,70 @@ NUGET System.Runtime.InteropServices (>= 4.1) System.Runtime.InteropServices.RuntimeInformation (>= 4.0) Microsoft.NETCore.App (1.1.2) - Libuv (>= 1.9.1) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - Microsoft.CodeAnalysis.CSharp (>= 1.3) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - Microsoft.CodeAnalysis.VisualBasic (>= 1.3) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - Microsoft.CSharp (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - Microsoft.NETCore.DotNetHostPolicy (>= 1.0.5) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - Microsoft.NETCore.Platforms (>= 1.0.2) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - Microsoft.NETCore.Runtime.CoreCLR (>= 1.0.7) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - Microsoft.VisualBasic (>= 10.0.1) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - NETStandard.Library (>= 1.6) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - runtime.native.System.Security.Cryptography (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Buffers (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Collections.Immutable (>= 1.2) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.ComponentModel (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.ComponentModel.Annotations (>= 4.1) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Diagnostics.DiagnosticSource (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Diagnostics.Process (>= 4.1) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Dynamic.Runtime (>= 4.0.11) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Globalization.Extensions (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.IO.FileSystem.Watcher (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.IO.MemoryMappedFiles (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.IO.UnmanagedMemoryStream (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Linq.Expressions (>= 4.1.1) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Linq.Parallel (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Linq.Queryable (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Net.Http (>= 4.1.2) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Net.NameResolution (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Net.Requests (>= 4.0.11) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Net.Security (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Net.WebHeaderCollection (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Numerics.Vectors (>= 4.1.1) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Reflection.DispatchProxy (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Reflection.Metadata (>= 1.3) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Resources.Reader (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Runtime.Loader (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Security.Cryptography.Algorithms (>= 4.2) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Security.Cryptography.Encoding (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Security.Cryptography.Primitives (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Security.Cryptography.X509Certificates (>= 4.1) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Threading.Tasks.Dataflow (>= 4.6) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Threading.Tasks.Extensions (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Threading.Thread (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Threading.ThreadPool (>= 4.0.10) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - Microsoft.NETCore.DotNetHost (1.1) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - Microsoft.NETCore.DotNetHostPolicy (1.1.2) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - Microsoft.NETCore.DotNetHostResolver (>= 1.1) - Microsoft.NETCore.DotNetHostResolver (1.1) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - Microsoft.NETCore.DotNetHost (>= 1.1) - Microsoft.NETCore.Jit (1.1.2) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - Microsoft.NETCore.Platforms (1.1) - content: none - Microsoft.NETCore.Runtime.CoreCLR (1.1.2) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - Microsoft.NETCore.Jit (>= 1.1.2) - Microsoft.NETCore.Windows.ApiSets (>= 1.0.1) - Microsoft.NETCore.Targets (1.1) - content: none - Microsoft.NETCore.Windows.ApiSets (1.0.1) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - Microsoft.VisualBasic (10.1) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Collections (>= 4.3) - System.Diagnostics.Debug (>= 4.3) + Libuv (>= 1.9.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.CodeAnalysis.CSharp (>= 1.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.CodeAnalysis.VisualBasic (>= 1.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.CSharp (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.NETCore.DotNetHostPolicy (>= 1.0.5) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.NETCore.Platforms (>= 1.0.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.NETCore.Runtime.CoreCLR (>= 1.0.7) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.VisualBasic (>= 10.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + NETStandard.Library (>= 1.6) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + runtime.native.System.Security.Cryptography (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Buffers (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Collections.Immutable (>= 1.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.ComponentModel (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.ComponentModel.Annotations (>= 4.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Diagnostics.DiagnosticSource (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Diagnostics.Process (>= 4.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Dynamic.Runtime (>= 4.0.11) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Globalization.Extensions (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.IO.FileSystem.Watcher (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.IO.MemoryMappedFiles (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.IO.UnmanagedMemoryStream (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Linq.Expressions (>= 4.1.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Linq.Parallel (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Linq.Queryable (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Net.Http (>= 4.1.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Net.NameResolution (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Net.Requests (>= 4.0.11) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Net.Security (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Net.WebHeaderCollection (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Numerics.Vectors (>= 4.1.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Reflection.DispatchProxy (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Reflection.Metadata (>= 1.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Resources.Reader (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Runtime.Loader (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Security.Cryptography.Algorithms (>= 4.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Security.Cryptography.Encoding (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Security.Cryptography.Primitives (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Security.Cryptography.X509Certificates (>= 4.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Threading.Tasks.Dataflow (>= 4.6) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Threading.Tasks.Extensions (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Threading.Thread (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Threading.ThreadPool (>= 4.0.10) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.NETCore.DotNetAppHost (2.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.NETCore.DotNetHostPolicy (2.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.NETCore.DotNetHostResolver (>= 2.0) + Microsoft.NETCore.DotNetHostResolver (2.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.NETCore.DotNetAppHost (>= 2.0) + Microsoft.NETCore.Jit (2.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.NETCore.Platforms (2.0) + Microsoft.NETCore.Runtime.CoreCLR (2.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.NETCore.Jit (>= 2.0) + Microsoft.NETCore.Targets (2.0) + Microsoft.VisualBasic (10.2) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + NETStandard.Library (>= 1.6.1) System.Dynamic.Runtime (>= 4.3) - System.Globalization (>= 4.3) - System.Linq (>= 4.3) - System.Linq.Expressions (>= 4.3) - System.ObjectModel (>= 4.3) - System.Reflection (>= 4.3) - System.Reflection.Extensions (>= 4.3) - System.Reflection.Primitives (>= 4.3) System.Reflection.TypeExtensions (>= 4.3) - System.Resources.ResourceManager (>= 4.3) - System.Runtime (>= 4.3) - System.Runtime.Extensions (>= 4.3) - System.Runtime.InteropServices (>= 4.3) - System.Threading (>= 4.3) Microsoft.Win32.Primitives (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) - Microsoft.Win32.Registry (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - System.Collections (>= 4.3) - System.Globalization (>= 4.3) - System.Resources.ResourceManager (>= 4.3) - System.Runtime (>= 4.3) - System.Runtime.Extensions (>= 4.3) - System.Runtime.Handles (>= 4.3) - System.Runtime.InteropServices (>= 4.3) + Microsoft.Win32.Registry (4.4) + NETStandard.Library (>= 1.6.1) Mono.Cecil (0.10.0-beta6) System.Collections (>= 4.0.11) System.IO.FileSystem (>= 4.0.1) @@ -2104,7 +1911,7 @@ NUGET System.Runtime.Serialization.Formatters (>= 4.3) System.Runtime.Serialization.Primitives (>= 4.3) System.Xml.XmlDocument (>= 4.3) - Paket.Core (5.92.3) + Paket.Core (5.92.2) Chessie (>= 0.6) Mono.Cecil (>= 0.10.0-beta6) Newtonsoft.Json (>= 10.0.3) @@ -2112,29 +1919,29 @@ NUGET System.Diagnostics.Process (>= 4.3) System.Diagnostics.TraceSource (>= 4.3) System.Security.Cryptography.Algorithms (>= 4.3) - System.Security.Cryptography.ProtectedData (>= 4.3) + System.Security.Cryptography.ProtectedData (>= 4.4) System.Xml.XDocument (>= 4.3) System.Xml.XPath.XDocument (>= 4.3) System.Xml.XPath.XmlDocument (>= 4.3) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.native.System (4.3) - content: none + runtime.native.System (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.IO.Compression (4.3) - content: none + runtime.native.System.IO.Compression (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) runtime.native.System.Net.Http (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Net.Security (4.3) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + runtime.native.System.Net.Security (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.debian.8-x64.runtime.native.System.Security.Cryptography (>= 4.3.1) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography (>= 4.3.1) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography (>= 4.3.1) @@ -2158,30 +1965,30 @@ NUGET runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3) - content: none runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) System.AppContext (4.3) System.Runtime (>= 4.3) - System.Buffers (4.3) - content: none + System.Buffers (4.4) System.Diagnostics.Debug (>= 4.3) System.Diagnostics.Tracing (>= 4.3) System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) System.Threading (>= 4.3) - System.Collections (4.3) - content: none + System.Collections (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) @@ -2196,15 +2003,8 @@ NUGET System.Runtime.Extensions (>= 4.3) System.Threading (>= 4.3) System.Threading.Tasks (>= 4.3) - System.Collections.Immutable (1.3.1) - content: none - System.Collections (>= 4.3) - System.Diagnostics.Debug (>= 4.3) - System.Globalization (>= 4.3) - System.Linq (>= 4.3) - System.Resources.ResourceManager (>= 4.3) - System.Runtime (>= 4.3) - System.Runtime.Extensions (>= 4.3) - System.Threading (>= 4.3) + System.Collections.Immutable (1.4) - content: none + NETStandard.Library (>= 1.6.1) System.Collections.NonGeneric (4.3) System.Diagnostics.Debug (>= 4.3) System.Globalization (>= 4.3) @@ -2222,18 +2022,9 @@ NUGET System.Threading (>= 4.3) System.ComponentModel (4.3) System.Runtime (>= 4.3) - System.ComponentModel.Annotations (4.3) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Collections (>= 4.3) + System.ComponentModel.Annotations (4.4) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + NETStandard.Library (>= 1.6.1) System.ComponentModel (>= 4.3) - System.Globalization (>= 4.3) - System.Linq (>= 4.3) - System.Reflection (>= 4.3) - System.Reflection.Extensions (>= 4.3) - System.Resources.ResourceManager (>= 4.3) - System.Runtime (>= 4.3) - System.Runtime.Extensions (>= 4.3) - System.Text.RegularExpressions (>= 4.3) - System.Threading (>= 4.3) System.ComponentModel.Primitives (4.3) System.ComponentModel (>= 4.3) System.Resources.ResourceManager (>= 4.3) @@ -2260,11 +2051,11 @@ NUGET System.IO (>= 4.3) System.Runtime (>= 4.3) System.Text.Encoding (>= 4.3) - System.Diagnostics.Debug (4.3) - content: none + System.Diagnostics.Debug (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) - System.Diagnostics.DiagnosticSource (4.4) + System.Diagnostics.DiagnosticSource (4.4.1) System.Collections (>= 4.3) System.Diagnostics.Debug (>= 4.3) System.Diagnostics.Tracing (>= 4.3) @@ -2304,7 +2095,7 @@ NUGET System.Threading.Tasks (>= 4.3) System.Threading.Thread (>= 4.3) System.Threading.ThreadPool (>= 4.3) - System.Diagnostics.StackTrace (4.3) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + System.Diagnostics.StackTrace (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) System.IO.FileSystem (>= 4.3) System.Reflection (>= 4.3) System.Reflection.Metadata (>= 1.4.1) @@ -2323,7 +2114,7 @@ NUGET System.Runtime (>= 4.3) System.Runtime.Extensions (>= 4.3) System.Threading (>= 4.3) - System.Diagnostics.Tracing (4.3) - content: none + System.Diagnostics.Tracing (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) @@ -2342,7 +2133,7 @@ NUGET System.Runtime (>= 4.3) System.Runtime.Extensions (>= 4.3) System.Threading (>= 4.3) - System.Globalization (4.3) - content: none + System.Globalization (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) @@ -2358,7 +2149,7 @@ NUGET System.Runtime (>= 4.3) System.Runtime.Extensions (>= 4.3) System.Runtime.InteropServices (>= 4.3) - System.IO (4.3) - content: none + System.IO (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) @@ -2401,7 +2192,7 @@ NUGET System.Threading.Tasks (>= 4.3) System.IO.FileSystem.Primitives (4.3) System.Runtime (>= 4.3) - System.IO.FileSystem.Watcher (4.3) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + System.IO.FileSystem.Watcher (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.Win32.Primitives (>= 4.3) runtime.native.System (>= 4.3) @@ -2418,7 +2209,7 @@ NUGET System.Threading.Overlapped (>= 4.3) System.Threading.Tasks (>= 4.3) System.Threading.Thread (>= 4.3) - System.IO.MemoryMappedFiles (4.3) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + System.IO.MemoryMappedFiles (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.NETCore.Platforms (>= 1.1) runtime.native.System (>= 4.3) System.IO (>= 4.3) @@ -2432,7 +2223,7 @@ NUGET System.Runtime.InteropServices (>= 4.3) System.Threading (>= 4.3) System.Threading.Tasks (>= 4.3) - System.IO.UnmanagedMemoryStream (4.3) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + System.IO.UnmanagedMemoryStream (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) System.Buffers (>= 4.3) System.Diagnostics.Debug (>= 4.3) System.IO (>= 4.3) @@ -2442,7 +2233,7 @@ NUGET System.Runtime.InteropServices (>= 4.3) System.Threading (>= 4.3) System.Threading.Tasks (>= 4.3) - System.Linq (4.3) - content: none + System.Linq (4.3) System.Collections (>= 4.3) System.Diagnostics.Debug (>= 4.3) System.Resources.ResourceManager (>= 4.3) @@ -2513,7 +2304,7 @@ NUGET System.Text.Encoding (>= 4.3) System.Threading (>= 4.3) System.Threading.Tasks (>= 4.3) - System.Net.NameResolution (4.3) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + System.Net.NameResolution (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.NETCore.Platforms (>= 1.1) runtime.native.System (>= 4.3) System.Collections (>= 4.3) @@ -2547,7 +2338,7 @@ NUGET System.Runtime (>= 4.3) System.Threading (>= 4.3) System.Threading.Tasks (>= 4.3) - System.Net.Security (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + System.Net.Security (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.Win32.Primitives (>= 4.3) runtime.native.System (>= 4.3) @@ -2588,34 +2379,24 @@ NUGET System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) System.Runtime.Extensions (>= 4.3) - System.Numerics.Vectors (4.3) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Globalization (>= 4.3) - System.Resources.ResourceManager (>= 4.3) - System.Runtime (>= 4.3) - System.Runtime.Extensions (>= 4.3) + System.Numerics.Vectors (4.4) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + NETStandard.Library (>= 1.6.1) System.ObjectModel (4.3) System.Collections (>= 4.3) System.Diagnostics.Debug (>= 4.3) System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) System.Threading (>= 4.3) - System.Reflection (4.3) - content: none + System.Reflection (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.IO (>= 4.3) System.Reflection.Primitives (>= 4.3) System.Runtime (>= 4.3) - System.Reflection.DispatchProxy (4.3) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Collections (>= 4.3) - System.Linq (>= 4.3) - System.Reflection (>= 4.3) + System.Reflection.DispatchProxy (4.4) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + NETStandard.Library (>= 1.6.1) System.Reflection.Emit (>= 4.3) System.Reflection.Emit.ILGeneration (>= 4.3) - System.Reflection.Extensions (>= 4.3) - System.Reflection.Primitives (>= 4.3) - System.Resources.ResourceManager (>= 4.3) - System.Runtime (>= 4.3) - System.Threading (>= 4.3) System.Reflection.Emit (4.3) - content: none System.IO (>= 4.3) System.Reflection (>= 4.3) @@ -2631,59 +2412,46 @@ NUGET System.Reflection.Emit.ILGeneration (>= 4.3) System.Reflection.Primitives (>= 4.3) System.Runtime (>= 4.3) - System.Reflection.Extensions (4.3) - content: none + System.Reflection.Extensions (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Reflection (>= 4.3) System.Runtime (>= 4.3) - System.Reflection.Metadata (1.4.2) - content: none - System.Collections (>= 4.3) - System.Collections.Immutable (>= 1.3.1) - System.Diagnostics.Debug (>= 4.3) - System.IO (>= 4.3) - System.IO.Compression (>= 4.3) - System.Linq (>= 4.3) - System.Reflection (>= 4.3) - System.Reflection.Extensions (>= 4.3) - System.Reflection.Primitives (>= 4.3) - System.Resources.ResourceManager (>= 4.3) - System.Runtime (>= 4.3) - System.Runtime.Extensions (>= 4.3) - System.Runtime.InteropServices (>= 4.3) - System.Text.Encoding (>= 4.3) - System.Text.Encoding.Extensions (>= 4.3) - System.Threading (>= 4.3) - System.Reflection.Primitives (4.3) - content: none + System.Reflection.Metadata (1.5) - content: none + NETStandard.Library (>= 1.6.1) + System.Collections.Immutable (>= 1.4) + System.Reflection.Primitives (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) - System.Reflection.TypeExtensions (4.3) - content: none + System.Reflection.TypeExtensions (4.4) - content: none System.Reflection (>= 4.3) + System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) - System.Resources.Reader (4.3) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + System.Resources.Reader (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) System.IO (>= 4.3) System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) System.Text.Encoding (>= 4.3) System.Threading (>= 4.3) - System.Resources.ResourceManager (4.3) - content: none + System.Resources.ResourceManager (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Globalization (>= 4.3) System.Reflection (>= 4.3) System.Runtime (>= 4.3) - System.Runtime (4.3) - content: none + System.Runtime (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - System.Runtime.Extensions (4.3) - content: none + System.Runtime.Extensions (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) - System.Runtime.Handles (4.3) - content: none + System.Runtime.Handles (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) - System.Runtime.InteropServices (4.3) - content: none + System.Runtime.InteropServices (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Reflection (>= 4.3) @@ -2716,7 +2484,7 @@ NUGET System.Runtime.Serialization.Primitives (4.3) System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) - System.Security.Claims (4.3) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + System.Security.Claims (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) System.Collections (>= 4.3) System.Globalization (>= 4.3) System.IO (>= 4.3) @@ -2739,8 +2507,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) System.Security.Cryptography.Primitives (>= 4.3) System.Text.Encoding (>= 4.3) - System.Security.Cryptography.Cng (4.3) - Microsoft.NETCore.Platforms (>= 1.1) + System.Security.Cryptography.Cng (4.4) System.IO (>= 4.3) System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) @@ -2778,8 +2545,7 @@ NUGET System.Runtime.InteropServices (>= 4.3) System.Security.Cryptography.Primitives (>= 4.3) System.Text.Encoding (>= 4.3) - System.Security.Cryptography.OpenSsl (4.3) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) + System.Security.Cryptography.OpenSsl (4.4) System.Collections (>= 4.3) System.IO (>= 4.3) System.Resources.ResourceManager (>= 4.3) @@ -2800,12 +2566,8 @@ NUGET System.Runtime (>= 4.3) System.Threading (>= 4.3) System.Threading.Tasks (>= 4.3) - System.Security.Cryptography.ProtectedData (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - System.Resources.ResourceManager (>= 4.3) - System.Runtime (>= 4.3) - System.Runtime.InteropServices (>= 4.3) - System.Security.Cryptography.Primitives (>= 4.3) + System.Security.Cryptography.ProtectedData (4.4) + NETStandard.Library (>= 1.6.1) System.Security.Cryptography.X509Certificates (4.3) Microsoft.NETCore.Platforms (>= 1.1) runtime.native.System (>= 4.3) @@ -2832,10 +2594,9 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) System.Text.Encoding (>= 4.3) System.Threading (>= 4.3) - System.Security.Principal (4.3) - restriction: || (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + System.Security.Principal (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) System.Runtime (>= 4.3) - System.Security.Principal.Windows (4.3) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - Microsoft.NETCore.Platforms (>= 1.1) + System.Security.Principal.Windows (4.4) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.Win32.Primitives (>= 4.3) System.Collections (>= 4.3) System.Diagnostics.Debug (>= 4.3) @@ -2849,24 +2610,13 @@ NUGET System.Security.Principal (>= 4.3) System.Text.Encoding (>= 4.3) System.Threading (>= 4.3) - System.Text.Encoding (4.3) - content: none + System.Text.Encoding (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) - System.Text.Encoding.CodePages (4.3) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - Microsoft.NETCore.Platforms (>= 1.1) - System.Collections (>= 4.3) - System.Globalization (>= 4.3) - System.IO (>= 4.3) - System.Reflection (>= 4.3) - System.Resources.ResourceManager (>= 4.3) - System.Runtime (>= 4.3) - System.Runtime.Extensions (>= 4.3) - System.Runtime.Handles (>= 4.3) - System.Runtime.InteropServices (>= 4.3) - System.Text.Encoding (>= 4.3) - System.Threading (>= 4.3) - System.Text.Encoding.Extensions (4.3) - content: none + System.Text.Encoding.CodePages (4.4) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + NETStandard.Library (>= 1.6.1) + System.Text.Encoding.Extensions (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) @@ -2878,31 +2628,22 @@ NUGET System.Runtime (>= 4.3) System.Runtime.Extensions (>= 4.3) System.Threading (>= 4.3) - System.Threading (4.3) - content: none + System.Threading (4.3) System.Runtime (>= 4.3) System.Threading.Tasks (>= 4.3) - System.Threading.Overlapped (4.3) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) + System.Threading.Overlapped (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.NETCore.Platforms (>= 1.1) System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) System.Runtime.Handles (>= 4.3) - System.Threading.Tasks (4.3) - content: none + System.Threading.Tasks (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) - System.Threading.Tasks.Dataflow (4.7) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Collections (>= 4.3) - System.Collections.Concurrent (>= 4.3) - System.Diagnostics.Debug (>= 4.3) - System.Diagnostics.Tracing (>= 4.3) - System.Dynamic.Runtime (>= 4.3) - System.Linq (>= 4.3) - System.Resources.ResourceManager (>= 4.3) - System.Runtime (>= 4.3) - System.Runtime.Extensions (>= 4.3) - System.Threading (>= 4.3) - System.Threading.Tasks (>= 4.3) - System.Threading.Tasks.Extensions (4.3) + System.Threading.Tasks.Dataflow (4.8) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + NETStandard.Library (>= 1.6.1) + System.Dynamic.Runtime (>= 4.3) + System.Threading.Tasks.Extensions (4.4) System.Collections (>= 4.3) System.Runtime (>= 4.3) System.Threading.Tasks (>= 4.3) @@ -2924,10 +2665,8 @@ NUGET Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) - System.ValueTuple (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcore1.0)) (&& (== netstandard1.6) (>= netcore1.0)) (== netcore1.0) - System.Collections (>= 4.3) - System.Resources.ResourceManager (>= 4.3) - System.Runtime (>= 4.3) + System.ValueTuple (4.4) - content: none + NETStandard.Library (>= 1.6.1) System.Xml.ReaderWriter (4.3) System.Collections (>= 4.3) System.Diagnostics.Debug (>= 4.3) @@ -3001,299 +2740,1000 @@ NUGET System.Xml.XPath (>= 4.3) GROUP NetcoreBuild +STORAGE: NONE NUGET - remote: https://www.nuget.org/api/v2 + remote: https://api.nuget.org/v3/index.json Chessie (0.6) FSharp.Core - restriction: < netstandard1.6 FSharp.Core (>= 4.0.1.7-alpha) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6) - restriction: >= netstandard1.6 - Fake.Core.BuildServer (5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 + Fake.Core.BuildServer (5.0.0-alpha015) - restriction: >= netstandard1.6 FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.Core.Context (5.0.0-alpha012) - restriction: >= netstandard1.6 + Fake.Core.Context (5.0.0-alpha015) - restriction: >= netstandard1.6 + FSharp.Compiler.Tools (>= 4.1.23) - restriction: >= netstandard1.6 FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: >= netstandard1.6 + Microsoft.NETCore.Targets (>= 1.1) - restriction: >= netstandard1.6 + Microsoft.Win32.Primitives (>= 4.3) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.Core.Environment (5.0.0-alpha012) - restriction: >= netstandard1.6 + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.native.System (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Net.Http (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: >= netstandard1.6 + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + System.AppContext (>= 4.3) - restriction: >= netstandard1.6 + System.Buffers (>= 4.3) - restriction: >= netstandard1.6 + System.Collections (>= 4.3) - restriction: >= netstandard1.6 + System.Collections.Concurrent (>= 4.3) - restriction: >= netstandard1.6 + System.Console (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.DiagnosticSource (>= 4.4) - restriction: >= netstandard1.6 + System.Diagnostics.Tools (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Tracing (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization.Calendars (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.IO (>= 4.3) - restriction: >= netstandard1.6 + System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 + System.IO.Compression.ZipFile (>= 4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem (>= 4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Linq (>= 4.3) - restriction: >= netstandard1.6 + System.Linq.Expressions (>= 4.3) - restriction: >= netstandard1.6 + System.Linq.Queryable (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Http (>= 4.3.2) - restriction: >= netstandard1.6 + System.Net.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Requests (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Sockets (>= 4.3) - restriction: >= netstandard1.6 + System.Net.WebHeaderCollection (>= 4.3) - restriction: >= netstandard1.6 + System.ObjectModel (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.TypeExtensions (>= 4.3) - restriction: >= netstandard1.6 + System.Resources.ResourceManager (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Handles (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Numerics (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Cng (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Csp (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Encoding (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: >= netstandard1.6 + System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.6 + System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Text.RegularExpressions (>= 4.3) - restriction: >= netstandard1.6 + System.Threading (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks.Parallel (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Thread (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.ThreadPool (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Timer (>= 4.3) - restriction: >= netstandard1.6 + System.Xml.ReaderWriter (>= 4.3) - restriction: >= netstandard1.6 + System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.6 + Fake.Core.Environment (5.0.0-alpha015) - restriction: >= netstandard1.6 FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.Core.Globbing (5.0.0-alpha012) + Fake.Core.Globbing (5.0.0-alpha015) + FSharp.Compiler.Tools (>= 4.1.23) - restriction: >= netstandard1.6 FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: >= netstandard1.6 + Microsoft.NETCore.Targets (>= 1.1) - restriction: >= netstandard1.6 + Microsoft.Win32.Primitives (>= 4.3) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.Core.Process (5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.BuildServer (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.native.System (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Net.Http (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: >= netstandard1.6 + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + System.AppContext (>= 4.3) - restriction: >= netstandard1.6 + System.Buffers (>= 4.3) - restriction: >= netstandard1.6 + System.Collections (>= 4.3) - restriction: >= netstandard1.6 + System.Collections.Concurrent (>= 4.3) - restriction: >= netstandard1.6 + System.Console (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.DiagnosticSource (>= 4.4) - restriction: >= netstandard1.6 + System.Diagnostics.Tools (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Tracing (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization.Calendars (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.IO (>= 4.3) - restriction: >= netstandard1.6 + System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 + System.IO.Compression.ZipFile (>= 4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem (>= 4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Linq (>= 4.3) - restriction: >= netstandard1.6 + System.Linq.Expressions (>= 4.3) - restriction: >= netstandard1.6 + System.Linq.Queryable (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Http (>= 4.3.2) - restriction: >= netstandard1.6 + System.Net.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Requests (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Sockets (>= 4.3) - restriction: >= netstandard1.6 + System.Net.WebHeaderCollection (>= 4.3) - restriction: >= netstandard1.6 + System.ObjectModel (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.TypeExtensions (>= 4.3) - restriction: >= netstandard1.6 + System.Resources.ResourceManager (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Handles (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Numerics (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Cng (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Csp (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Encoding (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: >= netstandard1.6 + System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.6 + System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Text.RegularExpressions (>= 4.3) - restriction: >= netstandard1.6 + System.Threading (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks.Parallel (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Thread (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.ThreadPool (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Timer (>= 4.3) - restriction: >= netstandard1.6 + System.Xml.ReaderWriter (>= 4.3) - restriction: >= netstandard1.6 + System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.6 + Fake.Core.Process (5.0.0-alpha015) - restriction: >= netstandard1.6 FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 System.Diagnostics.Process (>= 4.3) - restriction: >= netstandard1.6 - Fake.Core.ReleaseNotes (5.0.0-alpha012) - Fake.Core.SemVer (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 + Fake.Core.ReleaseNotes (5.0.0-alpha015) FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.Core.SemVer (5.0.0-alpha012) - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 + Fake.Core.SemVer (5.0.0-alpha015) FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.Core.String (5.0.0-alpha012) - restriction: >= netstandard1.6 + Fake.Core.String (5.0.0-alpha015) - restriction: >= netstandard1.6 + FSharp.Compiler.Tools (>= 4.1.23) - restriction: >= netstandard1.6 FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: >= netstandard1.6 + Microsoft.NETCore.Targets (>= 1.1) - restriction: >= netstandard1.6 + Microsoft.Win32.Primitives (>= 4.3) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.Core.Targets (5.0.0-alpha012) - Fake.Core.BuildServer (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.native.System (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Net.Http (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: >= netstandard1.6 + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + System.AppContext (>= 4.3) - restriction: >= netstandard1.6 + System.Buffers (>= 4.3) - restriction: >= netstandard1.6 + System.Collections (>= 4.3) - restriction: >= netstandard1.6 + System.Collections.Concurrent (>= 4.3) - restriction: >= netstandard1.6 + System.Console (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.DiagnosticSource (>= 4.4) - restriction: >= netstandard1.6 + System.Diagnostics.Tools (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Tracing (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization.Calendars (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.IO (>= 4.3) - restriction: >= netstandard1.6 + System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 + System.IO.Compression.ZipFile (>= 4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem (>= 4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Linq (>= 4.3) - restriction: >= netstandard1.6 + System.Linq.Expressions (>= 4.3) - restriction: >= netstandard1.6 + System.Linq.Queryable (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Http (>= 4.3.2) - restriction: >= netstandard1.6 + System.Net.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Requests (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Sockets (>= 4.3) - restriction: >= netstandard1.6 + System.Net.WebHeaderCollection (>= 4.3) - restriction: >= netstandard1.6 + System.ObjectModel (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.TypeExtensions (>= 4.3) - restriction: >= netstandard1.6 + System.Resources.ResourceManager (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Handles (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Numerics (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Cng (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Csp (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Encoding (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: >= netstandard1.6 + System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.6 + System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Text.RegularExpressions (>= 4.3) - restriction: >= netstandard1.6 + System.Threading (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks.Parallel (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Thread (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.ThreadPool (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Timer (>= 4.3) - restriction: >= netstandard1.6 + System.Xml.ReaderWriter (>= 4.3) - restriction: >= netstandard1.6 + System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.6 + Fake.Core.Targets (5.0.0-alpha015) + Fake.Core.BuildServer (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Context (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Environment (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.String (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Tracing (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + FSharp.Compiler.Tools (>= 4.1.23) - restriction: >= netstandard1.6 FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: >= netstandard1.6 + Microsoft.NETCore.Targets (>= 1.1) - restriction: >= netstandard1.6 + Microsoft.Win32.Primitives (>= 4.3) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.Core.Tasks (5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.BuildServer (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.native.System (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Net.Http (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: >= netstandard1.6 + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + System.AppContext (>= 4.3) - restriction: >= netstandard1.6 + System.Buffers (>= 4.3) - restriction: >= netstandard1.6 + System.Collections (>= 4.3) - restriction: >= netstandard1.6 + System.Collections.Concurrent (>= 4.3) - restriction: >= netstandard1.6 + System.Console (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.DiagnosticSource (>= 4.4) - restriction: >= netstandard1.6 + System.Diagnostics.Tools (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Tracing (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization.Calendars (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.IO (>= 4.3) - restriction: >= netstandard1.6 + System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 + System.IO.Compression.ZipFile (>= 4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem (>= 4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Linq (>= 4.3) - restriction: >= netstandard1.6 + System.Linq.Expressions (>= 4.3) - restriction: >= netstandard1.6 + System.Linq.Queryable (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Http (>= 4.3.2) - restriction: >= netstandard1.6 + System.Net.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Requests (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Sockets (>= 4.3) - restriction: >= netstandard1.6 + System.Net.WebHeaderCollection (>= 4.3) - restriction: >= netstandard1.6 + System.ObjectModel (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.TypeExtensions (>= 4.3) - restriction: >= netstandard1.6 + System.Resources.ResourceManager (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Handles (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Numerics (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Cng (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Csp (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Encoding (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: >= netstandard1.6 + System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.6 + System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Text.RegularExpressions (>= 4.3) - restriction: >= netstandard1.6 + System.Threading (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks.Parallel (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Thread (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.ThreadPool (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Timer (>= 4.3) - restriction: >= netstandard1.6 + System.Xml.ReaderWriter (>= 4.3) - restriction: >= netstandard1.6 + System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.6 + Fake.Core.Tracing (5.0.0-alpha015) - restriction: >= netstandard1.6 FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.Core.Tracing (5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.BuildServer (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 + Fake.DotNet.AssemblyInfoFile (5.0.0-alpha015) FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.Core.Xml (5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.BuildServer (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 + Fake.DotNet.Cli (5.0.0-alpha015) + Fake.Core.BuildServer (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Context (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Environment (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Process (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.String (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Tracing (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.IO.FileSystem (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + FSharp.Compiler.Tools (>= 4.1.23) - restriction: >= netstandard1.6 FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: >= netstandard1.6 + Microsoft.NETCore.Targets (>= 1.1) - restriction: >= netstandard1.6 + Microsoft.Win32.Primitives (>= 4.3) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.native.System (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Net.Http (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: >= netstandard1.6 + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + System.AppContext (>= 4.3) - restriction: >= netstandard1.6 + System.Buffers (>= 4.3) - restriction: >= netstandard1.6 + System.Collections (>= 4.3) - restriction: >= netstandard1.6 + System.Collections.Concurrent (>= 4.3) - restriction: >= netstandard1.6 + System.Console (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.DiagnosticSource (>= 4.4) - restriction: >= netstandard1.6 + System.Diagnostics.Tools (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Tracing (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization.Calendars (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.IO (>= 4.3) - restriction: >= netstandard1.6 + System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 + System.IO.Compression.ZipFile (>= 4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem (>= 4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Linq (>= 4.3) - restriction: >= netstandard1.6 + System.Linq.Expressions (>= 4.3) - restriction: >= netstandard1.6 + System.Linq.Queryable (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Http (>= 4.3.2) - restriction: >= netstandard1.6 + System.Net.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Requests (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Sockets (>= 4.3) - restriction: >= netstandard1.6 + System.Net.WebHeaderCollection (>= 4.3) - restriction: >= netstandard1.6 + System.ObjectModel (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.TypeExtensions (>= 4.3) - restriction: >= netstandard1.6 + System.Resources.ResourceManager (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Handles (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Numerics (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Cng (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Csp (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Encoding (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: >= netstandard1.6 + System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.6 + System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Text.RegularExpressions (>= 4.3) - restriction: >= netstandard1.6 + System.Threading (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks.Parallel (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Thread (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.ThreadPool (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Timer (>= 4.3) - restriction: >= netstandard1.6 System.Xml.ReaderWriter (>= 4.3) - restriction: >= 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 - Fake.DotNet.AssemblyInfoFile (5.0.0-alpha012) - Fake.Core.BuildServer (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.DotNet.Cli (5.0.0-alpha012) - Fake.Core.BuildServer (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 - NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.DotNet.FSFormatting (5.0.0-alpha012) - Fake.Core.BuildServer (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Globbing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 + Fake.DotNet.FSFormatting (5.0.0-alpha015) + Fake.Core.BuildServer (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Context (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Environment (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Globbing (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Process (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.String (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Tracing (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.IO.FileSystem (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + FSharp.Compiler.Tools (>= 4.1.23) - restriction: >= netstandard1.6 FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: >= netstandard1.6 + Microsoft.NETCore.Targets (>= 1.1) - restriction: >= netstandard1.6 + Microsoft.Win32.Primitives (>= 4.3) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.DotNet.MsBuild (5.0.0-alpha012) - Fake.Core.BuildServer (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Globbing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.native.System (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Net.Http (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: >= netstandard1.6 + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + System.AppContext (>= 4.3) - restriction: >= netstandard1.6 + System.Buffers (>= 4.3) - restriction: >= netstandard1.6 + System.Collections (>= 4.3) - restriction: >= netstandard1.6 + System.Collections.Concurrent (>= 4.3) - restriction: >= netstandard1.6 + System.Console (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.DiagnosticSource (>= 4.4) - restriction: >= netstandard1.6 + System.Diagnostics.Tools (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Tracing (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization.Calendars (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.IO (>= 4.3) - restriction: >= netstandard1.6 + System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 + System.IO.Compression.ZipFile (>= 4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem (>= 4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Linq (>= 4.3) - restriction: >= netstandard1.6 + System.Linq.Expressions (>= 4.3) - restriction: >= netstandard1.6 + System.Linq.Queryable (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Http (>= 4.3.2) - restriction: >= netstandard1.6 + System.Net.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Requests (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Sockets (>= 4.3) - restriction: >= netstandard1.6 + System.Net.WebHeaderCollection (>= 4.3) - restriction: >= netstandard1.6 + System.ObjectModel (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.TypeExtensions (>= 4.3) - restriction: >= netstandard1.6 + System.Resources.ResourceManager (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Handles (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Numerics (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Cng (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Csp (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Encoding (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: >= netstandard1.6 + System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.6 + System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Text.RegularExpressions (>= 4.3) - restriction: >= netstandard1.6 + System.Threading (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks.Parallel (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Thread (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.ThreadPool (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Timer (>= 4.3) - restriction: >= netstandard1.6 + System.Xml.ReaderWriter (>= 4.3) - restriction: >= netstandard1.6 + System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.6 + Fake.DotNet.MsBuild (5.0.0-alpha015) + Fake.Core.BuildServer (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Context (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Environment (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Globbing (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Process (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.String (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Tracing (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.IO.FileSystem (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + FSharp.Compiler.Tools (>= 4.1.23) - restriction: >= netstandard1.6 FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: >= netstandard1.6 + Microsoft.NETCore.Targets (>= 1.1) - restriction: >= netstandard1.6 + Microsoft.Win32.Primitives (>= 4.3) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.DotNet.NuGet (5.0.0-alpha012) - Fake.Core.BuildServer (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Globbing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.SemVer (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Tasks (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Xml (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.native.System (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Net.Http (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: >= netstandard1.6 + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + System.AppContext (>= 4.3) - restriction: >= netstandard1.6 + System.Buffers (>= 4.3) - restriction: >= netstandard1.6 + System.Collections (>= 4.3) - restriction: >= netstandard1.6 + System.Collections.Concurrent (>= 4.3) - restriction: >= netstandard1.6 + System.Console (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.DiagnosticSource (>= 4.4) - restriction: >= netstandard1.6 + System.Diagnostics.Tools (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Tracing (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization.Calendars (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.IO (>= 4.3) - restriction: >= netstandard1.6 + System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 + System.IO.Compression.ZipFile (>= 4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem (>= 4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Linq (>= 4.3) - restriction: >= netstandard1.6 + System.Linq.Expressions (>= 4.3) - restriction: >= netstandard1.6 + System.Linq.Queryable (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Http (>= 4.3.2) - restriction: >= netstandard1.6 + System.Net.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Requests (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Sockets (>= 4.3) - restriction: >= netstandard1.6 + System.Net.WebHeaderCollection (>= 4.3) - restriction: >= netstandard1.6 + System.ObjectModel (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.TypeExtensions (>= 4.3) - restriction: >= netstandard1.6 + System.Resources.ResourceManager (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Handles (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Numerics (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Cng (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Csp (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Encoding (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: >= netstandard1.6 + System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.6 + System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Text.RegularExpressions (>= 4.3) - restriction: >= netstandard1.6 + System.Threading (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks.Parallel (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Thread (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.ThreadPool (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Timer (>= 4.3) - restriction: >= netstandard1.6 + System.Xml.ReaderWriter (>= 4.3) - restriction: >= netstandard1.6 + System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.6 + Fake.DotNet.NuGet (5.0.0-alpha015) FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 Newtonsoft.Json (>= 10.0.3) - restriction: >= netstandard1.6 System.Net.Http (>= 4.3.2) - restriction: >= netstandard1.6 - Fake.DotNet.Paket (5.0.0-alpha012) - Fake.Core.BuildServer (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Globbing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 + Fake.DotNet.Paket (5.0.0-alpha015) FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.DotNet.Testing.MSpec (5.0.0-alpha012) - Fake.Core.BuildServer (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Globbing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Testing.Common (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 + Fake.DotNet.Testing.MSpec (5.0.0-alpha015) FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.DotNet.Testing.NUnit (5.0.0-alpha012) - Fake.Core.BuildServer (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Globbing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Testing.Common (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 + Fake.DotNet.Testing.NUnit (5.0.0-alpha015) FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 System.Linq.Parallel (>= 4.3) - restriction: >= netstandard1.6 System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.6 - Fake.DotNet.Testing.XUnit2 (5.0.0-alpha012) - Fake.Core.BuildServer (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Globbing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Testing.Common (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 + Fake.DotNet.Testing.XUnit2 (5.0.0-alpha015) + Fake.Core.BuildServer (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Context (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Environment (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Globbing (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Process (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.String (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Tracing (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.IO.FileSystem (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Testing.Common (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + FSharp.Compiler.Tools (>= 4.1.23) - restriction: >= netstandard1.6 FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: >= netstandard1.6 + Microsoft.NETCore.Targets (>= 1.1) - restriction: >= netstandard1.6 + Microsoft.Win32.Primitives (>= 4.3) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (5.0.0-alpha012) - Fake.Core.Globbing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.native.System (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Net.Http (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: >= netstandard1.6 + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + System.AppContext (>= 4.3) - restriction: >= netstandard1.6 + System.Buffers (>= 4.3) - restriction: >= netstandard1.6 + System.Collections (>= 4.3) - restriction: >= netstandard1.6 + System.Collections.Concurrent (>= 4.3) - restriction: >= netstandard1.6 + System.Console (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.DiagnosticSource (>= 4.4) - restriction: >= netstandard1.6 + System.Diagnostics.Tools (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Tracing (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization.Calendars (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.IO (>= 4.3) - restriction: >= netstandard1.6 + System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 + System.IO.Compression.ZipFile (>= 4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem (>= 4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Linq (>= 4.3) - restriction: >= netstandard1.6 + System.Linq.Expressions (>= 4.3) - restriction: >= netstandard1.6 + System.Linq.Queryable (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Http (>= 4.3.2) - restriction: >= netstandard1.6 + System.Net.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Requests (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Sockets (>= 4.3) - restriction: >= netstandard1.6 + System.Net.WebHeaderCollection (>= 4.3) - restriction: >= netstandard1.6 + System.ObjectModel (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.TypeExtensions (>= 4.3) - restriction: >= netstandard1.6 + System.Resources.ResourceManager (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Handles (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Numerics (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Cng (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Csp (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Encoding (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: >= netstandard1.6 + System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.6 + System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Text.RegularExpressions (>= 4.3) - restriction: >= netstandard1.6 + System.Threading (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks.Parallel (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Thread (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.ThreadPool (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Timer (>= 4.3) - restriction: >= netstandard1.6 + System.Xml.ReaderWriter (>= 4.3) - restriction: >= netstandard1.6 + System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.6 + Fake.IO.FileSystem (5.0.0-alpha015) + Fake.Core.Globbing (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.String (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + FSharp.Compiler.Tools (>= 4.1.23) - restriction: >= netstandard1.6 FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: >= netstandard1.6 + Microsoft.NETCore.Targets (>= 1.1) - restriction: >= netstandard1.6 + Microsoft.Win32.Primitives (>= 4.3) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.native.System (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Net.Http (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: >= netstandard1.6 + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + System.AppContext (>= 4.3) - restriction: >= netstandard1.6 + System.Buffers (>= 4.3) - restriction: >= netstandard1.6 + System.Collections (>= 4.3) - restriction: >= netstandard1.6 + System.Collections.Concurrent (>= 4.3) - restriction: >= netstandard1.6 + System.Collections.Immutable (>= 1.3.1) - restriction: >= netstandard1.6 + System.Console (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.DiagnosticSource (>= 4.4) - restriction: >= netstandard1.6 System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: >= netstandard1.6 - Fake.IO.Zip (5.0.0-alpha012) - Fake.Core.Globbing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 + System.Diagnostics.Tools (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Tracing (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization.Calendars (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.IO (>= 4.3) - restriction: >= netstandard1.6 + System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 + System.IO.Compression.ZipFile (>= 4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem (>= 4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Linq (>= 4.3) - restriction: >= netstandard1.6 + System.Linq.Expressions (>= 4.3) - restriction: >= netstandard1.6 + System.Linq.Queryable (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Http (>= 4.3.2) - restriction: >= netstandard1.6 + System.Net.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Requests (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Sockets (>= 4.3) - restriction: >= netstandard1.6 + System.Net.WebHeaderCollection (>= 4.3) - restriction: >= netstandard1.6 + System.ObjectModel (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Metadata (>= 1.4.2) - restriction: >= netstandard1.6 + System.Reflection.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.TypeExtensions (>= 4.3) - restriction: >= netstandard1.6 + System.Resources.ResourceManager (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Handles (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Numerics (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Cng (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Csp (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Encoding (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: >= netstandard1.6 + System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.6 + System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Text.RegularExpressions (>= 4.3) - restriction: >= netstandard1.6 + System.Threading (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks.Parallel (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Thread (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.ThreadPool (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Timer (>= 4.3) - restriction: >= netstandard1.6 + System.Xml.ReaderWriter (>= 4.3) - restriction: >= netstandard1.6 + System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.6 + Fake.IO.Zip (5.0.0-alpha015) FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 System.IO.Compression.ZipFile (>= 4.3) - restriction: >= netstandard1.6 System.Runtime.Loader (>= 4.3) - restriction: >= netstandard1.6 - Fake.Testing.Common (5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.BuildServer (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 + Fake.Testing.Common (5.0.0-alpha015) - restriction: >= netstandard1.6 FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.Tools.Git (5.0.0-alpha012) - Fake.Core.BuildServer (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Globbing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.SemVer (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 + Fake.Tools.Git (5.0.0-alpha015) + Fake.Core.BuildServer (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Context (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Environment (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Globbing (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Process (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.SemVer (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.String (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.Core.Tracing (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + Fake.IO.FileSystem (>= 5.0.0-alpha015) - restriction: >= netstandard1.6 + FSharp.Compiler.Tools (>= 4.1.23) - restriction: >= netstandard1.6 FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 + Microsoft.NETCore.Platforms (>= 1.1) - restriction: >= netstandard1.6 + Microsoft.NETCore.Targets (>= 1.1) - restriction: >= netstandard1.6 + Microsoft.Win32.Primitives (>= 4.3) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - Fake.Windows.Chocolatey (5.0.0-alpha012) - Fake.Core.BuildServer (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Context (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Environment (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Globbing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Process (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.String (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.Core.Tracing (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.DotNet.NuGet (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 - Fake.IO.FileSystem (>= 5.0.0-alpha012) - restriction: >= netstandard1.6 + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.native.System (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Net.Http (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: >= netstandard1.6 + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: >= netstandard1.6 + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: >= netstandard1.6 + System.AppContext (>= 4.3) - restriction: >= netstandard1.6 + System.Buffers (>= 4.3) - restriction: >= netstandard1.6 + System.Collections (>= 4.3) - restriction: >= netstandard1.6 + System.Collections.Concurrent (>= 4.3) - restriction: >= netstandard1.6 + System.Console (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.DiagnosticSource (>= 4.4) - restriction: >= netstandard1.6 + System.Diagnostics.Tools (>= 4.3) - restriction: >= netstandard1.6 + System.Diagnostics.Tracing (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization.Calendars (>= 4.3) - restriction: >= netstandard1.6 + System.Globalization.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.IO (>= 4.3) - restriction: >= netstandard1.6 + System.IO.Compression (>= 4.3) - restriction: >= netstandard1.6 + System.IO.Compression.ZipFile (>= 4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem (>= 4.3) - restriction: >= netstandard1.6 + System.IO.FileSystem.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Linq (>= 4.3) - restriction: >= netstandard1.6 + System.Linq.Expressions (>= 4.3) - restriction: >= netstandard1.6 + System.Linq.Queryable (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Http (>= 4.3.2) - restriction: >= netstandard1.6 + System.Net.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Requests (>= 4.3) - restriction: >= netstandard1.6 + System.Net.Sockets (>= 4.3) - restriction: >= netstandard1.6 + System.Net.WebHeaderCollection (>= 4.3) - restriction: >= netstandard1.6 + System.ObjectModel (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Reflection.TypeExtensions (>= 4.3) - restriction: >= netstandard1.6 + System.Resources.ResourceManager (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Handles (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: >= netstandard1.6 + System.Runtime.Numerics (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Cng (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Csp (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Encoding (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.Primitives (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: >= netstandard1.6 + System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.6 + System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Text.RegularExpressions (>= 4.3) - restriction: >= netstandard1.6 + System.Threading (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks.Extensions (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Tasks.Parallel (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Thread (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.ThreadPool (>= 4.3) - restriction: >= netstandard1.6 + System.Threading.Timer (>= 4.3) - restriction: >= netstandard1.6 + System.Xml.ReaderWriter (>= 4.3) - restriction: >= netstandard1.6 + System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.6 + Fake.Windows.Chocolatey (5.0.0-alpha015) FSharp.Core (>= 4.1.17) - restriction: >= netstandard1.6 + FSharp.NET.Sdk (>= 1.0.5) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: >= netstandard1.6 - FSharp.Compiler.Tools (4.1.17) - FSharp.Core (4.1.17) - System.Collections (>= 4.0.11) - restriction: >= netstandard1.6 - System.Console (>= 4.0) - restriction: >= netstandard1.6 - System.Diagnostics.Debug (>= 4.0.11) - restriction: >= netstandard1.6 - System.Diagnostics.Tools (>= 4.0.1) - restriction: >= netstandard1.6 - System.Globalization (>= 4.0.11) - restriction: >= netstandard1.6 - System.IO (>= 4.1) - restriction: >= netstandard1.6 - System.Linq (>= 4.1) - restriction: >= netstandard1.6 - System.Linq.Expressions (>= 4.1) - restriction: >= netstandard1.6 - System.Linq.Queryable (>= 4.0.1) - restriction: >= netstandard1.6 - System.Net.Requests (>= 4.0.11) - restriction: >= netstandard1.6 - System.Reflection (>= 4.1) - restriction: >= netstandard1.6 - System.Reflection.Extensions (>= 4.0.1) - restriction: >= netstandard1.6 - System.Resources.ResourceManager (>= 4.0.1) - restriction: >= netstandard1.6 - System.Runtime (>= 4.1) - restriction: >= netstandard1.6 - System.Runtime.Extensions (>= 4.1) - restriction: >= netstandard1.6 - System.Runtime.Numerics (>= 4.0.1) - restriction: >= netstandard1.6 - System.Text.RegularExpressions (>= 4.1) - restriction: >= netstandard1.6 - System.Threading (>= 4.0.11) - restriction: >= netstandard1.6 - System.Threading.Tasks (>= 4.0.11) - restriction: >= netstandard1.6 - System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: >= netstandard1.6 - System.Threading.Thread (>= 4.0) - restriction: >= netstandard1.6 - System.Threading.ThreadPool (>= 4.0.10) - restriction: >= netstandard1.6 - System.Threading.Timer (>= 4.0.1) - restriction: >= netstandard1.6 - System.ValueTuple (>= 4.3) - restriction: < netstandard1.6 - Microsoft.CSharp (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.ObjectModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Platforms (1.1) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win81) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net463)) (&& (< net35) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net35) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netstandard1.6) - Microsoft.NETCore.Targets (1.1) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win81) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net463)) (&& (< net35) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net35) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netcore1.1) - Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + FSharp.Compiler.Tools (4.1.23) + 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) + FSharp.NET.Sdk (1.0.5) - restriction: >= netstandard1.6 + FSharp.Compiler.Tools (>= 4.1.17) - restriction: || (>= net40) (>= netstandard1.3) + Microsoft.CSharp (4.4) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + Microsoft.NETCore.Platforms (2.0) - restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net461)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid)) (&& (< net20) (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net35) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net35) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= uap10.0) (>= dnxcore50) (&& (< netstandard1.0) (>= netstandard1.3) (>= monoandroid)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) + Microsoft.NETCore.Targets (2.0) - restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< wp8) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win81) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net35) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net35) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.1) (< win8)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) (>= dnxcore50) (>= netstandard1.6) + Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.Win32.Registry (4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) - System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) + Microsoft.Win32.Registry (4.4) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Security.AccessControl (>= 4.4) - restriction: || (>= net461) (&& (< netstandard1.3) (>= monoandroid)) (>= netstandard2.0) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) + System.Security.Principal.Windows (>= 4.4) - restriction: || (>= net461) (&& (< netstandard1.3) (>= monoandroid)) (>= netstandard2.0) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) 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) @@ -3303,51 +3743,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 (1.6.1) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: >= netstandard1.0 - Microsoft.Win32.Primitives (>= 4.3) - restriction: >= netstandard1.3 - System.AppContext (>= 4.3) - restriction: >= netstandard1.3 - System.Collections (>= 4.3) - restriction: >= netstandard1.0 - System.Collections.Concurrent (>= 4.3) - restriction: >= netstandard1.1 - System.Console (>= 4.3) - restriction: >= netstandard1.3 - System.Diagnostics.Debug (>= 4.3) - restriction: >= netstandard1.0 - System.Diagnostics.Tools (>= 4.3) - restriction: >= netstandard1.0 - System.Diagnostics.Tracing (>= 4.3) - restriction: >= netstandard1.1 - System.Globalization (>= 4.3) - restriction: >= netstandard1.0 - System.Globalization.Calendars (>= 4.3) - restriction: >= netstandard1.3 - System.IO (>= 4.3) - restriction: >= netstandard1.0 - System.IO.Compression (>= 4.3) - restriction: >= netstandard1.1 - System.IO.Compression.ZipFile (>= 4.3) - restriction: >= netstandard1.3 - System.IO.FileSystem (>= 4.3) - restriction: >= netstandard1.3 - System.IO.FileSystem.Primitives (>= 4.3) - restriction: >= netstandard1.3 - System.Linq (>= 4.3) - restriction: >= netstandard1.0 - System.Linq.Expressions (>= 4.3) - restriction: >= netstandard1.0 - System.Net.Http (>= 4.3) - restriction: >= netstandard1.1 - System.Net.Primitives (>= 4.3) - restriction: >= netstandard1.0 - System.Net.Sockets (>= 4.3) - restriction: >= netstandard1.3 - System.ObjectModel (>= 4.3) - restriction: >= netstandard1.0 - System.Reflection (>= 4.3) - restriction: >= netstandard1.0 - System.Reflection.Extensions (>= 4.3) - restriction: >= netstandard1.0 - System.Reflection.Primitives (>= 4.3) - restriction: >= netstandard1.0 - System.Resources.ResourceManager (>= 4.3) - restriction: >= netstandard1.0 - System.Runtime (>= 4.3) - restriction: >= netstandard1.0 - System.Runtime.Extensions (>= 4.3) - restriction: >= netstandard1.0 - System.Runtime.Handles (>= 4.3) - restriction: >= netstandard1.3 - System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.1 - System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: >= netstandard1.1 - System.Runtime.Numerics (>= 4.3) - restriction: >= netstandard1.1 - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.3 - System.Security.Cryptography.Encoding (>= 4.3) - restriction: >= netstandard1.3 - System.Security.Cryptography.Primitives (>= 4.3) - restriction: >= netstandard1.3 - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: >= netstandard1.3 - System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.0 - System.Text.Encoding.Extensions (>= 4.3) - restriction: >= netstandard1.0 - System.Text.RegularExpressions (>= 4.3) - restriction: >= netstandard1.0 - System.Threading (>= 4.3) - restriction: >= netstandard1.0 - System.Threading.Tasks (>= 4.3) - restriction: >= netstandard1.0 - System.Threading.Timer (>= 4.3) - restriction: >= netstandard1.2 - System.Xml.ReaderWriter (>= 4.3) - restriction: >= netstandard1.0 - System.Xml.XDocument (>= 4.3) - restriction: >= netstandard1.0 + NETStandard.Library (2.0) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= uap10.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= monoandroid)) (&& (< netstandard1.0) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (< portable-net45+win8+wpa81) (>= portable-net45+win8+wp8+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) + Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.AppContext (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Console (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Net.Http (>= 4.3.2) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Net.Sockets (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.ObjectModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (< netstandard1.0) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wpa81) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Threading.Timer (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) 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)) @@ -3355,10 +3795,10 @@ 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) - Paket.Core (5.92.3) + Paket.Core (5.92.2) Chessie (>= 0.6) - FSharp.Compiler.Tools (4.1.17) - restriction: < netstandard1.6 - FSharp.Core (4.1.17) - restriction: < netstandard1.6 + FSharp.Compiler.Tools - restriction: < netstandard1.6 + FSharp.Core - restriction: < netstandard1.6 Mono.Cecil (>= 0.10.0-beta6) Newtonsoft.Json - restriction: < netstandard1.6 Newtonsoft.Json (>= 10.0.3) - restriction: >= netstandard1.6 @@ -3366,25 +3806,25 @@ NUGET System.Diagnostics.Process (>= 4.3) - restriction: >= netstandard1.6 System.Diagnostics.TraceSource (>= 4.3) - restriction: >= netstandard1.6 System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard1.6 - System.Security.Cryptography.ProtectedData (>= 4.3) - restriction: >= netstandard1.6 + System.Security.Cryptography.ProtectedData (>= 4.4) - restriction: >= netstandard1.6 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.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.native.System (4.3) - restriction: || (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard1.6) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard1.6) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard1.6) + runtime.native.System (4.3) - restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.IO.Compression (4.3) - restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.native.System.IO.Compression (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Net.Http (4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + runtime.native.System.Net.Http (4.3) - restriction: >= netstandard1.6 Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Security.Cryptography.Apple (4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + runtime.native.System.Security.Cryptography.Apple (4.3) - restriction: >= netstandard1.6 runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard1.6) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) @@ -3395,27 +3835,30 @@ NUGET runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard1.6) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard1.6) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3) - restriction: >= netstandard1.6 + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard1.6) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard1.6) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard1.6) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard1.6) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard1.6) System.AppContext (4.3) System.Collections (>= 4.3) - restriction: >= dnxcore50 System.Resources.ResourceManager (>= 4.3) - restriction: >= dnxcore50 System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Threading (>= 4.3) - restriction: >= dnxcore50 - System.Buffers (4.3) - restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Diagnostics.Tracing (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Collections (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) (>= netstandard1.6) - System.Collections.Concurrent (4.3) - restriction: || (&& (< net20) (>= netstandard1.1) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard1.6) + System.Buffers (4.4) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + 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: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (>= netstandard1.6) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Collections.Concurrent (4.3) - restriction: || (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (>= netstandard1.6) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -3426,15 +3869,8 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Collections.Immutable (1.3.1) - restriction: || (&& (>= net45) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= monotouch)) (&& (>= dnxcore50) (>= xamarintvos)) (&& (>= dnxcore50) (>= xamarinwatchos)) (&& (>= dnxcore50) (>= xamarinios)) (&& (>= dnxcore50) (>= xamarinmac)) (&& (< netstandard1.1) (>= netstandard1.6) (>= monoandroid)) (&& (< netstandard1.1) (>= netstandard1.6) (>= win8)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (>= wpa81)) - System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Globalization (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Linq (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) + System.Collections.Immutable (1.4) - restriction: || (>= netstandard1.6) (&& (>= netstandard2.0) (< netcoreapp2.0)) + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Collections.NonGeneric (4.3) - restriction: || (&& (< net20) (>= net462)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -3472,24 +3908,24 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.5) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Console (4.3) - restriction: || (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.Console (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Debug (4.3) - restriction: || (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Diagnostics.Debug (4.3) - restriction: || (&& (< 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.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.DiagnosticSource (4.4) - restriction: || (&& (< net20) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcore2.0) (< xamarinmac)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netcore2.0) (< xamarinmac) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcore2.0) (< xamarinmac)) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcore2.0) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcore2.0) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netcore2.0) (< xamarinmac) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcore2.0) (< xamarinmac)) + System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) + System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) System.Diagnostics.FileVersionInfo (4.3) - restriction: >= netstandard1.6 Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -3522,7 +3958,7 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading.Thread (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading.ThreadPool (>= 4.3) - restriction: && (< net46) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Tools (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Diagnostics.Tools (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) @@ -3536,11 +3972,11 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Tracing (4.3) - restriction: || (&& (< net20) (>= netstandard1.1) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Diagnostics.Tracing (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Dynamic.Runtime (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) + System.Dynamic.Runtime (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -3555,29 +3991,29 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (4.3) - restriction: || (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Globalization (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.4) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization.Calendars (4.3) - restriction: || (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.Globalization.Calendars (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization.Extensions (4.3) - restriction: || (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Globalization.Extensions (4.3) - restriction: || (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net463)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + System.IO (4.3) - restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.IO.Compression (4.3) - restriction: || (&& (< net20) (>= netstandard1.1) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.IO.Compression (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) runtime.native.System (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) runtime.native.System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -3593,7 +4029,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.IO.Compression.ZipFile (4.3) - restriction: || (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.IO.Compression.ZipFile (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (>= netstandard1.6) System.Buffers (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO.Compression (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -3603,7 +4039,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem (4.3) - restriction: || (&& (< net20) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.IO.FileSystem (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -3612,15 +4048,15 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (< net20) (>= netstandard1.3)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Linq (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Linq (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.6) (< monoandroid) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.6) (< monoandroid) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Linq.Expressions (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Linq.Expressions (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) @@ -3658,7 +4094,7 @@ NUGET System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Http (4.3.2) - restriction: || (&& (< net20) (>= netstandard1.1) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.Net.Http (4.3.2) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) runtime.native.System (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) runtime.native.System.Net.Http (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -3685,7 +4121,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Net.Primitives (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Net.Primitives (4.3) - restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) @@ -3704,94 +4140,86 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Sockets (4.3) - restriction: || (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.Net.Sockets (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Net.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Net.WebHeaderCollection (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Net.WebHeaderCollection (4.3) - restriction: >= netstandard1.6 System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.ObjectModel (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.ObjectModel (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + System.Reflection (4.3) - restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Reflection.Emit (4.3) - restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Reflection.Emit (4.3) - restriction: || (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) System.IO (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Reflection.Emit.Lightweight (4.3) - restriction: >= netstandard1.6 System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< wp8) - System.Reflection.Extensions (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Reflection.Extensions (4.3) - restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net45) (>= dnxcore50)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Reflection.Metadata (1.4.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Collections.Immutable (>= 1.3.1) - restriction: || (>= net45) (&& (>= netstandard1.1) (< win8)) (&& (< netstandard1.1) (>= monoandroid)) (&& (< netstandard1.1) (>= win8)) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) (>= wpa81) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.IO (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.IO.Compression (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Linq (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Text.Encoding (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Text.Encoding.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) - System.Reflection.Primitives (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + System.Reflection.Metadata (1.5) - restriction: >= netstandard1.6 + NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Collections.Immutable (>= 1.4) - restriction: || (&& (>= netstandard1.1) (< netstandard2.0)) (&& (< netstandard1.1) (>= monoandroid)) (&& (< netstandard1.1) (< monoandroid) (>= portable-net45+win8)) (&& (>= netstandard2.0) (< netcoreapp2.0)) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) (&& (< portable-net45+win8) (>= portable-net45+win8+wpa81)) + System.Reflection.Primitives (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Reflection.TypeExtensions (4.3) - restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Reflection (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= net462) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Resources.ResourceManager (4.3) - restriction: || (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) (>= netstandard1.6) - System.Runtime (4.3) - restriction: || (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win81) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net462)) (&& (< net35) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81)) (&& (< net46) (>= netstandard1.3) (< monoandroid)) (>= dnxcore50) (>= netstandard1.6) + System.Reflection.TypeExtensions (4.4) - restriction: || (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Reflection (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) + System.Resources.ResourceManager (4.3) - restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (>= netstandard1.6) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) + System.Runtime (4.3) - restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net462)) (&& (< net35) (>= net463)) (&& (< net35) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net46) (>= netstandard1.3) (< monoandroid)) (&& (>= net462) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.1) (< win8)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) (>= dnxcore50) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.Extensions (4.3) - restriction: || (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Runtime.Extensions (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.Handles (4.3) - restriction: || (&& (< net20) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Runtime.Handles (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (4.3) - restriction: || (&& (< net20) (>= netstandard1.1) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore1.1) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore1.1) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore1.1) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore1.1) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= net462) (>= dnxcore50) (>= netcore1.1) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcore1.1) - System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (< net20) (>= netstandard1.1) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.Runtime.InteropServices (4.3) - restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= net462) (>= dnxcore50) (>= netcoreapp1.1) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) + System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) runtime.native.System (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -3803,7 +4231,7 @@ NUGET System.IO (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Reflection (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Numerics (4.3) - restriction: || (&& (< net20) (>= netstandard1.1) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.Runtime.Numerics (4.3) - restriction: || (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (>= netstandard1.6) System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -3817,7 +4245,10 @@ NUGET System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard1.6) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Security.Cryptography.Algorithms (4.3) - restriction: || (&& (< net20) (>= netstandard1.3)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (>= netstandard1.6) + System.Security.AccessControl (4.4) - restriction: || (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (>= monoandroid)) (>= netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 + System.Security.Principal.Windows (>= 4.4) - restriction: || (>= netstandard1.3) (>= monoandroid) + System.Security.Cryptography.Algorithms (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net461) (< netstandard1.3)) (&& (< net20) (>= net461) (< netstandard1.4)) (&& (< net20) (>= net461) (>= netstandard1.5)) (&& (< net20) (>= net461) (< netstandard1.5)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= dnxcore50)) (&& (>= net461) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -3832,19 +4263,19 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= net463) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Cng (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4)) (>= net461) (>= netstandard1.6) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< net46) (>= netstandard1.4)) (>= net461) (>= netstandard1.6) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4)) (>= netstandard1.6) - System.Security.Cryptography.Csp (4.3) - restriction: || (&& (< net35) (>= netstandard1.3)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Cng (4.4) - restriction: >= netstandard1.6 + Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 + System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Csp (4.3) - restriction: || (&& (< net35) (>= netstandard1.3)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Reflection (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -3858,7 +4289,7 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (< net20) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netstandard1.6) + System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net461) (< netstandard1.3)) (&& (< net20) (>= net461) (< netstandard1.4)) (&& (< net20) (>= net461) (>= netstandard1.5)) (&& (< net20) (>= net461) (< netstandard1.5)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= dnxcore50)) (&& (>= net461) (>= uap10.0)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -3871,21 +4302,21 @@ NUGET System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.OpenSsl (4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (>= net463) (>= netstandard1.6) (>= monoandroid) - System.Collections (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime.Handles (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Numerics (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= net463) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (< net20) (>= netstandard1.3)) (&& (< net35) (>= net46)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< monoandroid)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Security.Cryptography.OpenSsl (4.4) - restriction: >= netstandard1.6 + Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 + System.Collections (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.IO (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime.Extensions (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime.Handles (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime.InteropServices (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Runtime.Numerics (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Text.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= net46)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -3893,13 +4324,9 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.ProtectedData (4.3) - restriction: >= netstandard1.6 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.X509Certificates (4.3) - restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Security.Cryptography.ProtectedData (4.4) - restriction: >= netstandard1.6 + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) + System.Security.Cryptography.X509Certificates (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net46) (>= netstandard1.5)) (&& (< net20) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) runtime.native.System (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) runtime.native.System.Net.Http (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -3925,31 +4352,35 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Text.Encoding (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net463)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net463) (>= dnxcore50)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + System.Security.Principal.Windows (4.4) - restriction: || (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (>= monoandroid)) (>= netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 + System.Text.Encoding (4.3) - restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= dnxcore50)) (&& (>= net463) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding.Extensions (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Text.Encoding.Extensions (4.3) - restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.RegularExpressions (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcore1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcore1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcore1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netcore1.1) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcore1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcore1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (4.3) - restriction: || (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.4) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netstandard1.6) - System.Threading.Tasks (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net463)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net463) (>= dnxcore50)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + System.Text.RegularExpressions (4.3) - restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netcoreapp1.1) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Threading (4.3) - restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.4) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (>= netstandard1.6) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Threading.Tasks (4.3) - restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks.Extensions (4.3) - restriction: || (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Threading.Tasks (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) + System.Threading.Tasks.Extensions (4.4) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= dnxcore50)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + 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 System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -3964,15 +4395,11 @@ NUGET System.Threading.ThreadPool (4.3) - restriction: >= netstandard1.6 System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Threading.Timer (4.3) - restriction: || (&& (< net20) (>= netstandard1.2) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.Threading.Timer (4.3) - restriction: || (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net451) (>= netstandard1.2) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net451) (>= netstandard1.2) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net451) (>= netstandard1.2) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (>= dnxcore50) - System.ValueTuple (4.3.1) - restriction: < netstandard1.6 - System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81) - System.Xml.ReaderWriter (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (>= netstandard1.6) + System.Xml.ReaderWriter (4.3) - restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -3988,7 +4415,7 @@ NUGET System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Xml.XDocument (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (>= netstandard1.6) + System.Xml.XDocument (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (>= netstandard1.6) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -4012,7 +4439,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Xml.ReaderWriter (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Xml.XPath (4.3) - restriction: >= netstandard1.6 + System.Xml.XPath (4.3) - restriction: || (&& (>= net46) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) diff --git a/src/app/FAKE/FAKE.fsproj b/src/app/FAKE/FAKE.fsproj index 7735bf97fd8..0cbec3b24e4 100644 --- a/src/app/FAKE/FAKE.fsproj +++ b/src/app/FAKE/FAKE.fsproj @@ -76,6 +76,13 @@ + + + + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library + + + @@ -123,7 +130,7 @@ - + ..\..\..\packages\Argu\lib\net40\Argu.dll @@ -161,7 +168,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -179,7 +186,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -226,6 +233,15 @@ + + + + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll + True + True + + + @@ -237,6 +253,15 @@ + + + + ..\..\..\packages\System.AppContext\lib\net46\System.AppContext.dll + True + True + + + @@ -266,7 +291,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -275,6 +300,15 @@ + + + + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll + False + True + + + @@ -326,6 +360,15 @@ + + + + ..\..\..\packages\System.Console\lib\net46\System.Console.dll + True + True + + + @@ -437,6 +480,15 @@ + + + + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll + True + True + + + @@ -495,16 +547,11 @@ - - - - True - - - - + + ..\..\..\packages\System.IO.Compression\lib\net46\System.IO.Compression.dll + True True @@ -518,7 +565,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -527,40 +574,44 @@ - + + + - + True - - - - - + + ..\..\..\packages\System.IO.Compression.ZipFile\lib\net46\System.IO.Compression.ZipFile.dll + True True - + - + + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll + True True - + - + + ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll + False True - + - - ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll + + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll True True @@ -568,8 +619,8 @@ - - ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll + + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll False True @@ -577,17 +628,15 @@ - + - - ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll + True True - - @@ -695,13 +744,6 @@ - - - - True - - - @@ -709,16 +751,11 @@ - - - - True - - - - + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll + True True @@ -741,27 +778,6 @@ - - - - True - - - - - - - True - - - - - - - True - - - @@ -804,6 +820,15 @@ + + + + ..\..\..\packages\System.Net.Sockets\lib\net46\System.Net.Sockets.dll + True + True + + + @@ -975,6 +1000,24 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + @@ -984,7 +1027,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -993,7 +1036,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1002,12 +1045,19 @@ - - - + - - ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard2.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard2.0\System.Reflection.TypeExtensions.dll False True @@ -1015,13 +1065,17 @@ - + - + + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + False True + + @@ -1147,7 +1201,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1185,13 +1239,6 @@ - - - - True - - - @@ -1212,6 +1259,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1241,7 +1297,25 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netcoreapp2.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll + True + True + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1250,6 +1324,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard2.0\System.Security.Cryptography.Cng.dll + False + True + + + @@ -1263,6 +1355,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1274,7 +1375,16 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netcoreapp2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1283,7 +1393,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1292,8 +1402,35 @@ + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll + True + True + + + @@ -1314,6 +1451,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net46\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1470,7 +1616,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll @@ -1479,6 +1625,15 @@ + + + + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll + True + True + + + @@ -1501,7 +1656,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1552,33 +1707,18 @@ - + - - ..\..\..\packages\System.ValueTuple\lib\netstandard1.0\System.ValueTuple.dll - True + True - - - - - - ..\..\..\packages\System.ValueTuple\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll + + ..\..\..\packages\System.Xml.ReaderWriter\lib\net46\System.Xml.ReaderWriter.dll True True - - - - - - True - - - @@ -1608,13 +1748,6 @@ - - - - True - - - @@ -1643,4 +1776,6 @@ - + + + \ No newline at end of file diff --git a/src/app/FAKE/app.config b/src/app/FAKE/app.config index e595f74e7c6..9df5b90aafe 100644 --- a/src/app/FAKE/app.config +++ b/src/app/FAKE/app.config @@ -133,10 +133,5 @@ - - True - - - \ No newline at end of file diff --git a/src/app/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj b/src/app/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj index e68f7880566..3639c7aa7e6 100644 --- a/src/app/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj +++ b/src/app/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj @@ -68,6 +68,13 @@ + + + + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library + + + @@ -119,7 +126,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -137,7 +144,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -326,7 +333,7 @@ - + ..\..\..\packages\Microsoft.CSharp\ref\netstandard1.0\Microsoft.CSharp.dll @@ -335,7 +342,7 @@ - + ..\..\..\packages\Microsoft.CSharp\lib\netstandard1.3\Microsoft.CSharp.dll @@ -344,6 +351,24 @@ + + + + ..\..\..\packages\Microsoft.CSharp\lib\netstandard2.0\Microsoft.CSharp.dll + True + True + + + + + + + ..\..\..\packages\Microsoft.CSharp\ref\netstandard2.0\Microsoft.CSharp.dll + False + True + + + @@ -373,6 +398,15 @@ + + + + + True + + + + @@ -388,7 +422,7 @@ - + True @@ -446,11 +480,8 @@ - + - - True - True @@ -562,6 +593,15 @@ + + + + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll + True + True + + + @@ -600,7 +640,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll @@ -636,7 +676,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net45+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -656,7 +696,7 @@ - + ..\..\..\packages\SSH.NET\lib\net40\Renci.SshNet.dll @@ -665,7 +705,7 @@ - + ..\..\..\packages\SSH.NET\lib\netstandard1.3\Renci.SshNet.dll @@ -692,6 +732,15 @@ + + + + ..\..\..\packages\SSH.NET\lib\uap10\Renci.SshNet.dll + True + True + + + @@ -768,6 +817,15 @@ + + + + ..\..\..\packages\System.AppContext\lib\net46\System.AppContext.dll + True + True + + + @@ -797,7 +855,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -806,6 +864,15 @@ + + + + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll + False + True + + + @@ -975,6 +1042,15 @@ + + + + ..\..\..\packages\System.Console\lib\net46\System.Console.dll + True + True + + + @@ -1086,7 +1162,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\lib\netstandard1.3\System.Dynamic.Runtime.dll @@ -1095,7 +1171,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\ref\netstandard1.3\System.Dynamic.Runtime.dll @@ -1126,6 +1202,15 @@ + + + + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll + True + True + + + @@ -1184,16 +1269,11 @@ - - - - True - - - - + + ..\..\..\packages\System.IO.Compression\lib\net46\System.IO.Compression.dll + True True @@ -1207,7 +1287,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -1216,40 +1296,44 @@ - + + + - + True - - - - - + + ..\..\..\packages\System.IO.Compression.ZipFile\lib\net46\System.IO.Compression.ZipFile.dll + True True - + - + + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll + True True - + - + + ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll + False True - + - - ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll + + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll True True @@ -1257,8 +1341,8 @@ - - ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll + + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll False True @@ -1266,17 +1350,15 @@ - + - - ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll + True True - - @@ -1384,9 +1466,11 @@ - + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll + True True @@ -1409,27 +1493,6 @@ - - - - True - - - - - - - True - - - - - - - True - - - @@ -1483,6 +1546,15 @@ + + + + ..\..\..\packages\System.Net.Sockets\lib\net46\System.Net.Sockets.dll + True + True + + + @@ -1654,6 +1726,24 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1663,7 +1753,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1672,7 +1762,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1681,12 +1771,19 @@ - - - + - - ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard2.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard2.0\System.Reflection.TypeExtensions.dll False True @@ -1694,13 +1791,17 @@ - + - + + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + False True + + @@ -1826,7 +1927,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1933,7 +2034,7 @@ - + ..\..\..\packages\System.Security.Claims\lib\netstandard1.3\System.Security.Claims.dll @@ -1942,7 +2043,7 @@ - + ..\..\..\packages\System.Security.Claims\ref\netstandard1.3\System.Security.Claims.dll @@ -1953,6 +2054,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1982,7 +2092,25 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netcoreapp2.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll + True + True + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1991,6 +2119,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard2.0\System.Security.Cryptography.Cng.dll + False + True + + + @@ -2004,6 +2150,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -2015,7 +2170,16 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netcoreapp2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -2024,7 +2188,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -2033,8 +2197,35 @@ + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll + True + True + + + @@ -2055,6 +2246,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net46\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -2075,7 +2275,7 @@ - + ..\..\..\packages\System.Security.Principal\lib\netstandard1.0\System.Security.Principal.dll @@ -2084,7 +2284,7 @@ - + ..\..\..\packages\System.Security.Principal\ref\netstandard1.0\System.Security.Principal.dll @@ -2095,7 +2295,16 @@ - + + + + ..\..\..\packages\System.Security.Principal.Windows\lib\netstandard1.3\System.Security.Principal.Windows.dll + True + True + + + + ..\..\..\packages\System.Security.Principal.Windows\ref\netstandard1.3\System.Security.Principal.Windows.dll @@ -2104,6 +2313,24 @@ + + + + ..\..\..\packages\System.Security.Principal.Windows\lib\netstandard2.0\System.Security.Principal.Windows.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Principal.Windows\ref\netstandard2.0\System.Security.Principal.Windows.dll + False + True + + + @@ -2242,7 +2469,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll @@ -2251,6 +2478,15 @@ + + + + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll + True + True + + + @@ -2273,7 +2509,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -2324,33 +2560,18 @@ - + - - ..\..\..\packages\System.ValueTuple\lib\netstandard1.0\System.ValueTuple.dll - True + True - - - - - - ..\..\..\packages\System.ValueTuple\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll + + ..\..\..\packages\System.Xml.ReaderWriter\lib\net46\System.Xml.ReaderWriter.dll True True - - - - - - True - - - @@ -2380,13 +2601,6 @@ - - - - True - - - @@ -2475,4 +2689,6 @@ + + \ No newline at end of file diff --git a/src/app/Fake.Deploy.Lib/app.config b/src/app/Fake.Deploy.Lib/app.config index 8b53422bf22..968f00c1b0c 100644 --- a/src/app/Fake.Deploy.Lib/app.config +++ b/src/app/Fake.Deploy.Lib/app.config @@ -129,11 +129,6 @@ - - True - - - diff --git a/src/app/Fake.Deploy/Fake.Deploy.fsproj b/src/app/Fake.Deploy/Fake.Deploy.fsproj index dec58457201..6459e4120b8 100644 --- a/src/app/Fake.Deploy/Fake.Deploy.fsproj +++ b/src/app/Fake.Deploy/Fake.Deploy.fsproj @@ -107,6 +107,13 @@ + + + + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library + + + @@ -126,7 +133,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -144,7 +151,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -198,7 +205,7 @@ - + ..\..\..\packages\Microsoft.CSharp\ref\netstandard1.0\Microsoft.CSharp.dll @@ -207,7 +214,7 @@ - + ..\..\..\packages\Microsoft.CSharp\lib\netstandard1.3\Microsoft.CSharp.dll @@ -216,6 +223,24 @@ + + + + ..\..\..\packages\Microsoft.CSharp\lib\netstandard2.0\Microsoft.CSharp.dll + True + True + + + + + + + ..\..\..\packages\Microsoft.CSharp\ref\netstandard2.0\Microsoft.CSharp.dll + False + True + + + @@ -246,6 +271,15 @@ + + + + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll + True + True + + + @@ -257,7 +291,7 @@ - + ..\..\..\packages\Nancy\lib\net40\Nancy.dll @@ -268,7 +302,7 @@ - + ..\..\..\packages\Nancy.Authentication.Stateless\lib\net40\Nancy.Authentication.Stateless.dll @@ -279,7 +313,7 @@ - + ..\..\..\packages\Nancy.Hosting.Self\lib\net40\Nancy.Hosting.Self.dll @@ -290,7 +324,7 @@ - + ..\..\..\packages\Nancy.Serialization.JsonNet\lib\net40\Nancy.Serialization.JsonNet.dll @@ -328,7 +362,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll @@ -364,7 +398,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net45+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -375,7 +409,7 @@ - + ..\..\..\packages\NLog\lib\MonoAndroid10\NLog.dll @@ -411,7 +445,7 @@ - + ..\..\..\packages\NLog\lib\net45\NLog.dll @@ -463,7 +497,7 @@ - + ..\..\..\packages\Serilog\lib\net45\Serilog.dll @@ -477,7 +511,7 @@ - + ..\..\..\packages\Serilog\lib\portable-net45+win+wpa81+wp80+MonoAndroid10+MonoTouch10\Serilog.dll @@ -488,10 +522,10 @@ - + - ..\..\..\packages\Serilog.Sinks.NLog\lib\net45\Serilog.Sinks.NLog.dll + ..\..\..\packages\serilog.sinks.nlog\lib\net45\Serilog.Sinks.NLog.dll True True @@ -508,7 +542,7 @@ - + ..\..\..\packages\SSH.NET\lib\net40\Renci.SshNet.dll @@ -517,7 +551,7 @@ - + ..\..\..\packages\SSH.NET\lib\netstandard1.3\Renci.SshNet.dll @@ -544,6 +578,15 @@ + + + + ..\..\..\packages\SSH.NET\lib\uap10\Renci.SshNet.dll + True + True + + + @@ -620,6 +663,15 @@ + + + + ..\..\..\packages\System.AppContext\lib\net46\System.AppContext.dll + True + True + + + @@ -649,7 +701,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -658,6 +710,15 @@ + + + + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll + False + True + + + @@ -827,6 +888,15 @@ + + + + ..\..\..\packages\System.Console\lib\net46\System.Console.dll + True + True + + + @@ -938,7 +1008,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\lib\netstandard1.3\System.Dynamic.Runtime.dll @@ -947,7 +1017,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\ref\netstandard1.3\System.Dynamic.Runtime.dll @@ -978,6 +1048,15 @@ + + + + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll + True + True + + + @@ -1036,16 +1115,11 @@ - - - - True - - - - + + ..\..\..\packages\System.IO.Compression\lib\net46\System.IO.Compression.dll + True True @@ -1059,7 +1133,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -1068,40 +1142,44 @@ - + + + - + True - - - - - + + ..\..\..\packages\System.IO.Compression.ZipFile\lib\net46\System.IO.Compression.ZipFile.dll + True True - + - + + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll + True True - + - + + ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll + False True - + - - ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll + + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll True True @@ -1109,8 +1187,8 @@ - - ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll + + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll False True @@ -1118,17 +1196,15 @@ - + - - ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll + True True - - @@ -1236,13 +1312,6 @@ - - - - True - - - @@ -1250,16 +1319,11 @@ - - - - True - - - - + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll + True True @@ -1282,27 +1346,6 @@ - - - - True - - - - - - - True - - - - - - - True - - - @@ -1356,6 +1399,15 @@ + + + + ..\..\..\packages\System.Net.Sockets\lib\net46\System.Net.Sockets.dll + True + True + + + @@ -1527,6 +1579,24 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1536,7 +1606,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1545,7 +1615,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1554,12 +1624,19 @@ - - - + - - ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard2.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard2.0\System.Reflection.TypeExtensions.dll False True @@ -1567,13 +1644,17 @@ - + - + + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + False True + + @@ -1699,7 +1780,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1737,13 +1818,6 @@ - - - - True - - - @@ -1813,7 +1887,7 @@ - + ..\..\..\packages\System.Security.Claims\lib\netstandard1.3\System.Security.Claims.dll @@ -1822,7 +1896,7 @@ - + ..\..\..\packages\System.Security.Claims\ref\netstandard1.3\System.Security.Claims.dll @@ -1833,6 +1907,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1862,7 +1945,25 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netcoreapp2.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll + True + True + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1871,6 +1972,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard2.0\System.Security.Cryptography.Cng.dll + False + True + + + @@ -1884,6 +2003,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1895,7 +2023,16 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netcoreapp2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1904,7 +2041,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1913,8 +2050,35 @@ + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll + True + True + + + @@ -1935,6 +2099,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net46\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1955,7 +2128,7 @@ - + ..\..\..\packages\System.Security.Principal\lib\netstandard1.0\System.Security.Principal.dll @@ -1964,7 +2137,7 @@ - + ..\..\..\packages\System.Security.Principal\ref\netstandard1.0\System.Security.Principal.dll @@ -1975,7 +2148,16 @@ - + + + + ..\..\..\packages\System.Security.Principal.Windows\lib\netstandard1.3\System.Security.Principal.Windows.dll + True + True + + + + ..\..\..\packages\System.Security.Principal.Windows\ref\netstandard1.3\System.Security.Principal.Windows.dll @@ -1984,6 +2166,24 @@ + + + + ..\..\..\packages\System.Security.Principal.Windows\lib\netstandard2.0\System.Security.Principal.Windows.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Principal.Windows\ref\netstandard2.0\System.Security.Principal.Windows.dll + False + True + + + @@ -2122,7 +2322,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll @@ -2131,6 +2331,15 @@ + + + + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll + True + True + + + @@ -2153,7 +2362,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -2204,33 +2413,18 @@ - + - - ..\..\..\packages\System.ValueTuple\lib\netstandard1.0\System.ValueTuple.dll - True + True - - - - - - ..\..\..\packages\System.ValueTuple\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll + + ..\..\..\packages\System.Xml.ReaderWriter\lib\net46\System.Xml.ReaderWriter.dll True True - - - - - - True - - - @@ -2260,13 +2454,6 @@ - - - - True - - - @@ -2355,4 +2542,6 @@ + + \ No newline at end of file diff --git a/src/app/Fake.Deploy/app.config b/src/app/Fake.Deploy/app.config index 65cb85a768f..9692426036a 100644 --- a/src/app/Fake.Deploy/app.config +++ b/src/app/Fake.Deploy/app.config @@ -137,11 +137,6 @@ - - True - - - diff --git a/src/app/Fake.Experimental/Fake.Experimental.fsproj b/src/app/Fake.Experimental/Fake.Experimental.fsproj index 50ec9d6bd6f..f1da5b98e9d 100644 --- a/src/app/Fake.Experimental/Fake.Experimental.fsproj +++ b/src/app/Fake.Experimental/Fake.Experimental.fsproj @@ -111,7 +111,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -129,7 +129,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -176,6 +176,15 @@ + + + + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll + True + True + + + @@ -187,7 +196,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -196,6 +205,15 @@ + + + + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll + False + True + + + @@ -247,6 +265,15 @@ + + + + ..\..\..\packages\System.Console\lib\net46\System.Console.dll + True + True + + + @@ -358,6 +385,15 @@ + + + + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll + True + True + + + @@ -416,16 +452,11 @@ - - - - True - - - - + + ..\..\..\packages\System.IO.Compression\lib\net46\System.IO.Compression.dll + True True @@ -439,7 +470,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -448,47 +479,37 @@ - - - - True - - - - - - - True - - - - + + + - + + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll + True True - + - + + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll + False True - + - - ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll + True True - - @@ -596,13 +617,6 @@ - - - - True - - - @@ -610,16 +624,11 @@ - - - - True - - - - + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll + True True @@ -642,27 +651,6 @@ - - - - True - - - - - - - True - - - - - - - True - - - @@ -865,6 +853,24 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + @@ -874,7 +880,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -883,7 +889,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -892,12 +898,19 @@ - - - + - - ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard2.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard2.0\System.Reflection.TypeExtensions.dll False True @@ -905,13 +918,17 @@ - + - + + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + False True + + @@ -1037,13 +1054,6 @@ - - - - True - - - @@ -1064,6 +1074,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1093,7 +1112,25 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netcoreapp2.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll + True + True + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1102,6 +1139,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard2.0\System.Security.Cryptography.Cng.dll + False + True + + + @@ -1115,6 +1170,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1126,7 +1190,16 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netcoreapp2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1135,7 +1208,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1144,8 +1217,35 @@ + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll + True + True + + + @@ -1166,6 +1266,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net46\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1322,7 +1431,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1372,24 +1481,4 @@ - - - - - ..\..\..\packages\System.ValueTuple\lib\netstandard1.0\System.ValueTuple.dll - True - True - - - - - - - ..\..\..\packages\System.ValueTuple\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll - True - True - - - - \ No newline at end of file diff --git a/src/app/Fake.Experimental/app.config b/src/app/Fake.Experimental/app.config index cde1c0870b0..51a89550897 100644 --- a/src/app/Fake.Experimental/app.config +++ b/src/app/Fake.Experimental/app.config @@ -129,11 +129,6 @@ - - True - - - diff --git a/src/app/Fake.FluentMigrator/Fake.FluentMigrator.fsproj b/src/app/Fake.FluentMigrator/Fake.FluentMigrator.fsproj index 6e8f8fa1574..31bddae5f3c 100644 --- a/src/app/Fake.FluentMigrator/Fake.FluentMigrator.fsproj +++ b/src/app/Fake.FluentMigrator/Fake.FluentMigrator.fsproj @@ -103,7 +103,7 @@ - + ..\..\..\packages\FluentMigrator\lib\40\FluentMigrator.dll @@ -123,7 +123,7 @@ - + ..\..\..\packages\FluentMigrator.Runner\lib\40\FluentMigrator.Runner.dll @@ -152,7 +152,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -170,7 +170,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -217,6 +217,15 @@ + + + + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll + True + True + + + @@ -228,7 +237,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -237,6 +246,15 @@ + + + + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll + False + True + + + @@ -288,6 +306,15 @@ + + + + ..\..\..\packages\System.Console\lib\net46\System.Console.dll + True + True + + + @@ -399,6 +426,15 @@ + + + + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll + True + True + + + @@ -457,16 +493,11 @@ - - - - True - - - - + + ..\..\..\packages\System.IO.Compression\lib\net46\System.IO.Compression.dll + True True @@ -480,7 +511,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -489,47 +520,37 @@ - - - - True - - - - - - - True - - - - + + + - + + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll + True True - + - + + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll + False True - + - - ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll + True True - - @@ -637,13 +658,6 @@ - - - - True - - - @@ -651,16 +665,11 @@ - - - - True - - - - + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll + True True @@ -683,27 +692,6 @@ - - - - True - - - - - - - True - - - - - - - True - - - @@ -906,6 +894,24 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + @@ -915,7 +921,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -924,7 +930,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -933,12 +939,19 @@ - - - + - - ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard2.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard2.0\System.Reflection.TypeExtensions.dll False True @@ -946,13 +959,17 @@ - + - + + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + False True + + @@ -1098,6 +1115,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1127,7 +1153,25 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netcoreapp2.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll + True + True + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1136,6 +1180,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard2.0\System.Security.Cryptography.Cng.dll + False + True + + + @@ -1149,6 +1211,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1160,7 +1231,16 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netcoreapp2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1169,7 +1249,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1178,8 +1258,35 @@ + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll + True + True + + + @@ -1200,6 +1307,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net46\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1356,7 +1472,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1406,24 +1522,4 @@ - - - - - ..\..\..\packages\System.ValueTuple\lib\netstandard1.0\System.ValueTuple.dll - True - True - - - - - - - ..\..\..\packages\System.ValueTuple\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll - True - True - - - - \ No newline at end of file diff --git a/src/app/Fake.Gallio/Fake.Gallio.fsproj b/src/app/Fake.Gallio/Fake.Gallio.fsproj index 95f60e5e60b..7a8e69061e7 100644 --- a/src/app/Fake.Gallio/Fake.Gallio.fsproj +++ b/src/app/Fake.Gallio/Fake.Gallio.fsproj @@ -122,7 +122,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -140,7 +140,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -187,6 +187,15 @@ + + + + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll + True + True + + + @@ -198,7 +207,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -207,6 +216,15 @@ + + + + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll + False + True + + + @@ -258,6 +276,15 @@ + + + + ..\..\..\packages\System.Console\lib\net46\System.Console.dll + True + True + + + @@ -369,6 +396,15 @@ + + + + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll + True + True + + + @@ -427,16 +463,11 @@ - - - - True - - - - + + ..\..\..\packages\System.IO.Compression\lib\net46\System.IO.Compression.dll + True True @@ -450,7 +481,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -459,47 +490,37 @@ - - - - True - - - - - - - True - - - - + + + - + + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll + True True - + - + + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll + False True - + - - ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll + True True - - @@ -607,13 +628,6 @@ - - - - True - - - @@ -621,16 +635,11 @@ - - - - True - - - - + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll + True True @@ -653,27 +662,6 @@ - - - - True - - - - - - - True - - - - - - - True - - - @@ -876,6 +864,24 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + @@ -885,7 +891,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -894,7 +900,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -903,12 +909,19 @@ - - - + - - ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard2.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard2.0\System.Reflection.TypeExtensions.dll False True @@ -916,13 +929,17 @@ - + - + + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + False True + + @@ -1048,13 +1065,6 @@ - - - - True - - - @@ -1075,6 +1085,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1104,7 +1123,25 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netcoreapp2.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll + True + True + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1113,6 +1150,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard2.0\System.Security.Cryptography.Cng.dll + False + True + + + @@ -1126,6 +1181,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1137,7 +1201,16 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netcoreapp2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1146,7 +1219,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1155,8 +1228,35 @@ + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll + True + True + + + @@ -1177,6 +1277,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net46\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1333,7 +1442,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1383,24 +1492,4 @@ - - - - - ..\..\..\packages\System.ValueTuple\lib\netstandard1.0\System.ValueTuple.dll - True - True - - - - - - - ..\..\..\packages\System.ValueTuple\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll - True - True - - - - \ No newline at end of file diff --git a/src/app/Fake.Gallio/app.config b/src/app/Fake.Gallio/app.config index 8b53422bf22..968f00c1b0c 100644 --- a/src/app/Fake.Gallio/app.config +++ b/src/app/Fake.Gallio/app.config @@ -129,11 +129,6 @@ - - True - - - diff --git a/src/app/Fake.IIS/Fake.IIS.fsproj b/src/app/Fake.IIS/Fake.IIS.fsproj index 06a9ae46437..48dd68c2b5b 100644 --- a/src/app/Fake.IIS/Fake.IIS.fsproj +++ b/src/app/Fake.IIS/Fake.IIS.fsproj @@ -117,7 +117,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -135,7 +135,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -182,7 +182,7 @@ - + ..\..\..\packages\Microsoft.Web.Administration\lib\net20\Microsoft.Web.Administration.dll @@ -193,6 +193,15 @@ + + + + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll + True + True + + + @@ -204,7 +213,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -213,6 +222,15 @@ + + + + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll + False + True + + + @@ -264,6 +282,15 @@ + + + + ..\..\..\packages\System.Console\lib\net46\System.Console.dll + True + True + + + @@ -375,6 +402,15 @@ + + + + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll + True + True + + + @@ -433,16 +469,11 @@ - - - - True - - - - + + ..\..\..\packages\System.IO.Compression\lib\net46\System.IO.Compression.dll + True True @@ -456,7 +487,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -465,47 +496,37 @@ - - - - True - - - - - - - True - - - - + + + - + + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll + True True - + - + + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll + False True - + - - ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll + True True - - @@ -613,13 +634,6 @@ - - - - True - - - @@ -627,16 +641,11 @@ - - - - True - - - - + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll + True True @@ -659,27 +668,6 @@ - - - - True - - - - - - - True - - - - - - - True - - - @@ -882,6 +870,24 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + @@ -891,7 +897,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -900,7 +906,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -909,12 +915,19 @@ - - - + - - ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard2.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard2.0\System.Reflection.TypeExtensions.dll False True @@ -922,13 +935,17 @@ - + - + + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + False True + + @@ -1074,6 +1091,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1103,7 +1129,25 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netcoreapp2.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll + True + True + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1112,6 +1156,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard2.0\System.Security.Cryptography.Cng.dll + False + True + + + @@ -1125,6 +1187,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1136,7 +1207,16 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netcoreapp2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1145,7 +1225,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1154,8 +1234,35 @@ + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll + True + True + + + @@ -1176,6 +1283,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net46\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1332,7 +1448,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1382,24 +1498,4 @@ - - - - - ..\..\..\packages\System.ValueTuple\lib\netstandard1.0\System.ValueTuple.dll - True - True - - - - - - - ..\..\..\packages\System.ValueTuple\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll - True - True - - - - \ No newline at end of file diff --git a/src/app/Fake.IIS/app.config b/src/app/Fake.IIS/app.config index 8b53422bf22..968f00c1b0c 100644 --- a/src/app/Fake.IIS/app.config +++ b/src/app/Fake.IIS/app.config @@ -129,11 +129,6 @@ - - True - - - diff --git a/src/app/Fake.SQL/Fake.SQL.fsproj b/src/app/Fake.SQL/Fake.SQL.fsproj index f9f0e81ed33..d0301404d87 100644 --- a/src/app/Fake.SQL/Fake.SQL.fsproj +++ b/src/app/Fake.SQL/Fake.SQL.fsproj @@ -135,7 +135,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -153,7 +153,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -200,6 +200,15 @@ + + + + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll + True + True + + + @@ -211,7 +220,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -220,6 +229,15 @@ + + + + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll + False + True + + + @@ -271,6 +289,15 @@ + + + + ..\..\..\packages\System.Console\lib\net46\System.Console.dll + True + True + + + @@ -382,6 +409,15 @@ + + + + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll + True + True + + + @@ -440,16 +476,11 @@ - - - - True - - - - + + ..\..\..\packages\System.IO.Compression\lib\net46\System.IO.Compression.dll + True True @@ -463,7 +494,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -472,47 +503,37 @@ - - - - True - - - - - - - True - - - - + + + - + + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll + True True - + - + + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll + False True - + - - ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll + True True - - @@ -620,13 +641,6 @@ - - - - True - - - @@ -634,16 +648,11 @@ - - - - True - - - - + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll + True True @@ -666,27 +675,6 @@ - - - - True - - - - - - - True - - - - - - - True - - - @@ -889,6 +877,24 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + @@ -898,7 +904,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -907,7 +913,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -916,12 +922,19 @@ - - - + - - ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard2.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard2.0\System.Reflection.TypeExtensions.dll False True @@ -929,13 +942,17 @@ - + - + + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + False True + + @@ -1061,13 +1078,6 @@ - - - - True - - - @@ -1088,6 +1098,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1117,7 +1136,25 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netcoreapp2.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll + True + True + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1126,6 +1163,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard2.0\System.Security.Cryptography.Cng.dll + False + True + + + @@ -1139,6 +1194,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1150,7 +1214,16 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netcoreapp2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1159,7 +1232,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1168,8 +1241,35 @@ + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll + True + True + + + @@ -1190,6 +1290,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net46\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1346,7 +1455,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1396,24 +1505,4 @@ - - - - - ..\..\..\packages\System.ValueTuple\lib\netstandard1.0\System.ValueTuple.dll - True - True - - - - - - - ..\..\..\packages\System.ValueTuple\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll - True - True - - - - \ No newline at end of file diff --git a/src/app/Fake.SQL/app.config b/src/app/Fake.SQL/app.config index 8b53422bf22..968f00c1b0c 100644 --- a/src/app/Fake.SQL/app.config +++ b/src/app/Fake.SQL/app.config @@ -129,11 +129,6 @@ - - True - - - diff --git a/src/app/FakeLib/FakeLib.fsproj b/src/app/FakeLib/FakeLib.fsproj index 7bdf951fbc1..d208461f55c 100644 --- a/src/app/FakeLib/FakeLib.fsproj +++ b/src/app/FakeLib/FakeLib.fsproj @@ -1,6 +1,5 @@  - @@ -14,7 +13,7 @@ FakeLib v4.5 - 44 + 44 true @@ -479,6 +478,13 @@ + + + + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library + + + @@ -502,7 +508,7 @@ - + ..\..\..\packages\Chessie\lib\net40\Chessie.dll @@ -522,7 +528,7 @@ - + ..\..\..\packages\FSharp.Compiler.Service\lib\net45\FSharp.Compiler.Service.dll @@ -560,7 +566,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -578,7 +584,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -625,7 +631,7 @@ - + ..\..\..\packages\HashLib\lib\net40\HashLib.dll @@ -643,7 +649,7 @@ - + ..\..\..\packages\Microsoft.CSharp\ref\netstandard1.0\Microsoft.CSharp.dll @@ -652,7 +658,7 @@ - + ..\..\..\packages\Microsoft.CSharp\lib\netstandard1.3\Microsoft.CSharp.dll @@ -661,59 +667,55 @@ - + + ..\..\..\packages\Microsoft.CSharp\lib\netstandard2.0\Microsoft.CSharp.dll + True True - + + ..\..\..\packages\Microsoft.CSharp\ref\netstandard2.0\Microsoft.CSharp.dll + False True - + True - + True - - - + - - ..\..\..\packages\Microsoft.DiaSymReader\lib\netstandard1.1\Microsoft.DiaSymReader.dll - True + True - - - + - - ..\..\..\packages\Microsoft.DiaSymReader.PortablePdb\lib\netstandard1.1\Microsoft.DiaSymReader.PortablePdb.dll - True + True - + ..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -724,6 +726,15 @@ + + + + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll + True + True + + + @@ -735,7 +746,16 @@ - + + + + ..\..\..\packages\Microsoft.Win32.Registry\lib\netstandard1.3\Microsoft.Win32.Registry.dll + True + True + + + + ..\..\..\packages\Microsoft.Win32.Registry\ref\netstandard1.3\Microsoft.Win32.Registry.dll @@ -744,6 +764,24 @@ + + + + ..\..\..\packages\Microsoft.Win32.Registry\lib\netstandard2.0\Microsoft.Win32.Registry.dll + True + True + + + + + + + ..\..\..\packages\Microsoft.Win32.Registry\ref\netstandard2.0\Microsoft.Win32.Registry.dll + False + True + + + @@ -770,7 +808,7 @@ - + ..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -820,7 +858,7 @@ - + ..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -858,7 +896,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll @@ -894,7 +932,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net45+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -905,10 +943,10 @@ - + - ..\..\..\packages\NuGet.Core\lib\net40-Client\NuGet.Core.dll + ..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll True True @@ -916,7 +954,7 @@ - + ..\..\..\packages\Paket.Core\lib\net45\Paket.Core.dll @@ -936,6 +974,15 @@ + + + + ..\..\..\packages\System.AppContext\lib\net46\System.AppContext.dll + True + True + + + @@ -965,7 +1012,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -974,6 +1021,15 @@ + + + + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll + False + True + + + @@ -1025,7 +1081,7 @@ - + ..\..\..\packages\System.Collections.Immutable\lib\netstandard1.0\System.Collections.Immutable.dll @@ -1034,10 +1090,10 @@ - + - ..\..\..\packages\System.Collections.Immutable\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + ..\..\..\packages\System.Collections.Immutable\lib\netstandard2.0\System.Collections.Immutable.dll True True @@ -1163,6 +1219,15 @@ + + + + ..\..\..\packages\System.Console\lib\net46\System.Console.dll + True + True + + + @@ -1296,7 +1361,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\lib\netstandard1.3\System.Dynamic.Runtime.dll @@ -1305,7 +1370,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\ref\netstandard1.3\System.Dynamic.Runtime.dll @@ -1336,6 +1401,15 @@ + + + + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll + True + True + + + @@ -1394,16 +1468,11 @@ - - - - True - - - - + + ..\..\..\packages\System.IO.Compression\lib\net46\System.IO.Compression.dll + True True @@ -1417,7 +1486,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -1426,40 +1495,44 @@ - + + + - + True - - - - - + + ..\..\..\packages\System.IO.Compression.ZipFile\lib\net46\System.IO.Compression.ZipFile.dll + True True - + - + + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll + True True - + - + + ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll + False True - + - - ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll + + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll True True @@ -1467,8 +1540,8 @@ - - ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll + + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll False True @@ -1476,17 +1549,15 @@ - + - - ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll + True True - - @@ -1594,13 +1665,6 @@ - - - - True - - - @@ -1608,16 +1672,11 @@ - - - - True - - - - + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll + True True @@ -1640,27 +1699,6 @@ - - - - True - - - - - - - True - - - - - - - True - - - @@ -1703,6 +1741,15 @@ + + + + ..\..\..\packages\System.Net.Sockets\lib\net46\System.Net.Sockets.dll + True + True + + + @@ -1863,7 +1910,7 @@ - + ..\..\..\packages\System.Reflection.Metadata\lib\netstandard1.1\System.Reflection.Metadata.dll @@ -1872,10 +1919,10 @@ - + - ..\..\..\packages\System.Reflection.Metadata\lib\portable-net45+win8\System.Reflection.Metadata.dll + ..\..\..\packages\System.Reflection.Metadata\lib\netstandard2.0\System.Reflection.Metadata.dll True True @@ -1894,6 +1941,24 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1903,7 +1968,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1912,7 +1977,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1921,12 +1986,19 @@ - - - + - - ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard2.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard2.0\System.Reflection.TypeExtensions.dll False True @@ -1934,13 +2006,17 @@ - + - + + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + False True + + @@ -2066,7 +2142,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll @@ -2124,13 +2200,6 @@ - - - - True - - - @@ -2200,6 +2269,55 @@ + + + + ..\..\..\packages\System.Security.AccessControl\lib\netstandard2.0\System.Security.AccessControl.dll + True + True + + + + + + + ..\..\..\packages\System.Security.AccessControl\ref\netstandard2.0\System.Security.AccessControl.dll + False + True + + + + + + + + + ..\..\..\packages\System.Security.Claims\lib\netstandard1.3\System.Security.Claims.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Claims\ref\netstandard1.3\System.Security.Claims.dll + False + True + + + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -2229,7 +2347,25 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netcoreapp2.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll + True + True + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -2238,6 +2374,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard2.0\System.Security.Cryptography.Cng.dll + False + True + + + @@ -2251,6 +2405,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -2262,7 +2425,16 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netcoreapp2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -2271,7 +2443,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -2280,8 +2452,35 @@ + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll + True + True + + + @@ -2302,7 +2501,16 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.ProtectedData\lib\netstandard1.3\System.Security.Cryptography.ProtectedData.dll + True + True + + + + ..\..\..\packages\System.Security.Cryptography.ProtectedData\ref\netstandard1.3\System.Security.Cryptography.ProtectedData.dll @@ -2311,8 +2519,35 @@ + + + + ..\..\..\packages\System.Security.Cryptography.ProtectedData\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.ProtectedData\ref\netstandard2.0\System.Security.Cryptography.ProtectedData.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net46\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -2332,6 +2567,64 @@ + + + + + ..\..\..\packages\System.Security.Principal\lib\netstandard1.0\System.Security.Principal.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Principal\ref\netstandard1.0\System.Security.Principal.dll + False + True + + + + + + + + + ..\..\..\packages\System.Security.Principal.Windows\lib\netstandard1.3\System.Security.Principal.Windows.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Principal.Windows\ref\netstandard1.3\System.Security.Principal.Windows.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Principal.Windows\lib\netstandard2.0\System.Security.Principal.Windows.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Principal.Windows\ref\netstandard2.0\System.Security.Principal.Windows.dll + False + True + + + + @@ -2469,7 +2762,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll @@ -2478,6 +2771,15 @@ + + + + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll + True + True + + + @@ -2500,7 +2802,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -2551,7 +2853,7 @@ - + ..\..\..\packages\System.ValueTuple\lib\netstandard1.0\System.ValueTuple.dll @@ -2560,17 +2862,26 @@ - + - ..\..\..\packages\System.ValueTuple\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll - True + ..\..\..\packages\System.ValueTuple\ref\portable-net40+sl4+win8+wp8\System.ValueTuple.dll + False True + + + + ..\..\..\packages\System.Xml.ReaderWriter\lib\net46\System.Xml.ReaderWriter.dll + True + True + + + @@ -2708,4 +3019,6 @@ + + \ No newline at end of file diff --git a/src/app/FakeLib/app.config b/src/app/FakeLib/app.config index 8b53422bf22..968f00c1b0c 100644 --- a/src/app/FakeLib/app.config +++ b/src/app/FakeLib/app.config @@ -129,11 +129,6 @@ - - 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 075d5bfebee..fc82e3b69aa 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 @@ -105,7 +105,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -123,7 +123,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -170,6 +170,15 @@ + + + + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll + True + True + + + @@ -181,7 +190,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -190,6 +199,15 @@ + + + + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll + False + True + + + @@ -241,6 +259,15 @@ + + + + ..\..\..\packages\System.Console\lib\net46\System.Console.dll + True + True + + + @@ -352,6 +379,15 @@ + + + + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll + True + True + + + @@ -410,16 +446,11 @@ - - - - True - - - - + + ..\..\..\packages\System.IO.Compression\lib\net46\System.IO.Compression.dll + True True @@ -433,7 +464,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -442,47 +473,37 @@ - - - - True - - - - - - - True - - - - + + + - + + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll + True True - + - + + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll + False True - + - - ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll + True True - - @@ -590,13 +611,6 @@ - - - - True - - - @@ -604,16 +618,11 @@ - - - - True - - - - + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll + True True @@ -636,27 +645,6 @@ - - - - True - - - - - - - True - - - - - - - True - - - @@ -859,6 +847,24 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + @@ -868,7 +874,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -877,7 +883,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -886,6 +892,24 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard2.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard2.0\System.Reflection.TypeExtensions.dll + False + True + + + @@ -1044,6 +1068,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1073,7 +1106,25 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netcoreapp2.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll + True + True + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1082,6 +1133,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard2.0\System.Security.Cryptography.Cng.dll + False + True + + + @@ -1095,6 +1164,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1106,7 +1184,16 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netcoreapp2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1115,7 +1202,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1124,8 +1211,35 @@ + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll + True + True + + + @@ -1146,6 +1260,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net46\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1302,7 +1425,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1352,24 +1475,4 @@ - - - - - ..\..\..\packages\System.ValueTuple\lib\netstandard1.0\System.ValueTuple.dll - True - True - - - - - - - ..\..\..\packages\System.ValueTuple\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll - True - True - - - - \ No newline at end of file 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 5bf4343a822..e566a449b2b 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 @@ -64,6 +64,13 @@ + + + + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library + + + @@ -111,7 +118,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -129,7 +136,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -183,7 +190,7 @@ - + ..\..\..\..\packages\Microsoft.CSharp\ref\netstandard1.0\Microsoft.CSharp.dll @@ -192,7 +199,7 @@ - + ..\..\..\..\packages\Microsoft.CSharp\lib\netstandard1.3\Microsoft.CSharp.dll @@ -201,6 +208,24 @@ + + + + ..\..\..\..\packages\Microsoft.CSharp\lib\netstandard2.0\Microsoft.CSharp.dll + True + True + + + + + + + ..\..\..\..\packages\Microsoft.CSharp\ref\netstandard2.0\Microsoft.CSharp.dll + False + True + + + @@ -231,6 +256,15 @@ + + + + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll + True + True + + + @@ -269,7 +303,7 @@ - + ..\..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll @@ -305,7 +339,7 @@ - + ..\..\..\..\packages\Newtonsoft.Json\lib\portable-net45+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -316,6 +350,15 @@ + + + + ..\..\..\..\packages\System.AppContext\lib\net46\System.AppContext.dll + True + True + + + @@ -345,7 +388,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -354,6 +397,15 @@ + + + + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll + False + True + + + @@ -523,6 +575,15 @@ + + + + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll + True + True + + + @@ -623,7 +684,7 @@ - + ..\..\..\..\packages\System.Dynamic.Runtime\lib\netstandard1.3\System.Dynamic.Runtime.dll @@ -632,7 +693,7 @@ - + ..\..\..\..\packages\System.Dynamic.Runtime\ref\netstandard1.3\System.Dynamic.Runtime.dll @@ -663,6 +724,15 @@ + + + + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll + True + True + + + @@ -721,16 +791,11 @@ - - - - True - - - - + + ..\..\..\..\packages\System.IO.Compression\lib\net46\System.IO.Compression.dll + True True @@ -744,7 +809,7 @@ - + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -753,40 +818,44 @@ - + + + - + True - - - - - + + ..\..\..\..\packages\System.IO.Compression.ZipFile\lib\net46\System.IO.Compression.ZipFile.dll + True True - + - + + ..\..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll + True True - + - + + ..\..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll + False True - + - - ..\..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll + + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll True True @@ -794,8 +863,8 @@ - - ..\..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll + + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll False True @@ -803,17 +872,15 @@ - + - - ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll + True True - - @@ -921,13 +988,6 @@ - - - - True - - - @@ -935,16 +995,11 @@ - - - - True - - - - + + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll + True True @@ -967,27 +1022,6 @@ - - - - True - - - - - - - True - - - - - - - True - - - @@ -1030,6 +1064,15 @@ + + + + ..\..\..\..\packages\System.Net.Sockets\lib\net46\System.Net.Sockets.dll + True + True + + + @@ -1201,6 +1244,24 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1210,7 +1271,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1219,7 +1280,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1228,12 +1289,19 @@ - - - + - - ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard2.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard2.0\System.Reflection.TypeExtensions.dll False True @@ -1241,13 +1309,17 @@ - + - + + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + False True + + @@ -1373,7 +1445,7 @@ - + ..\..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1480,6 +1552,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1509,7 +1590,25 @@ - + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\ref\netcoreapp2.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll + True + True + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1518,6 +1617,24 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard2.0\System.Security.Cryptography.Cng.dll + False + True + + + @@ -1531,6 +1648,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1542,7 +1668,16 @@ - + + + + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netcoreapp2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1551,7 +1686,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1560,8 +1695,35 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll + True + True + + + @@ -1582,6 +1744,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net46\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1738,7 +1909,7 @@ - + ..\..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll @@ -1747,6 +1918,15 @@ + + + + ..\..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll + True + True + + + @@ -1769,7 +1949,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1820,26 +2000,15 @@ - - - - ..\..\..\..\packages\System.ValueTuple\lib\netstandard1.0\System.ValueTuple.dll - True - True - - - - + - - ..\..\..\..\packages\System.ValueTuple\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll + + ..\..\..\..\packages\System.Xml.ReaderWriter\lib\net46\System.Xml.ReaderWriter.dll True True - - @@ -1869,13 +2038,6 @@ - - - - True - - - @@ -1924,4 +2086,6 @@ + + \ No newline at end of file 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 7d764fade8e..7c105acd881 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 @@ -116,7 +116,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -134,7 +134,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -201,6 +201,15 @@ + + + + ..\..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll + True + True + + + @@ -229,7 +238,7 @@ - + ..\..\..\..\packages\RavenDB.Client\lib\net45\Raven.Abstractions.dll @@ -254,7 +263,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -263,6 +272,15 @@ + + + + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll + False + True + + + @@ -314,6 +332,15 @@ + + + + ..\..\..\..\packages\System.Console\lib\net46\System.Console.dll + True + True + + + @@ -425,6 +452,15 @@ + + + + ..\..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll + True + True + + + @@ -483,16 +519,11 @@ - - - - True - - - - + + ..\..\..\..\packages\System.IO.Compression\lib\net46\System.IO.Compression.dll + True True @@ -506,7 +537,7 @@ - + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -515,47 +546,37 @@ - - - - True - - - - - - - True - - - - + + + - + + ..\..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll + True True - + - + + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll + False True - + - - ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + + ..\..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll + True True - - @@ -663,13 +684,6 @@ - - - - True - - - @@ -677,16 +691,11 @@ - - - - True - - - - + + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll + True True @@ -709,27 +718,6 @@ - - - - True - - - - - - - True - - - - - - - True - - - @@ -932,6 +920,24 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + @@ -941,7 +947,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -950,7 +956,7 @@ - + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -959,12 +965,19 @@ - - - + - - ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard2.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard2.0\System.Reflection.TypeExtensions.dll False True @@ -972,13 +985,17 @@ - + - + + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + False True + + @@ -1124,6 +1141,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1153,7 +1179,25 @@ - + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\ref\netcoreapp2.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll + True + True + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1162,6 +1206,24 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard2.0\System.Security.Cryptography.Cng.dll + False + True + + + @@ -1175,6 +1237,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1186,7 +1257,16 @@ - + + + + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netcoreapp2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1195,7 +1275,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1204,8 +1284,35 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll + True + True + + + @@ -1226,6 +1333,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net46\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1382,7 +1498,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1432,24 +1548,4 @@ - - - - - ..\..\..\..\packages\System.ValueTuple\lib\netstandard1.0\System.ValueTuple.dll - True - True - - - - - - - ..\..\..\..\packages\System.ValueTuple\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll - True - True - - - - \ No newline at end of file diff --git a/src/deploy.web/Fake.Deploy.Web/App.config b/src/deploy.web/Fake.Deploy.Web/App.config index 7608248708d..2bf76bd4c31 100644 --- a/src/deploy.web/Fake.Deploy.Web/App.config +++ b/src/deploy.web/Fake.Deploy.Web/App.config @@ -136,10 +136,5 @@ - - True - - - \ No newline at end of file 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 81b32a68b96..e6abb888717 100644 --- a/src/deploy.web/Fake.Deploy.Web/Fake.Deploy.Web.fsproj +++ b/src/deploy.web/Fake.Deploy.Web/Fake.Deploy.Web.fsproj @@ -229,6 +229,13 @@ + + + + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library + + + @@ -248,7 +255,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -266,7 +273,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -313,6 +320,24 @@ + + + + ..\..\..\packages\log4net\lib\net10-full\log4net.dll + True + True + + + + + + + ..\..\..\packages\log4net\lib\net11-full\log4net.dll + True + True + + + @@ -340,7 +365,7 @@ - + ..\..\..\packages\log4net\lib\net45-full\log4net.dll @@ -351,7 +376,7 @@ - + ..\..\..\packages\Microsoft.AspNet.Mvc\lib\net40\System.Web.Mvc.dll @@ -362,7 +387,7 @@ - + ..\..\..\packages\Microsoft.AspNet.Razor\lib\net40\System.Web.Razor.dll @@ -373,7 +398,7 @@ - + ..\..\..\packages\Microsoft.AspNet.WebPages\lib\net40\System.Web.Helpers.dll @@ -406,7 +431,7 @@ - + ..\..\..\packages\Microsoft.CSharp\ref\netstandard1.0\Microsoft.CSharp.dll @@ -415,7 +440,7 @@ - + ..\..\..\packages\Microsoft.CSharp\lib\netstandard1.3\Microsoft.CSharp.dll @@ -424,6 +449,24 @@ + + + + ..\..\..\packages\Microsoft.CSharp\lib\netstandard2.0\Microsoft.CSharp.dll + True + True + + + + + + + ..\..\..\packages\Microsoft.CSharp\ref\netstandard2.0\Microsoft.CSharp.dll + False + True + + + @@ -454,7 +497,7 @@ - + ..\..\..\packages\Microsoft.Web.Infrastructure\lib\net40\Microsoft.Web.Infrastructure.dll @@ -465,6 +508,15 @@ + + + + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll + True + True + + + @@ -476,7 +528,7 @@ - + ..\..\..\packages\Nancy\lib\net40\Nancy.dll @@ -487,7 +539,7 @@ - + ..\..\..\packages\Nancy.Authentication.Forms\lib\net40\Nancy.Authentication.Forms.dll @@ -498,7 +550,7 @@ - + ..\..\..\packages\Nancy.Hosting.Aspnet\lib\net40\Nancy.Hosting.Aspnet.dll @@ -509,7 +561,7 @@ - + ..\..\..\packages\Nancy.Viewengines.Razor\lib\net40\Nancy.ViewEngines.Razor.dll @@ -547,7 +599,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll @@ -583,7 +635,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net45+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -594,6 +646,15 @@ + + + + ..\..\..\packages\System.AppContext\lib\net46\System.AppContext.dll + True + True + + + @@ -623,7 +684,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -632,15 +693,17 @@ - - - + - + + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll + False True + + @@ -808,6 +871,15 @@ + + + + ..\..\..\packages\System.Console\lib\net46\System.Console.dll + True + True + + + @@ -908,7 +980,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\lib\netstandard1.3\System.Dynamic.Runtime.dll @@ -917,7 +989,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\ref\netstandard1.3\System.Dynamic.Runtime.dll @@ -948,6 +1020,15 @@ + + + + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll + True + True + + + @@ -1006,16 +1087,11 @@ - - - - True - - - - + + ..\..\..\packages\System.IO.Compression\lib\net46\System.IO.Compression.dll + True True @@ -1029,7 +1105,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -1038,40 +1114,44 @@ - + + + - + True - - - - - + + ..\..\..\packages\System.IO.Compression.ZipFile\lib\net46\System.IO.Compression.ZipFile.dll + True True - + - + + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll + True True - + - + + ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll + False True - + - - ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll + + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll True True @@ -1079,8 +1159,8 @@ - - ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll + + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll False True @@ -1088,17 +1168,15 @@ - + - - ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll + True True - - @@ -1206,13 +1284,6 @@ - - - - True - - - @@ -1220,16 +1291,14 @@ - + - + True - - - - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll + True True @@ -1252,27 +1321,6 @@ - - - - True - - - - - - - True - - - - - - - True - - - @@ -1315,6 +1363,15 @@ + + + + ..\..\..\packages\System.Net.Sockets\lib\net46\System.Net.Sockets.dll + True + True + + + @@ -1486,6 +1543,24 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1495,7 +1570,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1504,7 +1579,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1513,6 +1588,24 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard2.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard2.0\System.Reflection.TypeExtensions.dll + False + True + + + @@ -1651,7 +1744,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1758,6 +1851,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1787,7 +1889,25 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netcoreapp2.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll + True + True + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1796,6 +1916,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard2.0\System.Security.Cryptography.Cng.dll + False + True + + + @@ -1809,6 +1947,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1820,7 +1967,16 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netcoreapp2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1829,7 +1985,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1838,8 +1994,35 @@ + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll + True + True + + + @@ -1860,6 +2043,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net46\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -2016,7 +2208,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll @@ -2025,6 +2217,15 @@ + + + + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll + True + True + + + @@ -2047,7 +2248,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -2098,27 +2299,7 @@ - - - - ..\..\..\packages\System.ValueTuple\lib\netstandard1.0\System.ValueTuple.dll - True - True - - - - - - - ..\..\..\packages\System.ValueTuple\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll - True - True - - - - - - + ..\..\..\packages\System.Web.Razor.Unofficial\lib\net40\System.Web.Razor.Unofficial.dll @@ -2129,11 +2310,16 @@ - + True + + ..\..\..\packages\System.Xml.ReaderWriter\lib\net46\System.Xml.ReaderWriter.dll + True + True + @@ -2165,13 +2351,6 @@ - - - - True - - - @@ -2221,4 +2400,6 @@ + + \ No newline at end of file diff --git a/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj b/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj index a608899dffc..648a8251cf8 100644 --- a/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj +++ b/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj @@ -71,6 +71,13 @@ + + + + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library + + + - + ..\..\..\packages\CsQuery\lib\net40\CsQuery.dll @@ -163,7 +170,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -181,7 +188,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll @@ -251,7 +258,7 @@ - + ..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -285,7 +292,7 @@ - + ..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -296,7 +303,7 @@ - + ..\..\..\packages\Microsoft.CSharp\ref\netstandard1.0\Microsoft.CSharp.dll @@ -305,8 +312,29 @@ + + + + ..\..\..\packages\Microsoft.CSharp\ref\netstandard2.0\Microsoft.CSharp.dll + False + True + + + + + + + True + + + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll + True + True + + + @@ -318,7 +346,7 @@ - + ..\..\..\packages\Nancy\lib\net40\Nancy.dll @@ -329,7 +357,7 @@ - + ..\..\..\packages\Nancy.Testing\lib\net40\Nancy.Testing.dll @@ -367,7 +395,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll @@ -403,7 +431,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net45+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -423,7 +451,7 @@ - + ..\..\..\packages\SSH.NET\lib\net40\Renci.SshNet.dll @@ -432,7 +460,7 @@ - + ..\..\..\packages\SSH.NET\lib\netstandard1.3\Renci.SshNet.dll @@ -459,6 +487,15 @@ + + + + ..\..\..\packages\SSH.NET\lib\uap10\Renci.SshNet.dll + True + True + + + @@ -535,6 +572,15 @@ + + + + ..\..\..\packages\System.AppContext\lib\net46\System.AppContext.dll + True + True + + + @@ -564,7 +610,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -573,6 +619,15 @@ + + + + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll + False + True + + + @@ -742,6 +797,15 @@ + + + + ..\..\..\packages\System.Console\lib\net46\System.Console.dll + True + True + + + @@ -853,7 +917,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\lib\netstandard1.3\System.Dynamic.Runtime.dll @@ -862,7 +926,7 @@ - + ..\..\..\packages\System.Dynamic.Runtime\ref\netstandard1.3\System.Dynamic.Runtime.dll @@ -893,6 +957,15 @@ + + + + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll + True + True + + + @@ -951,16 +1024,11 @@ - - - - True - - - - + + ..\..\..\packages\System.IO.Compression\lib\net46\System.IO.Compression.dll + True True @@ -974,7 +1042,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -983,40 +1051,44 @@ - + + + - + True - - - - - + + ..\..\..\packages\System.IO.Compression.ZipFile\lib\net46\System.IO.Compression.ZipFile.dll + True True - + - + + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll + True True - + - + + ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll + False True - + - - ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll + + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll True True @@ -1024,8 +1096,8 @@ - - ..\..\..\packages\System.IO.Compression.ZipFile\ref\netstandard1.3\System.IO.Compression.ZipFile.dll + + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll False True @@ -1033,17 +1105,15 @@ - + - - ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll + True True - - @@ -1151,13 +1221,6 @@ - - - - True - - - @@ -1165,16 +1228,11 @@ - - - - True - - - - + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll + True True @@ -1197,27 +1255,6 @@ - - - - True - - - - - - - True - - - - - - - True - - - @@ -1271,6 +1308,15 @@ + + + + ..\..\..\packages\System.Net.Sockets\lib\net46\System.Net.Sockets.dll + True + True + + + @@ -1442,6 +1488,24 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + @@ -1451,7 +1515,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1460,7 +1524,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -1469,12 +1533,19 @@ - - - + - - ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard2.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard2.0\System.Reflection.TypeExtensions.dll False True @@ -1482,13 +1553,17 @@ - + - + + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + False True + + @@ -1614,7 +1689,7 @@ - + ..\..\..\packages\System.Runtime.InteropServices.RuntimeInformation\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll @@ -1652,13 +1727,6 @@ - - - - True - - - @@ -1728,7 +1796,7 @@ - + ..\..\..\packages\System.Security.Claims\lib\netstandard1.3\System.Security.Claims.dll @@ -1737,7 +1805,7 @@ - + ..\..\..\packages\System.Security.Claims\ref\netstandard1.3\System.Security.Claims.dll @@ -1748,6 +1816,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1777,7 +1854,25 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netcoreapp2.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll + True + True + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1786,6 +1881,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard2.0\System.Security.Cryptography.Cng.dll + False + True + + + @@ -1799,6 +1912,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1810,7 +1932,16 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netcoreapp2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1819,7 +1950,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1828,8 +1959,35 @@ + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll + True + True + + + @@ -1850,6 +2008,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net46\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1870,7 +2037,7 @@ - + ..\..\..\packages\System.Security.Principal\lib\netstandard1.0\System.Security.Principal.dll @@ -1879,7 +2046,7 @@ - + ..\..\..\packages\System.Security.Principal\ref\netstandard1.0\System.Security.Principal.dll @@ -1890,7 +2057,16 @@ - + + + + ..\..\..\packages\System.Security.Principal.Windows\lib\netstandard1.3\System.Security.Principal.Windows.dll + True + True + + + + ..\..\..\packages\System.Security.Principal.Windows\ref\netstandard1.3\System.Security.Principal.Windows.dll @@ -1899,6 +2075,24 @@ + + + + ..\..\..\packages\System.Security.Principal.Windows\lib\netstandard2.0\System.Security.Principal.Windows.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Principal.Windows\ref\netstandard2.0\System.Security.Principal.Windows.dll + False + True + + + @@ -2037,7 +2231,7 @@ - + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll @@ -2046,6 +2240,15 @@ + + + + ..\..\..\packages\System.Threading.Tasks.Extensions\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll + True + True + + + @@ -2068,7 +2271,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -2119,26 +2322,15 @@ - + - - ..\..\..\packages\System.ValueTuple\lib\netstandard1.0\System.ValueTuple.dll - True - True - - - - - - - ..\..\..\packages\System.ValueTuple\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll + + ..\..\..\packages\System.Xml.ReaderWriter\lib\net46\System.Xml.ReaderWriter.dll True True - - @@ -2256,4 +2448,6 @@ + + \ No newline at end of file diff --git a/src/test/Test.Fake.Deploy/app.config b/src/test/Test.Fake.Deploy/app.config index 5a77411ebd6..be7d11ea1d8 100644 --- a/src/test/Test.Fake.Deploy/app.config +++ b/src/test/Test.Fake.Deploy/app.config @@ -125,10 +125,5 @@ - - True - - - diff --git a/src/test/Test.Git/Test.Git.csproj b/src/test/Test.Git/Test.Git.csproj index bfdec9041f4..f4162cd9327 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 @@ -118,7 +118,7 @@ - + ..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\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,6 +233,18 @@ + + + + True + + + ..\..\..\packages\Microsoft.Win32.Primitives\lib\net46\Microsoft.Win32.Primitives.dll + True + True + + + @@ -244,7 +256,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -253,6 +265,15 @@ + + + + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll + False + True + + + @@ -304,6 +325,15 @@ + + + + ..\..\..\packages\System.Console\lib\net46\System.Console.dll + True + True + + + @@ -415,6 +445,15 @@ + + + + ..\..\..\packages\System.Globalization.Calendars\lib\net46\System.Globalization.Calendars.dll + True + True + + + @@ -473,16 +512,11 @@ - - - - True - - - - + + ..\..\..\packages\System.IO.Compression\lib\net46\System.IO.Compression.dll + True True @@ -496,7 +530,7 @@ - + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -505,47 +539,37 @@ - - - - True - - - - - - - True - - - - + + + - + + ..\..\..\packages\System.IO.FileSystem\lib\net46\System.IO.FileSystem.dll + True True - + - + + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll + False True - + - - ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll - False + + ..\..\..\packages\System.IO.FileSystem.Primitives\lib\net46\System.IO.FileSystem.Primitives.dll + True True - - @@ -653,13 +677,6 @@ - - - - True - - - @@ -667,16 +684,11 @@ - - - - True - - - - + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll + True True @@ -699,27 +711,6 @@ - - - - True - - - - - - - True - - - - - - - True - - - @@ -922,6 +913,24 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + @@ -931,7 +940,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -940,7 +949,7 @@ - + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll @@ -949,12 +958,19 @@ - - - + - - ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard2.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard2.0\System.Reflection.TypeExtensions.dll False True @@ -962,13 +978,17 @@ - + - + + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll + False True + + @@ -1094,13 +1114,6 @@ - - - - True - - - @@ -1121,6 +1134,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1150,7 +1172,25 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netcoreapp2.0\System.Security.Cryptography.Cng.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard1.6\System.Security.Cryptography.Cng.dll + True + True + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard1.6\System.Security.Cryptography.Cng.dll @@ -1159,6 +1199,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Cng\lib\netstandard2.0\System.Security.Cryptography.Cng.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Cng\ref\netstandard2.0\System.Security.Cryptography.Cng.dll + False + True + + + @@ -1172,6 +1230,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1183,7 +1250,16 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netcoreapp2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1192,7 +1268,7 @@ - + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll @@ -1201,8 +1277,35 @@ + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\lib\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.OpenSsl\ref\netstandard2.0\System.Security.Cryptography.OpenSsl.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll + True + True + + + @@ -1223,6 +1326,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net46\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1379,7 +1491,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1429,24 +1541,4 @@ - - - - - ..\..\..\packages\System.ValueTuple\lib\netstandard1.0\System.ValueTuple.dll - True - True - - - - - - - ..\..\..\packages\System.ValueTuple\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll - True - True - - - - \ No newline at end of file diff --git a/src/test/Test.Git/app.config b/src/test/Test.Git/app.config index c105f78a8ce..92b8a02bf4b 100644 --- a/src/test/Test.Git/app.config +++ b/src/test/Test.Git/app.config @@ -129,10 +129,5 @@ - - True - - - From 3c67d32da0d0cfbede2a8e87204dcecb60527120 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 3 Sep 2017 13:26:15 +0200 Subject: [PATCH 02/25] update paket --- paket.dependencies | 4 ++-- paket.lock | 24 ++++++++++++------------ 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/paket.dependencies b/paket.dependencies index ade6cb68065..d2dfe68f9ae 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -1,4 +1,4 @@ -version 5.92.2 +version 5.92.3 content: none // just in case we need some special nuget feature again... //source https://ci.appveyor.com/nuget/paket @@ -102,7 +102,7 @@ group netcore storage: none framework: netstandard1.6, netcoreapp1.0 - nuget FSharp.Compiler.Service content: none + nuget FSharp.Compiler.Service storage: packages, content: none nuget Microsoft.DotNet.PlatformAbstractions nuget FSharp.Core ~> 4.1.2 nuget Microsoft.NETCore.App ~> 1.0 diff --git a/paket.lock b/paket.lock index 66989e88bd1..56762ccee14 100644 --- a/paket.lock +++ b/paket.lock @@ -224,7 +224,7 @@ NUGET NUnit.Extension.VSProjectLoader (3.6) Octokit (0.26) NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.1) - Paket.Core (5.92.2) + Paket.Core (5.92.3) Chessie (>= 0.6) FSharp.Compiler.Tools - restriction: < netstandard1.6 FSharp.Core - restriction: < netstandard1.6 @@ -1689,7 +1689,7 @@ NUGET Chessie (0.6) FSharp.Core (>= 4.0.1.7-alpha) NETStandard.Library (>= 1.6) - FSharp.Compiler.Service (14.0.2) - content: none + FSharp.Compiler.Service (14.0.2) - storage: packages, content: none FSharp.Core (>= 4.1.18) NETStandard.Library (>= 1.6.1) System.Collections.Immutable (>= 1.3) @@ -1911,7 +1911,7 @@ NUGET System.Runtime.Serialization.Formatters (>= 4.3) System.Runtime.Serialization.Primitives (>= 4.3) System.Xml.XmlDocument (>= 4.3) - Paket.Core (5.92.2) + Paket.Core (5.92.3) Chessie (>= 0.6) Mono.Cecil (>= 0.10.0-beta6) Newtonsoft.Json (>= 10.0.3) @@ -1952,7 +1952,7 @@ NUGET runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography (>= 4.3.1) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography (>= 4.3.1) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography (>= 4.3.1) - runtime.native.System.Security.Cryptography.Apple (4.3) - content: none + runtime.native.System.Security.Cryptography.Apple (4.3) - storage: packages, content: none runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) @@ -1970,7 +1970,7 @@ NUGET runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3) - content: none + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3) - storage: packages, content: none runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) runtime.rhel.7-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) @@ -2003,7 +2003,7 @@ NUGET System.Runtime.Extensions (>= 4.3) System.Threading (>= 4.3) System.Threading.Tasks (>= 4.3) - System.Collections.Immutable (1.4) - content: none + System.Collections.Immutable (1.4) - storage: packages, content: none NETStandard.Library (>= 1.6.1) System.Collections.NonGeneric (4.3) System.Diagnostics.Debug (>= 4.3) @@ -2397,7 +2397,7 @@ NUGET NETStandard.Library (>= 1.6.1) System.Reflection.Emit (>= 4.3) System.Reflection.Emit.ILGeneration (>= 4.3) - System.Reflection.Emit (4.3) - content: none + System.Reflection.Emit (4.3) - storage: packages, content: none System.IO (>= 4.3) System.Reflection (>= 4.3) System.Reflection.Emit.ILGeneration (>= 4.3) @@ -2417,14 +2417,14 @@ NUGET Microsoft.NETCore.Targets (>= 1.1) System.Reflection (>= 4.3) System.Runtime (>= 4.3) - System.Reflection.Metadata (1.5) - content: none + System.Reflection.Metadata (1.5) - storage: packages, content: none NETStandard.Library (>= 1.6.1) System.Collections.Immutable (>= 1.4) System.Reflection.Primitives (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) - System.Reflection.TypeExtensions (4.4) - content: none + System.Reflection.TypeExtensions (4.4) - storage: packages, content: none System.Reflection (>= 4.3) System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) @@ -2492,7 +2492,7 @@ NUGET System.Runtime (>= 4.3) System.Runtime.Extensions (>= 4.3) System.Security.Principal (>= 4.3) - System.Security.Cryptography.Algorithms (4.3) - content: none + System.Security.Cryptography.Algorithms (4.3) - storage: packages, content: none Microsoft.NETCore.Platforms (>= 1.1) runtime.native.System.Security.Cryptography.Apple (>= 4.3) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) @@ -2665,7 +2665,7 @@ NUGET Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) - System.ValueTuple (4.4) - content: none + System.ValueTuple (4.4) - storage: packages, content: none NETStandard.Library (>= 1.6.1) System.Xml.ReaderWriter (4.3) System.Collections (>= 4.3) @@ -3795,7 +3795,7 @@ 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) - Paket.Core (5.92.2) + Paket.Core (5.92.3) Chessie (>= 0.6) FSharp.Compiler.Tools - restriction: < netstandard1.6 FSharp.Core - restriction: < netstandard1.6 From 079b19a1a9f582999b521b205ed939ee589fed7b Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 3 Sep 2017 14:48:09 +0200 Subject: [PATCH 03/25] latest breaking changes from FCS --- src/app/Fake.Runtime/CompileRunner.fs | 3 +-- src/app/Fake.Runtime/Runners.fs | 3 --- src/app/FakeLib/FakeLib.fsproj | 22 +--------------------- src/app/FakeLib/FscHelper.fs | 10 +++++----- 4 files changed, 7 insertions(+), 31 deletions(-) diff --git a/src/app/Fake.Runtime/CompileRunner.fs b/src/app/Fake.Runtime/CompileRunner.fs index 454b6029446..618e275c122 100644 --- a/src/app/Fake.Runtime/CompileRunner.fs +++ b/src/app/Fake.Runtime/CompileRunner.fs @@ -15,7 +15,6 @@ open System.Threading open System.Text.RegularExpressions open System.Xml.Linq open Yaaf.FSharp.Scripting -open Microsoft.FSharp.Compiler.SimpleSourceCodeServices open Microsoft.FSharp.Compiler.SourceCodeServices open Microsoft.FSharp.Compiler @@ -133,4 +132,4 @@ please open a issue on FAKE and /cc @matthid ONLY IF this happens reproducibly) Error: %O""" cacheError runUncached context | _ -> - runUncached context \ No newline at end of file + runUncached context diff --git a/src/app/Fake.Runtime/Runners.fs b/src/app/Fake.Runtime/Runners.fs index cd2d787fce0..f911ed82cbd 100644 --- a/src/app/Fake.Runtime/Runners.fs +++ b/src/app/Fake.Runtime/Runners.fs @@ -14,9 +14,6 @@ open System.Threading open System.Text.RegularExpressions open System.Xml.Linq open Yaaf.FSharp.Scripting -open Microsoft.FSharp.Compiler.SimpleSourceCodeServices -open Microsoft.FSharp.Compiler.SourceCodeServices -open Microsoft.FSharp.Compiler diff --git a/src/app/FakeLib/FakeLib.fsproj b/src/app/FakeLib/FakeLib.fsproj index d208461f55c..f308c802f26 100644 --- a/src/app/FakeLib/FakeLib.fsproj +++ b/src/app/FakeLib/FakeLib.fsproj @@ -527,26 +527,6 @@ - - - - - ..\..\..\packages\FSharp.Compiler.Service\lib\net45\FSharp.Compiler.Service.dll - True - True - - - - - - - ..\..\..\packages\FSharp.Compiler.Service\lib\netstandard1.6\FSharp.Compiler.Service.dll - True - True - - - - @@ -3021,4 +3001,4 @@ - \ No newline at end of file + diff --git a/src/app/FakeLib/FscHelper.fs b/src/app/FakeLib/FscHelper.fs index 615688f7d5e..21e2548ef74 100644 --- a/src/app/FakeLib/FscHelper.fs +++ b/src/app/FakeLib/FscHelper.fs @@ -4,7 +4,7 @@ module Fake.FscHelper open System open Microsoft.FSharp.Compiler -open Microsoft.FSharp.Compiler.SimpleSourceCodeServices +open Microsoft.FSharp.Compiler.SourceCodeServices // OBSOLETE @@ -57,7 +57,7 @@ type FscParams = /// to behave the same way as would the command-line 'fsc.exe' tool. [] let fscList (srcFiles : string list) (opts : string list) : int = - let scs = SimpleSourceCodeServices() + let scs = FSharpChecker.Create() let optsArr = // If output file name is specified, pass it on to fsc. @@ -73,7 +73,7 @@ let fscList (srcFiles : string list) (opts : string list) : int = trace <| sprintf "FSC with args:%A" optsArr // Always prepend "fsc.exe" since fsc compiler skips the first argument let optsArr = Array.append [|"fsc.exe"|] optsArr - let errors, exitCode = scs.Compile(optsArr) + let errors, exitCode = scs.Compile(optsArr) |> Async.RunSynchronously // Better compile reporting thanks to: // https://github.com/jbtule/ComposableExtensions/blob/5b961b30668bb7f4d17238770869b5a884bc591f/tools/CompilerHelper.fsx#L233 for e in errors do @@ -450,7 +450,7 @@ type FscParam = /// given (i.e. the second argument is an empty list), by default tries /// to behave the same way as would the command-line 'fsc.exe' tool. let compileFiles (srcFiles : string list) (opts : string list) : int = - let scs = SimpleSourceCodeServices() + let scs = FSharpChecker.Create() let optsArr = // If output file name is specified, pass it on to fsc. @@ -466,7 +466,7 @@ let compileFiles (srcFiles : string list) (opts : string list) : int = trace <| sprintf "FSC with args:%A" optsArr // Always prepend "fsc.exe" since fsc compiler skips the first argument let optsArr = Array.append [|"fsc.exe"|] optsArr - let errors, exitCode = scs.Compile optsArr + let errors, exitCode = scs.Compile optsArr |> Async.RunSynchronously // Better compile reporting thanks to: // https://github.com/jbtule/ComposableExtensions/blob/5b961b30668bb7f4d17238770869b5a884bc591f/tools/CompilerHelper.fsx#L233 for e in errors do From 0f1d3407110070ee610c7adaffb6ee42a7b848af Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 3 Sep 2017 15:18:52 +0200 Subject: [PATCH 04/25] use system.net.http instead of microsoft.net.http --- paket.dependencies | 6 +- paket.lock | 272 ++++++----- src/app/FAKE/FAKE.fsproj | 98 +++- .../Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj | 432 ++++-------------- src/app/Fake.Deploy.Lib/paket.references | 2 +- src/app/Fake.Deploy/Fake.Deploy.fsproj | 98 +++- .../Fake.Experimental.fsproj | 118 ++++- .../Fake.FluentMigrator.fsproj | 118 ++++- src/app/Fake.Gallio/Fake.Gallio.fsproj | 118 ++++- src/app/Fake.IIS/Fake.IIS.fsproj | 118 ++++- src/app/Fake.SQL/Fake.SQL.fsproj | 118 ++++- src/app/FakeLib/FakeLib.fsproj | 120 ++++- src/app/FakeLib/paket.references | 3 +- .../Fake.Deploy.Web.Abstractions.fsproj | 115 ++++- .../Fake.Deploy.Web.File.fsproj | 98 +++- .../Fake.Deploy.Web.RavenDb.fsproj | 118 ++++- .../Fake.Deploy.Web/Fake.Deploy.Web.fsproj | 95 +++- .../Fake.Core.IntegrationTests.fsproj | 98 +++- src/test/FsCheck.Fake/FsCheck.Fake.fsproj | 98 +++- .../ProjectTestFiles/CSharpApp.csproj | 84 +++- .../ProjectTestFiles/FakeLib.fsproj | 118 ++++- .../ProjectTestFiles/FakeLib2.csproj | 118 ++++- .../ProjectTestFiles/FakeLib2.fsproj | 118 ++++- .../ProjectTestFiles/FakeLib3.csproj | 118 ++++- .../ProjectTestFiles/FakeLib3.fsproj | 118 ++++- .../ProjectTestFiles/FakeLib4.fsproj | 118 ++++- .../ProjectTestFiles/FakeLib5.fsproj | 118 ++++- .../ProjectTestFiles/FakeLib6.fsproj | 118 ++++- src/test/Test.FAKECore/Test.FAKECore.csproj | 130 +++++- .../TestData/fake_no_template.csproj | 130 +++++- .../Test.Fake.Deploy.Web.File.fsproj | 98 +++- .../Test.Fake.Deploy.Web.fsproj | 98 +++- .../Test.Fake.Deploy/Test.Fake.Deploy.csproj | 110 ++++- src/test/Test.Git/Test.Git.csproj | 130 +++++- 34 files changed, 3376 insertions(+), 591 deletions(-) diff --git a/paket.dependencies b/paket.dependencies index d2dfe68f9ae..c1bd66036be 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -47,7 +47,7 @@ nuget FluentMigrator.Runner nuget HashLib nuget FSharp.Compiler.Service content: none nuget Octokit -nuget Microsoft.Net.Http +nuget System.Net.Http nuget Microsoft.DotNet.PlatformAbstractions github matthid/Yaaf.FSharp.Scripting src/source/Yaaf.FSharp.Scripting/YaafFSharpScripting.fs @@ -94,7 +94,7 @@ group NetcoreBuild nuget Fake.DotNet.Testing.NUnit prerelease nuget Fake.Windows.Chocolatey prerelease nuget Fake.Tools.Git prerelease - nuget Mono.Cecil ~> 0.10.0 prerelease + nuget Mono.Cecil prerelease group netcore //source https://ci.appveyor.com/nuget/paket @@ -109,7 +109,7 @@ group netcore nuget NETStandard.Library ~> 1.0 nuget Argu nuget Paket.Core prerelease - nuget Mono.Cecil ~> 0.10.0 prerelease + nuget Mono.Cecil prerelease nuget System.Linq.Parallel nuget System.Diagnostics.FileVersionInfo diff --git a/paket.lock b/paket.lock index 56762ccee14..9d79542e8cd 100644 --- a/paket.lock +++ b/paket.lock @@ -86,9 +86,6 @@ NUGET Microsoft.AspNet.WebPages (2.0.30506) Microsoft.AspNet.Razor (>= 2.0.20710) Microsoft.Web.Infrastructure (>= 1.0) - Microsoft.Bcl (1.1.10) - Microsoft.Bcl.Build (>= 1.0.14) - Microsoft.Bcl.Build (1.0.21) - import_targets: false Microsoft.CompilerServices.AsyncTargetingPack (1.0.1) - restriction: < net45 Microsoft.CSharp (4.4) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) NETStandard.Library (>= 1.6.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -103,15 +100,12 @@ 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.Net.Http (2.2.29) - Microsoft.Bcl (>= 1.1.10) - Microsoft.Bcl.Build (>= 1.0.14) - Microsoft.NETCore.Platforms (2.0) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net35) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net45) (>= dnxcore50)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net451) (>= dnxcore50)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= wpa81)) (&& (>= netstandard1.0) (>= monoandroid) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= monoandroid)) (&& (>= netstandard1.1) (>= monoandroid) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) - Microsoft.NETCore.Targets (2.0) - restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< wp8) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win81) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net35) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.1) (< win8)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) + Microsoft.NETCore.Platforms (2.0) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net45) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= uap10.0) (>= dnxcore50) (&& (>= netstandard1.0) (>= monoandroid) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< monoandroid) (>= portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< netstandard1.0) (>= monoandroid)) (&& (>= netstandard1.1) (>= monoandroid) (< portable-net451+win81+wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.3) (>= wpa81)) (>= netstandard1.6) + Microsoft.NETCore.Targets (2.0) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< wp8) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win81) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win81) (< wpa81)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.1) (< win8)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< win81) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) Microsoft.Web.Administration (7.0) Microsoft.Web.Infrastructure (1.0) Microsoft.Web.Xdt (2.1.1) - Microsoft.Win32.Primitives (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -242,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.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - runtime.native.System (4.3) - restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.native.System (4.3) - restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.IO.Compression (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.native.System.IO.Compression (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Net.Http (4.3) - redirects: force, restriction: || (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.native.System.Net.Http (4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) runtime.native.System.Security.Cryptography.Apple (4.3) - content: none, restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) @@ -267,14 +261,14 @@ NUGET runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3) - content: none, restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) Serilog (1.5.14) serilog.sinks.nlog (1.5.4) NLog (>= 3.0) @@ -307,17 +301,17 @@ NUGET System.Security.Cryptography.Primitives (>= 4.0) - restriction: || (&& (< net20) (>= netstandard1.3)) (>= uap10.0) System.AppContext (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Buffers (4.4) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Buffers (4.4) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) 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) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Collections (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (>= uap10.0) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Collections.Concurrent (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Collections.Concurrent (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -373,11 +367,11 @@ NUGET System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Debug (4.3) - redirects: force, restriction: || (&& (< 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.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Diagnostics.Debug (4.3) - restriction: || (&& (< 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.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Diagnostics.DiagnosticSource (4.4.1) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac) System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netcoreapp2.0) (< xamarinmac)) @@ -431,7 +425,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Diagnostics.Tracing (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Diagnostics.Tracing (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) @@ -450,29 +444,29 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Globalization (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= uap10.0) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Globalization.Calendars (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Globalization.Calendars (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Globalization.Extensions (4.3) - redirects: force, restriction: || (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Globalization.Extensions (4.3) - restriction: || (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.IO (4.3) - redirects: force, restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46)) (&& (< net35) (>= net463)) (&& (< net35) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.0) (>= sl4)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.3) (>= wp71)) (&& (>= netstandard1.3) (>= sl4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.IO (4.3) - restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.4) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (< net46) (>= net461)) (&& (>= net461) (>= netstandard1.6)) (>= net463) (>= uap10.0) (>= dnxcore50) (&& (>= netstandard1.0) (>= sl4)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.3) (>= wp71)) (&& (>= netstandard1.3) (>= sl4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.IO.Compression (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.1) (>= monoandroid) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.IO.Compression (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.1) (>= monoandroid) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) runtime.native.System (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81) runtime.native.System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -509,7 +503,7 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net20) (>= net46) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Linq (4.3) - redirects: force, restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Linq (4.3) - redirects: force, restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.6) (< monoandroid) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) @@ -542,7 +536,7 @@ NUGET System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Net.Http (4.3.2) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.1) (>= monoandroid) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Net.Http (4.3.2) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81) runtime.native.System (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -563,12 +557,14 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Runtime.WindowsRuntime (>= 4.3) - restriction: >= dnxcore50 System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= net46) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Text.Encoding.Extensions (>= 4.3) - restriction: >= dnxcore50 System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Net.NameResolution (4.3) - restriction: && (< net35) (< uap10.0) (>= netstandard1.3) @@ -586,7 +582,7 @@ NUGET System.Security.Principal.Windows (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Net.Primitives (4.3) - redirects: force, restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Net.Primitives (4.3) - restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (>= dnxcore50) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.0) (< netstandard1.1) (< monoandroid) (< win8) (< wp8)) @@ -623,7 +619,7 @@ NUGET System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Reflection (4.3) - redirects: force, restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3)) (&& (>= net45) (>= dnxcore50)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) + System.Reflection (4.3) - redirects: force, restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) @@ -652,7 +648,7 @@ NUGET System.Reflection.Metadata (1.5) - content: none, restriction: || (>= net45) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Collections.Immutable (>= 1.4) - restriction: || (&& (>= netstandard1.1) (< netstandard2.0)) (&& (< netstandard1.1) (>= monoandroid)) (&& (< netstandard1.1) (< monoandroid) (>= portable-net45+win8)) (&& (>= netstandard2.0) (< netcoreapp2.0)) (>= monotouch) (>= xamarintvos) (>= xamarinwatchos) (>= xamarinios) (>= xamarinmac) (&& (< portable-net45+win8) (>= portable-net45+win8+wpa81)) - System.Reflection.Primitives (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) + System.Reflection.Primitives (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.2) (< win8)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) @@ -660,24 +656,24 @@ NUGET System.Reflection (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net46) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Resources.ResourceManager (4.3) - redirects: force, restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= net45) (>= dnxcore50)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Resources.ResourceManager (4.3) - restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= uap10.0) (>= dnxcore50) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wp8) (< wpa81)) (>= dnxcore50) - System.Runtime (4.3) - redirects: force, restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.2) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net463)) (&& (< net35) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net45) (>= dnxcore50)) (&& (< net45) (>= net462)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net462) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) + System.Runtime (4.3) - restriction: || (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.1) (>= netstandard1.2) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.4) (< monoandroid) (< win8)) (&& (< net20) (< netstandard1.1) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= net46) (>= netstandard1.4)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.2) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.4) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= netstandard1.6)) (&& (< net46) (>= net461)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net462) (>= netstandard1.6)) (>= net463) (>= uap10.0) (>= dnxcore50) (&& (< netstandard1.1) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< netstandard1.1) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.2) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.2) (< monoandroid) (< win8) (< wp8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.Extensions (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Runtime.Extensions (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (>= uap10.0) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) - System.Runtime.Handles (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net46) (>= netstandard1.5)) (&& (< net20) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) (>= netcoreapp1.1) + System.Runtime.Handles (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.4) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.InteropServices (4.3) - restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Runtime.InteropServices (4.3) - restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< monoandroid) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= dnxcore50) (>= netcoreapp1.1) @@ -696,7 +692,7 @@ NUGET System.IO (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Reflection (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (< net462) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Runtime.Numerics (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Runtime.Numerics (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -710,6 +706,7 @@ NUGET System.Runtime.Serialization.Primitives (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.4) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Runtime.WindowsRuntime (4.3) - restriction: >= dnxcore50 System.Security.AccessControl (4.4) - restriction: || (&& (>= net461) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6) (>= monoandroid)) (>= netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 System.Security.Principal.Windows (>= 4.4) - restriction: || (>= netstandard1.3) (>= monoandroid) @@ -721,7 +718,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Runtime.Extensions (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Security.Principal (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Algorithms (4.3) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net20) (>= net46) (>= netstandard1.5)) (&& (< net20) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net461) (< netstandard1.3)) (&& (< net20) (>= net461) (>= netstandard1.5)) (&& (< net20) (>= net461) (< netstandard1.5)) (&& (< net20) (>= net461) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (>= uap10.0)) (&& (>= net461) (>= dnxcore50)) (&& (>= net461) (< netstandard1.3) (>= monoandroid)) (&& (>= net461) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (>= netstandard1.6) + System.Security.Cryptography.Algorithms (4.3) - content: none, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< monoandroid)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< monoandroid)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< netstandard1.4)) (>= dnxcore50) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) runtime.native.System.Security.Cryptography.Apple (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -736,7 +733,8 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= net463) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Cng (4.4) - redirects: force, restriction: || (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Security.Cryptography.Cng (4.4) - restriction: || (&& (>= net46) (>= netstandard1.6)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Runtime (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) @@ -747,7 +745,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Text.Encoding (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Csp (4.3) - restriction: || (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Security.Cryptography.Csp (4.3) - restriction: || (&& (< net35) (>= netstandard1.3)) (&& (>= net46) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Reflection (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -761,7 +759,7 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= net46) (&& (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Encoding (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net20) (>= net46) (>= netstandard1.5)) (&& (< net20) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net461) (< netstandard1.3)) (&& (< net20) (>= net461) (>= netstandard1.5)) (&& (< net20) (>= net461) (< netstandard1.5)) (&& (< net20) (>= net461) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= uap10.0)) (&& (>= net461) (>= dnxcore50)) (&& (>= net461) (< netstandard1.3) (>= monoandroid)) (&& (>= net461) (< netstandard1.4)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (>= net461) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (< netstandard1.4)) (&& (>= uap10.0) (>= netstandard1.6)) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Collections (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -774,7 +772,7 @@ NUGET System.Runtime.InteropServices (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.OpenSsl (4.4) - redirects: force, restriction: || (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Security.Cryptography.OpenSsl (4.4) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 System.Collections (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -788,7 +786,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Text.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.Primitives (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net461) (< netstandard1.3)) (&& (< net20) (>= net461) (>= netstandard1.5)) (&& (< net20) (>= net461) (< netstandard1.5)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= net46)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= dnxcore50)) (&& (>= net461) (< netstandard1.3) (>= monoandroid)) (&& (>= net461) (< netstandard1.4)) (&& (>= net461) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.3) (>= wp71)) (&& (>= netstandard1.3) (>= sl4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (>= net461) (>= uap10.0) (>= dnxcore50) (&& (>= netstandard1.3) (>= wp71)) (&& (>= netstandard1.3) (>= sl4)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Globalization (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.IO (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -798,7 +796,7 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Security.Cryptography.ProtectedData (4.4) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.X509Certificates (4.3) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net20) (>= net46) (>= netstandard1.5)) (&& (< net20) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< win8) (< portable-net451+win81+wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.3) (>= monoandroid)) (&& (>= net46) (< netstandard1.4)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= monoandroid) (< portable-net451+win81+wpa81)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.3) (>= monoandroid) (< portable-net451+win81+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Security.Cryptography.X509Certificates (4.3) - restriction: || (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (>= net46) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) runtime.native.System (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) runtime.native.System.Net.Http (>= 4.3) - restriction: && (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) @@ -841,15 +839,11 @@ NUGET System.Security.Principal (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Text.Encoding (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) - System.Text.Encoding (4.3) - redirects: force, restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net463) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding.Extensions (4.3) - redirects: force, restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Text.Encoding (4.3) - restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monoandroid) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) + System.Text.Encoding.Extensions (4.3) - restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Text.RegularExpressions (4.3) - redirects: force, restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net35) (< uap10.0) (>= netstandard1.3)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) @@ -857,10 +851,10 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (>= netcoreapp1.1) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< netcoreapp1.1) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Threading (4.3) - redirects: force, restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= net45) (>= dnxcore50)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= net451) (>= dnxcore50)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= uap10.0) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= wpa81)) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Threading (4.3) - restriction: || (&& (< net20) (>= net45) (< portable-net451+win81+wpa81)) (&& (< net20) (>= net451) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< monoandroid) (< win8)) (&& (< net20) (>= netstandard1.1) (< portable-net451+win81+wpa81)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= net46) (< netstandard1.4)) (&& (< net35) (>= net461)) (&& (< net35) (>= netstandard1.3)) (&& (< net35) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (>= net46) (>= netstandard1.6)) (&& (>= net461) (>= netstandard1.6)) (>= uap10.0) (>= dnxcore50) (&& (< netstandard1.0) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) - System.Threading.Tasks (4.3) - redirects: force, restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (>= dnxcore50)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) + System.Threading.Tasks (4.3) - restriction: || (&& (< 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) (< netstandard1.3) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net451+win81+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< monoandroid) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.5) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net451+win81+wpa81)) (&& (< net35) (< uap10.0) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net35) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.5) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.6) (< monoandroid) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (< net45) (< netstandard1.3) (>= netstandard1.5) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< monoandroid)) (&& (< net45) (>= netstandard1.5) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) (&& (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= uap10.0) (< uap10.1)) (&& (>= uap10.0) (< netstandard1.3)) (&& (>= uap10.0) (>= netstandard1.5)) (&& (>= uap10.0) (>= netstandard1.6)) (&& (>= uap10.0) (< win8) (< wpa81)) (>= dnxcore50) (&& (< netstandard1.3) (>= netstandard1.6)) (&& (< netstandard1.4) (>= netstandard1.6) (< monoandroid)) (&& (< netstandard1.5) (>= netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< xamarinmac)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< portable-net451+win81+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.0) (< netstandard1.3) (< monoandroid) (< win8) (< wp8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac) (< win8) (< wpa81)) (>= dnxcore50) @@ -1725,9 +1719,9 @@ NUGET System.Threading.Thread (>= 4.0) System.Threading.ThreadPool (>= 4.0.10) System.Threading.Timer (>= 4.0.1) - Libuv (1.10) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Libuv (1.10) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.NETCore.Platforms (>= 1.0.1) - Microsoft.CodeAnalysis.Analyzers (1.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.CodeAnalysis.Analyzers (1.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.CodeAnalysis.Common (2.3.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.CodeAnalysis.Analyzers (>= 1.1) System.AppContext (>= 4.3) @@ -1768,9 +1762,9 @@ NUGET System.Xml.XDocument (>= 4.3) System.Xml.XmlDocument (>= 4.3) System.Xml.XPath.XDocument (>= 4.3) - Microsoft.CodeAnalysis.CSharp (2.3.2) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.CodeAnalysis.CSharp (2.3.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.CodeAnalysis.Common (2.3.2) - Microsoft.CodeAnalysis.VisualBasic (2.3.2) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.CodeAnalysis.VisualBasic (2.3.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.CodeAnalysis.Common (>= 2.3.2) Microsoft.CSharp (4.4) NETStandard.Library (>= 1.6.1) @@ -1786,61 +1780,61 @@ NUGET System.Runtime.InteropServices (>= 4.1) System.Runtime.InteropServices.RuntimeInformation (>= 4.0) Microsoft.NETCore.App (1.1.2) - Libuv (>= 1.9.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.CodeAnalysis.CSharp (>= 1.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.CodeAnalysis.VisualBasic (>= 1.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.CSharp (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.NETCore.DotNetHostPolicy (>= 1.0.5) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.NETCore.Platforms (>= 1.0.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.NETCore.Runtime.CoreCLR (>= 1.0.7) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.VisualBasic (>= 10.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - NETStandard.Library (>= 1.6) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - runtime.native.System.Security.Cryptography (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Buffers (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Collections.Immutable (>= 1.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.ComponentModel (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.ComponentModel.Annotations (>= 4.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Diagnostics.DiagnosticSource (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Diagnostics.Process (>= 4.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Dynamic.Runtime (>= 4.0.11) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Globalization.Extensions (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.IO.FileSystem.Watcher (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.IO.MemoryMappedFiles (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.IO.UnmanagedMemoryStream (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Linq.Expressions (>= 4.1.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Linq.Parallel (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Linq.Queryable (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Net.Http (>= 4.1.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Net.NameResolution (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Net.Requests (>= 4.0.11) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Net.Security (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Net.WebHeaderCollection (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Numerics.Vectors (>= 4.1.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Reflection.DispatchProxy (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Reflection.Metadata (>= 1.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Resources.Reader (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Runtime.Loader (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Security.Cryptography.Algorithms (>= 4.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Security.Cryptography.Encoding (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Security.Cryptography.Primitives (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Security.Cryptography.X509Certificates (>= 4.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Threading.Tasks.Dataflow (>= 4.6) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Threading.Tasks.Extensions (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Threading.Thread (>= 4.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Threading.ThreadPool (>= 4.0.10) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.NETCore.DotNetAppHost (2.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.NETCore.DotNetHostPolicy (2.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Libuv (>= 1.9.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.CodeAnalysis.CSharp (>= 1.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.CodeAnalysis.VisualBasic (>= 1.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.CSharp (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.NETCore.DotNetHostPolicy (>= 1.0.5) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.NETCore.Platforms (>= 1.0.2) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.NETCore.Runtime.CoreCLR (>= 1.0.7) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.VisualBasic (>= 10.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + NETStandard.Library (>= 1.6) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + runtime.native.System.Security.Cryptography (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Buffers (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Collections.Immutable (>= 1.2) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.ComponentModel (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.ComponentModel.Annotations (>= 4.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Diagnostics.DiagnosticSource (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Diagnostics.Process (>= 4.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Dynamic.Runtime (>= 4.0.11) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Globalization.Extensions (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.IO.FileSystem.Watcher (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.IO.MemoryMappedFiles (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.IO.UnmanagedMemoryStream (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Linq.Expressions (>= 4.1.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Linq.Parallel (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Linq.Queryable (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Net.Http (>= 4.1.2) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Net.NameResolution (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Net.Requests (>= 4.0.11) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Net.Security (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Net.WebHeaderCollection (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Numerics.Vectors (>= 4.1.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Reflection.DispatchProxy (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Reflection.Metadata (>= 1.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Resources.Reader (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Runtime.Loader (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Security.Cryptography.Algorithms (>= 4.2) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Security.Cryptography.Encoding (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Security.Cryptography.Primitives (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Security.Cryptography.X509Certificates (>= 4.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Threading.Tasks.Dataflow (>= 4.6) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Threading.Tasks.Extensions (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Threading.Thread (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Threading.ThreadPool (>= 4.0.10) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.NETCore.DotNetAppHost (2.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.NETCore.DotNetHostPolicy (2.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.NETCore.DotNetHostResolver (>= 2.0) - Microsoft.NETCore.DotNetHostResolver (2.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.NETCore.DotNetHostResolver (2.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.NETCore.DotNetAppHost (>= 2.0) - Microsoft.NETCore.Jit (2.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.NETCore.Jit (2.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.NETCore.Platforms (2.0) - Microsoft.NETCore.Runtime.CoreCLR (2.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.NETCore.Runtime.CoreCLR (2.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.NETCore.Jit (>= 2.0) Microsoft.NETCore.Targets (2.0) - Microsoft.VisualBasic (10.2) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.VisualBasic (10.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) NETStandard.Library (>= 1.6.1) System.Dynamic.Runtime (>= 4.3) System.Reflection.TypeExtensions (>= 4.3) @@ -1923,11 +1917,11 @@ NUGET System.Xml.XDocument (>= 4.3) System.Xml.XPath.XDocument (>= 4.3) System.Xml.XPath.XmlDocument (>= 4.3) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) runtime.native.System (4.3) Microsoft.NETCore.Platforms (>= 1.1) @@ -1938,10 +1932,10 @@ NUGET runtime.native.System.Net.Http (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Net.Security (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + runtime.native.System.Net.Security (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.debian.8-x64.runtime.native.System.Security.Cryptography (>= 4.3.1) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography (>= 4.3.1) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography (>= 4.3.1) @@ -1965,20 +1959,20 @@ NUGET runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3) - storage: packages, content: none runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) System.AppContext (4.3) System.Runtime (>= 4.3) @@ -2022,7 +2016,7 @@ NUGET System.Threading (>= 4.3) System.ComponentModel (4.3) System.Runtime (>= 4.3) - System.ComponentModel.Annotations (4.4) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.ComponentModel.Annotations (4.4) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) NETStandard.Library (>= 1.6.1) System.ComponentModel (>= 4.3) System.ComponentModel.Primitives (4.3) @@ -2095,7 +2089,7 @@ NUGET System.Threading.Tasks (>= 4.3) System.Threading.Thread (>= 4.3) System.Threading.ThreadPool (>= 4.3) - System.Diagnostics.StackTrace (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Diagnostics.StackTrace (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) System.IO.FileSystem (>= 4.3) System.Reflection (>= 4.3) System.Reflection.Metadata (>= 1.4.1) @@ -2192,7 +2186,7 @@ NUGET System.Threading.Tasks (>= 4.3) System.IO.FileSystem.Primitives (4.3) System.Runtime (>= 4.3) - System.IO.FileSystem.Watcher (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.IO.FileSystem.Watcher (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.Win32.Primitives (>= 4.3) runtime.native.System (>= 4.3) @@ -2209,7 +2203,7 @@ NUGET System.Threading.Overlapped (>= 4.3) System.Threading.Tasks (>= 4.3) System.Threading.Thread (>= 4.3) - System.IO.MemoryMappedFiles (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.IO.MemoryMappedFiles (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.NETCore.Platforms (>= 1.1) runtime.native.System (>= 4.3) System.IO (>= 4.3) @@ -2304,7 +2298,7 @@ NUGET System.Text.Encoding (>= 4.3) System.Threading (>= 4.3) System.Threading.Tasks (>= 4.3) - System.Net.NameResolution (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Net.NameResolution (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.NETCore.Platforms (>= 1.1) runtime.native.System (>= 4.3) System.Collections (>= 4.3) @@ -2338,7 +2332,7 @@ NUGET System.Runtime (>= 4.3) System.Threading (>= 4.3) System.Threading.Tasks (>= 4.3) - System.Net.Security (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Net.Security (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.Win32.Primitives (>= 4.3) runtime.native.System (>= 4.3) @@ -2379,7 +2373,7 @@ NUGET System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) System.Runtime.Extensions (>= 4.3) - System.Numerics.Vectors (4.4) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Numerics.Vectors (4.4) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) NETStandard.Library (>= 1.6.1) System.ObjectModel (4.3) System.Collections (>= 4.3) @@ -2393,7 +2387,7 @@ NUGET System.IO (>= 4.3) System.Reflection.Primitives (>= 4.3) System.Runtime (>= 4.3) - System.Reflection.DispatchProxy (4.4) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Reflection.DispatchProxy (4.4) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) NETStandard.Library (>= 1.6.1) System.Reflection.Emit (>= 4.3) System.Reflection.Emit.ILGeneration (>= 4.3) @@ -2428,7 +2422,7 @@ NUGET System.Reflection (>= 4.3) System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) - System.Resources.Reader (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Resources.Reader (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) System.IO (>= 4.3) System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) @@ -2596,7 +2590,7 @@ NUGET System.Threading (>= 4.3) System.Security.Principal (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) System.Runtime (>= 4.3) - System.Security.Principal.Windows (4.4) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Security.Principal.Windows (4.4) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.Win32.Primitives (>= 4.3) System.Collections (>= 4.3) System.Diagnostics.Debug (>= 4.3) @@ -2614,7 +2608,7 @@ NUGET Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) - System.Text.Encoding.CodePages (4.4) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Text.Encoding.CodePages (4.4) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) NETStandard.Library (>= 1.6.1) System.Text.Encoding.Extensions (4.3) Microsoft.NETCore.Platforms (>= 1.1) @@ -2631,7 +2625,7 @@ NUGET System.Threading (4.3) System.Runtime (>= 4.3) System.Threading.Tasks (>= 4.3) - System.Threading.Overlapped (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Threading.Overlapped (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) Microsoft.NETCore.Platforms (>= 1.1) System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) @@ -2640,7 +2634,7 @@ NUGET Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) - System.Threading.Tasks.Dataflow (4.8) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Threading.Tasks.Dataflow (4.8) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) NETStandard.Library (>= 1.6.1) System.Dynamic.Runtime (>= 4.3) System.Threading.Tasks.Extensions (4.4) diff --git a/src/app/FAKE/FAKE.fsproj b/src/app/FAKE/FAKE.fsproj index 0cbec3b24e4..362710e6cd7 100644 --- a/src/app/FAKE/FAKE.fsproj +++ b/src/app/FAKE/FAKE.fsproj @@ -511,6 +511,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -744,14 +753,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -778,6 +808,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -1076,6 +1127,18 @@ + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1268,6 +1331,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1355,7 +1436,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1422,7 +1503,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1460,6 +1541,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + diff --git a/src/app/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj b/src/app/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj index 3639c7aa7e6..00d2514bf56 100644 --- a/src/app/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj +++ b/src/app/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj @@ -190,141 +190,6 @@ - - - - - ..\..\..\packages\Microsoft.Bcl\lib\net40\System.IO.dll - True - True - - - ..\..\..\packages\Microsoft.Bcl\lib\net40\System.Runtime.dll - True - True - - - ..\..\..\packages\Microsoft.Bcl\lib\net40\System.Threading.Tasks.dll - True - True - - - - - - - ..\..\..\packages\Microsoft.Bcl\lib\portable-net40+sl4+win8\System.IO.dll - True - True - - - ..\..\..\packages\Microsoft.Bcl\lib\portable-net40+sl4+win8\System.Runtime.dll - True - True - - - ..\..\..\packages\Microsoft.Bcl\lib\portable-net40+sl4+win8\System.Threading.Tasks.dll - True - True - - - - - - - ..\..\..\packages\Microsoft.Bcl\lib\portable-net40+win8\System.IO.dll - True - True - - - ..\..\..\packages\Microsoft.Bcl\lib\portable-net40+win8\System.Runtime.dll - True - True - - - ..\..\..\packages\Microsoft.Bcl\lib\portable-net40+win8\System.Threading.Tasks.dll - True - True - - - - - - - ..\..\..\packages\Microsoft.Bcl\lib\portable-net40+win8+wp8+wpa81\System.IO.dll - True - True - - - ..\..\..\packages\Microsoft.Bcl\lib\portable-net40+win8+wp8+wpa81\System.Runtime.dll - True - True - - - ..\..\..\packages\Microsoft.Bcl\lib\portable-net40+win8+wp8+wpa81\System.Threading.Tasks.dll - True - True - - - - - - - ..\..\..\packages\Microsoft.Bcl\lib\sl4\System.IO.dll - True - True - - - ..\..\..\packages\Microsoft.Bcl\lib\sl4\System.Runtime.dll - True - True - - - ..\..\..\packages\Microsoft.Bcl\lib\sl4\System.Threading.Tasks.dll - True - True - - - - - - - ..\..\..\packages\Microsoft.Bcl\lib\sl4-windowsphone71\System.IO.dll - True - True - - - ..\..\..\packages\Microsoft.Bcl\lib\sl4-windowsphone71\System.Runtime.dll - True - True - - - ..\..\..\packages\Microsoft.Bcl\lib\sl4-windowsphone71\System.Threading.Tasks.dll - True - True - - - - - - - ..\..\..\packages\Microsoft.Bcl\lib\sl5\System.IO.dll - True - True - - - ..\..\..\packages\Microsoft.Bcl\lib\sl5\System.Runtime.dll - True - True - - - ..\..\..\packages\Microsoft.Bcl\lib\sl5\System.Threading.Tasks.dll - True - True - - - - @@ -398,200 +263,6 @@ - - - - - True - - - - - - - - - ..\..\..\packages\Microsoft.Net.Http\lib\Xamarin.iOS10\System.Net.Http.Extensions.dll - True - True - - - ..\..\..\packages\Microsoft.Net.Http\lib\Xamarin.iOS10\System.Net.Http.Primitives.dll - True - True - - - - - - - True - - - ..\..\..\packages\Microsoft.Net.Http\lib\monoandroid\System.Net.Http.Extensions.dll - True - True - - - ..\..\..\packages\Microsoft.Net.Http\lib\monoandroid\System.Net.Http.Primitives.dll - True - True - - - - - - - True - - - ..\..\..\packages\Microsoft.Net.Http\lib\monotouch\System.Net.Http.Extensions.dll - True - True - - - ..\..\..\packages\Microsoft.Net.Http\lib\monotouch\System.Net.Http.Primitives.dll - True - True - - - - - - - ..\..\..\packages\Microsoft.Net.Http\lib\net40\System.Net.Http.dll - True - True - - - ..\..\..\packages\Microsoft.Net.Http\lib\net40\System.Net.Http.Extensions.dll - True - True - - - ..\..\..\packages\Microsoft.Net.Http\lib\net40\System.Net.Http.Primitives.dll - True - True - - - ..\..\..\packages\Microsoft.Net.Http\lib\net40\System.Net.Http.WebRequest.dll - True - True - - - - - - - True - - - ..\..\..\packages\Microsoft.Net.Http\lib\net45\System.Net.Http.Extensions.dll - True - True - - - ..\..\..\packages\Microsoft.Net.Http\lib\net45\System.Net.Http.Primitives.dll - True - True - - - - - - - ..\..\..\packages\Microsoft.Net.Http\lib\portable-net40+sl4+win8+wp71+wpa81\System.Net.Http.dll - True - True - - - ..\..\..\packages\Microsoft.Net.Http\lib\portable-net40+sl4+win8+wp71+wpa81\System.Net.Http.Extensions.dll - True - True - - - ..\..\..\packages\Microsoft.Net.Http\lib\portable-net40+sl4+win8+wp71+wpa81\System.Net.Http.Primitives.dll - True - True - - - - - - - ..\..\..\packages\Microsoft.Net.Http\lib\portable-net45+win8\System.Net.Http.Extensions.dll - True - True - - - ..\..\..\packages\Microsoft.Net.Http\lib\portable-net45+win8\System.Net.Http.Primitives.dll - True - True - - - - - - - ..\..\..\packages\Microsoft.Net.Http\lib\portable-net45+win8+wpa81\System.Net.Http.Extensions.dll - True - True - - - ..\..\..\packages\Microsoft.Net.Http\lib\portable-net45+win8+wpa81\System.Net.Http.Primitives.dll - True - True - - - - - - - ..\..\..\packages\Microsoft.Net.Http\lib\sl4-windowsphone71\System.Net.Http.dll - True - True - - - ..\..\..\packages\Microsoft.Net.Http\lib\sl4-windowsphone71\System.Net.Http.Extensions.dll - True - True - - - ..\..\..\packages\Microsoft.Net.Http\lib\sl4-windowsphone71\System.Net.Http.Primitives.dll - True - True - - - - - - - ..\..\..\packages\Microsoft.Net.Http\lib\win8\System.Net.Http.Extensions.dll - True - True - - - ..\..\..\packages\Microsoft.Net.Http\lib\win8\System.Net.Http.Primitives.dll - True - True - - - - - - - ..\..\..\packages\Microsoft.Net.Http\lib\wpa81\System.Net.Http.Extensions.dll - True - True - - - ..\..\..\packages\Microsoft.Net.Http\lib\wpa81\System.Net.Http.Primitives.dll - True - True - - - - @@ -1233,6 +904,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -1466,7 +1146,35 @@ - + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1493,6 +1201,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -1802,6 +1531,18 @@ + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -2063,6 +1804,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -2150,7 +1909,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -2217,7 +1976,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -2255,6 +2014,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + diff --git a/src/app/Fake.Deploy.Lib/paket.references b/src/app/Fake.Deploy.Lib/paket.references index 653b545b435..65dfdc2da30 100644 --- a/src/app/Fake.Deploy.Lib/paket.references +++ b/src/app/Fake.Deploy.Lib/paket.references @@ -1,4 +1,4 @@ FSharp.Core Newtonsoft.Json SSH.NET -Microsoft.Net.Http \ No newline at end of file +System.Net.Http diff --git a/src/app/Fake.Deploy/Fake.Deploy.fsproj b/src/app/Fake.Deploy/Fake.Deploy.fsproj index 6459e4120b8..cef5b377381 100644 --- a/src/app/Fake.Deploy/Fake.Deploy.fsproj +++ b/src/app/Fake.Deploy/Fake.Deploy.fsproj @@ -1079,6 +1079,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -1312,14 +1321,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1346,6 +1376,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -1655,6 +1706,18 @@ + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1916,6 +1979,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -2003,7 +2084,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -2070,7 +2151,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -2108,6 +2189,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + diff --git a/src/app/Fake.Experimental/Fake.Experimental.fsproj b/src/app/Fake.Experimental/Fake.Experimental.fsproj index f1da5b98e9d..1ca0b416d53 100644 --- a/src/app/Fake.Experimental/Fake.Experimental.fsproj +++ b/src/app/Fake.Experimental/Fake.Experimental.fsproj @@ -416,6 +416,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -617,14 +626,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -651,6 +681,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -929,6 +980,18 @@ + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1083,6 +1146,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1170,7 +1251,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1237,7 +1318,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1275,6 +1356,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1314,6 +1404,26 @@ + + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + diff --git a/src/app/Fake.FluentMigrator/Fake.FluentMigrator.fsproj b/src/app/Fake.FluentMigrator/Fake.FluentMigrator.fsproj index 31bddae5f3c..f908c34f8de 100644 --- a/src/app/Fake.FluentMigrator/Fake.FluentMigrator.fsproj +++ b/src/app/Fake.FluentMigrator/Fake.FluentMigrator.fsproj @@ -457,6 +457,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -658,14 +667,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -692,6 +722,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -970,6 +1021,18 @@ + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1124,6 +1187,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1211,7 +1292,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1278,7 +1359,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1316,6 +1397,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1355,6 +1445,26 @@ + + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + diff --git a/src/app/Fake.Gallio/Fake.Gallio.fsproj b/src/app/Fake.Gallio/Fake.Gallio.fsproj index 7a8e69061e7..4ffc985423f 100644 --- a/src/app/Fake.Gallio/Fake.Gallio.fsproj +++ b/src/app/Fake.Gallio/Fake.Gallio.fsproj @@ -427,6 +427,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -628,14 +637,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -662,6 +692,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -940,6 +991,18 @@ + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1094,6 +1157,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1181,7 +1262,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1248,7 +1329,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1286,6 +1367,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1325,6 +1415,26 @@ + + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + diff --git a/src/app/Fake.IIS/Fake.IIS.fsproj b/src/app/Fake.IIS/Fake.IIS.fsproj index 48dd68c2b5b..1edf4681eae 100644 --- a/src/app/Fake.IIS/Fake.IIS.fsproj +++ b/src/app/Fake.IIS/Fake.IIS.fsproj @@ -433,6 +433,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -634,14 +643,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -668,6 +698,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -946,6 +997,18 @@ + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1100,6 +1163,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1187,7 +1268,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1254,7 +1335,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1292,6 +1373,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1331,6 +1421,26 @@ + + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + diff --git a/src/app/Fake.SQL/Fake.SQL.fsproj b/src/app/Fake.SQL/Fake.SQL.fsproj index d0301404d87..daac2ce44c2 100644 --- a/src/app/Fake.SQL/Fake.SQL.fsproj +++ b/src/app/Fake.SQL/Fake.SQL.fsproj @@ -440,6 +440,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -641,14 +650,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -675,6 +705,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -953,6 +1004,18 @@ + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1107,6 +1170,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1194,7 +1275,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1261,7 +1342,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1299,6 +1380,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1338,6 +1428,26 @@ + + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + diff --git a/src/app/FakeLib/FakeLib.fsproj b/src/app/FakeLib/FakeLib.fsproj index f308c802f26..1fc75c1267e 100644 --- a/src/app/FakeLib/FakeLib.fsproj +++ b/src/app/FakeLib/FakeLib.fsproj @@ -527,6 +527,26 @@ + + + + + ..\..\..\packages\FSharp.Compiler.Service\lib\net45\FSharp.Compiler.Service.dll + True + True + + + + + + + ..\..\..\packages\FSharp.Compiler.Service\lib\netstandard1.6\FSharp.Compiler.Service.dll + True + True + + + + @@ -1412,6 +1432,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -1645,14 +1674,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1679,6 +1729,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -1997,6 +2068,18 @@ + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -2298,6 +2381,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -2385,7 +2486,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -2452,7 +2553,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -2528,6 +2629,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -3001,4 +3111,4 @@ - + \ No newline at end of file diff --git a/src/app/FakeLib/paket.references b/src/app/FakeLib/paket.references index 5b7a03305eb..0408c19743a 100644 --- a/src/app/FakeLib/paket.references +++ b/src/app/FakeLib/paket.references @@ -4,8 +4,9 @@ Mono.Web.Xdt Mono.Cecil Nuget.Core Newtonsoft.Json +System.Net.Http HashLib FSharp.Compiler.Service exclude FSharp.Compiler.Service.MSBuild.*.dll exclude FSharp.Compiler.Service.MSBuild.v12.dll -File:YaafFSharpScripting.fs \ No newline at end of file +File:YaafFSharpScripting.fs 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 fc82e3b69aa..a37fc5c8d8a 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 @@ -410,6 +410,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -611,14 +620,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -645,6 +675,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -923,6 +974,15 @@ + + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1077,6 +1137,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1164,7 +1242,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1231,7 +1309,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1269,6 +1347,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1308,6 +1395,26 @@ + + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + 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 e566a449b2b..1cd8653e036 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 @@ -755,6 +755,15 @@ + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -988,14 +997,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1022,6 +1052,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -1320,6 +1371,18 @@ + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1561,6 +1624,24 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1648,7 +1729,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1715,7 +1796,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1753,6 +1834,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.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 7c105acd881..a5e53a9c174 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 @@ -483,6 +483,15 @@ + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -684,14 +693,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -718,6 +748,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -996,6 +1047,18 @@ + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1150,6 +1213,24 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1237,7 +1318,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1304,7 +1385,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1342,6 +1423,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1381,6 +1471,26 @@ + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + 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 e6abb888717..aebab6bdac9 100644 --- a/src/deploy.web/Fake.Deploy.Web/Fake.Deploy.Web.fsproj +++ b/src/deploy.web/Fake.Deploy.Web/Fake.Deploy.Web.fsproj @@ -1051,6 +1051,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -1284,14 +1293,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + True @@ -1321,6 +1351,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -1619,6 +1670,15 @@ + + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1860,6 +1920,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1947,7 +2025,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -2014,7 +2092,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -2052,6 +2130,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.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 648a8251cf8..0cb88cf674e 100644 --- a/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj +++ b/src/test/Fake.Core.IntegrationTests/Fake.Core.IntegrationTests.fsproj @@ -535,6 +535,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -768,14 +777,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -802,6 +832,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -1100,6 +1151,18 @@ + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1312,6 +1375,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1399,7 +1480,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1466,7 +1547,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1504,6 +1585,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + diff --git a/src/test/FsCheck.Fake/FsCheck.Fake.fsproj b/src/test/FsCheck.Fake/FsCheck.Fake.fsproj index 81abf163a89..5bee793c67d 100644 --- a/src/test/FsCheck.Fake/FsCheck.Fake.fsproj +++ b/src/test/FsCheck.Fake/FsCheck.Fake.fsproj @@ -543,6 +543,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -776,14 +785,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -810,6 +840,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -1108,6 +1159,18 @@ + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1300,6 +1363,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1387,7 +1468,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1454,7 +1535,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1492,6 +1573,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + diff --git a/src/test/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj b/src/test/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj index c004a09700a..56f3cfd98b0 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj @@ -561,6 +561,18 @@ + + + + True + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -761,6 +773,15 @@ + + + + + True + + + + @@ -1058,6 +1079,18 @@ + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1212,6 +1245,24 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1299,7 +1350,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1366,7 +1417,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1404,6 +1455,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1443,6 +1503,26 @@ + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj index c7c6f29810a..532d4e76aa2 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj @@ -643,6 +643,15 @@ + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -844,14 +853,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -878,6 +908,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -1156,6 +1207,18 @@ + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1310,6 +1373,24 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1397,7 +1478,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1464,7 +1545,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1502,6 +1583,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1541,6 +1631,26 @@ + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj index f1ddc0600ea..e4a4e888368 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj @@ -642,6 +642,15 @@ + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -843,14 +852,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -877,6 +907,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -1155,6 +1206,18 @@ + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1309,6 +1372,24 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1396,7 +1477,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1463,7 +1544,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1501,6 +1582,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1540,6 +1630,26 @@ + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj index f1ddc0600ea..e4a4e888368 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj @@ -642,6 +642,15 @@ + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -843,14 +852,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -877,6 +907,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -1155,6 +1206,18 @@ + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1309,6 +1372,24 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1396,7 +1477,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1463,7 +1544,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1501,6 +1582,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1540,6 +1630,26 @@ + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj index eeddb37f17d..4a840b83d5b 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj @@ -642,6 +642,15 @@ + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -843,14 +852,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -877,6 +907,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -1155,6 +1206,18 @@ + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1309,6 +1372,24 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1396,7 +1477,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1463,7 +1544,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1501,6 +1582,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1540,6 +1630,26 @@ + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj index eeddb37f17d..4a840b83d5b 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj @@ -642,6 +642,15 @@ + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -843,14 +852,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -877,6 +907,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -1155,6 +1206,18 @@ + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1309,6 +1372,24 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1396,7 +1477,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1463,7 +1544,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1501,6 +1582,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1540,6 +1630,26 @@ + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj index f1ddc0600ea..e4a4e888368 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj @@ -642,6 +642,15 @@ + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -843,14 +852,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -877,6 +907,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -1155,6 +1206,18 @@ + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1309,6 +1372,24 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1396,7 +1477,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1463,7 +1544,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1501,6 +1582,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1540,6 +1630,26 @@ + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj index 7ad3c737bd3..624c09fe9d8 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj @@ -643,6 +643,15 @@ + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -844,14 +853,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -878,6 +908,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -1156,6 +1207,18 @@ + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1310,6 +1373,24 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1397,7 +1478,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1464,7 +1545,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1502,6 +1583,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1541,6 +1631,26 @@ + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + diff --git a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj index 7ad3c737bd3..624c09fe9d8 100644 --- a/src/test/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj +++ b/src/test/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj @@ -643,6 +643,15 @@ + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -844,14 +853,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -878,6 +908,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -1156,6 +1207,18 @@ + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1310,6 +1373,24 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1397,7 +1478,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1464,7 +1545,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1502,6 +1583,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1541,6 +1631,26 @@ + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + diff --git a/src/test/Test.FAKECore/Test.FAKECore.csproj b/src/test/Test.FAKECore/Test.FAKECore.csproj index 1b641c2f278..b1578cff942 100644 --- a/src/test/Test.FAKECore/Test.FAKECore.csproj +++ b/src/test/Test.FAKECore/Test.FAKECore.csproj @@ -914,6 +914,18 @@ + + + + True + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -1115,14 +1127,44 @@ - + + + + True + + + + + + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1149,6 +1191,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -1427,6 +1490,18 @@ + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1581,6 +1656,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1668,7 +1761,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1735,7 +1828,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1773,6 +1866,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1812,6 +1914,26 @@ + + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + diff --git a/src/test/Test.FAKECore/TestData/fake_no_template.csproj b/src/test/Test.FAKECore/TestData/fake_no_template.csproj index 9ce0bfdf56e..40207cc2d4b 100644 --- a/src/test/Test.FAKECore/TestData/fake_no_template.csproj +++ b/src/test/Test.FAKECore/TestData/fake_no_template.csproj @@ -552,6 +552,18 @@ + + + + True + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -753,14 +765,44 @@ - + + + + True + + + + + + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -787,6 +829,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -1065,6 +1128,18 @@ + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1219,6 +1294,24 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1306,7 +1399,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1373,7 +1466,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1411,6 +1504,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1450,6 +1552,26 @@ + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + 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 1998e47d1af..15eb425813c 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 @@ -469,6 +469,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -702,14 +711,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -736,6 +766,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -1034,6 +1085,18 @@ + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1226,6 +1289,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1313,7 +1394,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1380,7 +1461,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1418,6 +1499,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + 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 45e3dc66e99..b596b8b44f2 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 @@ -834,6 +834,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -1067,14 +1076,35 @@ - + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1101,6 +1131,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -1399,6 +1450,18 @@ + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1640,6 +1703,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1727,7 +1808,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1794,7 +1875,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1832,6 +1913,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + diff --git a/src/test/Test.Fake.Deploy/Test.Fake.Deploy.csproj b/src/test/Test.Fake.Deploy/Test.Fake.Deploy.csproj index 241f116303d..57b32c92baa 100644 --- a/src/test/Test.Fake.Deploy/Test.Fake.Deploy.csproj +++ b/src/test/Test.Fake.Deploy/Test.Fake.Deploy.csproj @@ -988,6 +988,18 @@ + + + + True + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -1221,14 +1233,44 @@ - + + + + True + + + + + + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1255,6 +1297,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -1564,6 +1627,18 @@ + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1825,6 +1900,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1912,7 +2005,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1979,7 +2072,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -2017,6 +2110,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + diff --git a/src/test/Test.Git/Test.Git.csproj b/src/test/Test.Git/Test.Git.csproj index f4162cd9327..d26c107ddd0 100644 --- a/src/test/Test.Git/Test.Git.csproj +++ b/src/test/Test.Git/Test.Git.csproj @@ -476,6 +476,18 @@ + + + + True + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -677,14 +689,44 @@ - + + + + True + + + + + + True - + + + + True + + + + + + + True + + + + + + + True + + + + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -711,6 +753,27 @@ + + + + True + + + + + + + True + + + + + + + True + + + @@ -989,6 +1052,18 @@ + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + @@ -1143,6 +1218,24 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + @@ -1230,7 +1323,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll @@ -1297,7 +1390,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\net46\System.Security.Cryptography.Primitives.dll @@ -1335,6 +1428,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll + True + True + + + @@ -1374,6 +1476,26 @@ + + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.0\System.Text.Encoding.Extensions.dll + False + True + + + + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + From f2e774114b658abb5ad4997d4fe1ea6e9d2b673c Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 3 Sep 2017 17:38:37 +0200 Subject: [PATCH 05/25] upgrade to netcoreapp1.1 --- build.fsx | 2 +- paket.dependencies | 16 +- paket.lock | 202 ++++++++---------- .../Fake.Core.BuildServer/paket.references | 2 +- src/app/Fake.Core.String/paket.references | 2 +- src/app/Fake.netcore/Fake.netcore.fsproj | 2 +- src/app/Fake.netcore/paket.references | 4 +- 7 files changed, 111 insertions(+), 119 deletions(-) diff --git a/build.fsx b/build.fsx index cc52cd1e598..eda1c50c5c7 100644 --- a/build.fsx +++ b/build.fsx @@ -758,7 +758,7 @@ Target "DotnetPackage" (fun _ -> let outDir = nugetDir @@ "Fake.netcore" @@ "portable" DotnetPublish (fun c -> { c with - Framework = Some "netcoreapp1.0" + Framework = Some "netcoreapp1.1" OutputPath = Some outDir }) netcoreFsproj ) diff --git a/paket.dependencies b/paket.dependencies index c1bd66036be..e948c9bedda 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -100,13 +100,21 @@ group netcore //source https://ci.appveyor.com/nuget/paket source https://api.nuget.org/v3/index.json storage: none - framework: netstandard1.6, netcoreapp1.0 + framework: netstandard1.6, netcoreapp1.1 + nuget Microsoft.NETCore.App !~> 1.1 nuget FSharp.Compiler.Service storage: packages, content: none - nuget Microsoft.DotNet.PlatformAbstractions + nuget Microsoft.DotNet.PlatformAbstractions !~> 1 + // START _ REMOVE ME ONCE PAKET WORKS https://github.com/fsprojects/Paket/issues/2715 + nuget Microsoft.NETCore.DotNetHostPolicy !~> 1.1 + nuget Microsoft.NETCore.Platforms !~> 1.1 + nuget Microsoft.NETCore.DotNetHostResolver !~> 1.1 + nuget Microsoft.NETCore.Runtime.CoreCLR !~> 1.1 + nuget Microsoft.NETCore.Jit !~> 1.1 + // END _ REMOVE ME ONCE PAKET WORKS + + nuget NETStandard.Library !~> 1.0 nuget FSharp.Core ~> 4.1.2 - nuget Microsoft.NETCore.App ~> 1.0 - nuget NETStandard.Library ~> 1.0 nuget Argu nuget Paket.Core prerelease nuget Mono.Cecil prerelease diff --git a/paket.lock b/paket.lock index 9d79542e8cd..6f5e64aa455 100644 --- a/paket.lock +++ b/paket.lock @@ -1673,7 +1673,7 @@ GITHUB Octokit (>= 0.20) GROUP netcore STORAGE: NONE -RESTRICTION: || (== netstandard1.6) (== netcoreapp1.0) +RESTRICTION: || (== netstandard1.6) (== netcoreapp1.1) NUGET remote: https://api.nuget.org/v3/index.json Argu (3.7) @@ -1719,10 +1719,10 @@ NUGET System.Threading.Thread (>= 4.0) System.Threading.ThreadPool (>= 4.0.10) System.Threading.Timer (>= 4.0.1) - Libuv (1.10) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Libuv (1.10) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.0.1) - Microsoft.CodeAnalysis.Analyzers (1.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.CodeAnalysis.Common (2.3.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.CodeAnalysis.Analyzers (1.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) + Microsoft.CodeAnalysis.Common (2.3.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) Microsoft.CodeAnalysis.Analyzers (>= 1.1) System.AppContext (>= 4.3) System.Collections (>= 4.3) @@ -1762,15 +1762,16 @@ NUGET System.Xml.XDocument (>= 4.3) System.Xml.XmlDocument (>= 4.3) System.Xml.XPath.XDocument (>= 4.3) - Microsoft.CodeAnalysis.CSharp (2.3.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.CodeAnalysis.CSharp (2.3.2) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) Microsoft.CodeAnalysis.Common (2.3.2) - Microsoft.CodeAnalysis.VisualBasic (2.3.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.CodeAnalysis.VisualBasic (2.3.2) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) Microsoft.CodeAnalysis.Common (>= 2.3.2) Microsoft.CSharp (4.4) NETStandard.Library (>= 1.6.1) System.Dynamic.Runtime (>= 4.3) System.Reflection.TypeExtensions (>= 4.3) - Microsoft.DotNet.PlatformAbstractions (2.0) + Microsoft.DiaSymReader.Native (1.4.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + Microsoft.DotNet.PlatformAbstractions (1.1.2) System.AppContext (>= 4.1) System.Collections (>= 4.0.11) System.IO (>= 4.1) @@ -1780,61 +1781,63 @@ NUGET System.Runtime.InteropServices (>= 4.1) System.Runtime.InteropServices.RuntimeInformation (>= 4.0) Microsoft.NETCore.App (1.1.2) - Libuv (>= 1.9.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.CodeAnalysis.CSharp (>= 1.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.CodeAnalysis.VisualBasic (>= 1.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.CSharp (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.NETCore.DotNetHostPolicy (>= 1.0.5) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.NETCore.Platforms (>= 1.0.2) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.NETCore.Runtime.CoreCLR (>= 1.0.7) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.VisualBasic (>= 10.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - NETStandard.Library (>= 1.6) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - runtime.native.System.Security.Cryptography (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Buffers (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Collections.Immutable (>= 1.2) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.ComponentModel (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.ComponentModel.Annotations (>= 4.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Diagnostics.DiagnosticSource (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Diagnostics.Process (>= 4.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Dynamic.Runtime (>= 4.0.11) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Globalization.Extensions (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.IO.FileSystem.Watcher (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.IO.MemoryMappedFiles (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.IO.UnmanagedMemoryStream (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Linq.Expressions (>= 4.1.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Linq.Parallel (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Linq.Queryable (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Net.Http (>= 4.1.2) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Net.NameResolution (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Net.Requests (>= 4.0.11) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Net.Security (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Net.WebHeaderCollection (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Numerics.Vectors (>= 4.1.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Reflection.DispatchProxy (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Reflection.Metadata (>= 1.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Resources.Reader (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Runtime.Loader (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Security.Cryptography.Algorithms (>= 4.2) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Security.Cryptography.Encoding (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Security.Cryptography.Primitives (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Security.Cryptography.X509Certificates (>= 4.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Threading.Tasks.Dataflow (>= 4.6) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Threading.Tasks.Extensions (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Threading.Thread (>= 4.0) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - System.Threading.ThreadPool (>= 4.0.10) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.0)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.NETCore.DotNetAppHost (2.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.NETCore.DotNetHostPolicy (2.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.NETCore.DotNetHostResolver (>= 2.0) - Microsoft.NETCore.DotNetHostResolver (2.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.NETCore.DotNetAppHost (>= 2.0) - Microsoft.NETCore.Jit (2.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.NETCore.Platforms (2.0) - Microsoft.NETCore.Runtime.CoreCLR (2.0) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - Microsoft.NETCore.Jit (>= 2.0) + Libuv (>= 1.9.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) + Microsoft.CodeAnalysis.CSharp (>= 1.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) + Microsoft.CodeAnalysis.VisualBasic (>= 1.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) + Microsoft.CSharp (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + Microsoft.DiaSymReader.Native (>= 1.4.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + Microsoft.NETCore.DotNetHostPolicy (>= 1.1.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + Microsoft.NETCore.Runtime.CoreCLR (>= 1.1.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + Microsoft.VisualBasic (>= 10.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Buffers (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Collections.Immutable (>= 1.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.ComponentModel (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.ComponentModel.Annotations (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Diagnostics.DiagnosticSource (>= 4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Diagnostics.Process (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Globalization.Extensions (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.IO.FileSystem.Watcher (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.IO.MemoryMappedFiles (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.IO.UnmanagedMemoryStream (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Linq.Parallel (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Linq.Queryable (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Net.Http (>= 4.3.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Net.NameResolution (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Net.Requests (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Net.Security (>= 4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Net.WebHeaderCollection (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Numerics.Vectors (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Reflection.DispatchProxy (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Reflection.Metadata (>= 1.4.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Resources.Reader (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Runtime.Loader (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Threading.Tasks.Dataflow (>= 4.7) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Threading.Tasks.Parallel (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Threading.Thread (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Threading.ThreadPool (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + Microsoft.NETCore.DotNetHost (1.1) + Microsoft.NETCore.DotNetHostPolicy (1.1.2) + Microsoft.NETCore.DotNetHostResolver (>= 1.1) + Microsoft.NETCore.DotNetHostResolver (1.1) + Microsoft.NETCore.DotNetHost (>= 1.1) + Microsoft.NETCore.Jit (1.1.2) + Microsoft.NETCore.Platforms (1.1) + Microsoft.NETCore.Runtime.CoreCLR (1.1.2) + Microsoft.NETCore.Jit (>= 1.1.2) + Microsoft.NETCore.Windows.ApiSets (>= 1.0.1) Microsoft.NETCore.Targets (2.0) - Microsoft.VisualBasic (10.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + Microsoft.NETCore.Windows.ApiSets (1.0.1) + Microsoft.VisualBasic (10.2) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) NETStandard.Library (>= 1.6.1) System.Dynamic.Runtime (>= 4.3) System.Reflection.TypeExtensions (>= 4.3) @@ -1917,11 +1920,8 @@ NUGET System.Xml.XDocument (>= 4.3) System.Xml.XPath.XDocument (>= 4.3) System.Xml.XPath.XmlDocument (>= 4.3) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) runtime.native.System (4.3) Microsoft.NETCore.Platforms (>= 1.1) @@ -1932,21 +1932,10 @@ NUGET runtime.native.System.Net.Http (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Net.Security (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + runtime.native.System.Net.Security (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography (>= 4.3.1) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography (>= 4.3.1) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography (>= 4.3.1) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography (>= 4.3.1) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography (>= 4.3.1) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography (>= 4.3.1) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography (>= 4.3.1) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography (>= 4.3.1) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography (>= 4.3.1) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography (>= 4.3.1) - runtime.native.System.Security.Cryptography.Apple (4.3) - storage: packages, content: none + runtime.native.System.Security.Cryptography.Apple (4.3) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3) runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) @@ -1959,20 +1948,13 @@ NUGET runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3) - storage: packages, content: none + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) System.AppContext (4.3) System.Runtime (>= 4.3) @@ -1997,7 +1979,7 @@ NUGET System.Runtime.Extensions (>= 4.3) System.Threading (>= 4.3) System.Threading.Tasks (>= 4.3) - System.Collections.Immutable (1.4) - storage: packages, content: none + System.Collections.Immutable (1.4) NETStandard.Library (>= 1.6.1) System.Collections.NonGeneric (4.3) System.Diagnostics.Debug (>= 4.3) @@ -2016,7 +1998,7 @@ NUGET System.Threading (>= 4.3) System.ComponentModel (4.3) System.Runtime (>= 4.3) - System.ComponentModel.Annotations (4.4) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.ComponentModel.Annotations (4.4) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) NETStandard.Library (>= 1.6.1) System.ComponentModel (>= 4.3) System.ComponentModel.Primitives (4.3) @@ -2089,7 +2071,7 @@ NUGET System.Threading.Tasks (>= 4.3) System.Threading.Thread (>= 4.3) System.Threading.ThreadPool (>= 4.3) - System.Diagnostics.StackTrace (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Diagnostics.StackTrace (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) System.IO.FileSystem (>= 4.3) System.Reflection (>= 4.3) System.Reflection.Metadata (>= 1.4.1) @@ -2186,7 +2168,7 @@ NUGET System.Threading.Tasks (>= 4.3) System.IO.FileSystem.Primitives (4.3) System.Runtime (>= 4.3) - System.IO.FileSystem.Watcher (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.IO.FileSystem.Watcher (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.Win32.Primitives (>= 4.3) runtime.native.System (>= 4.3) @@ -2203,7 +2185,7 @@ NUGET System.Threading.Overlapped (>= 4.3) System.Threading.Tasks (>= 4.3) System.Threading.Thread (>= 4.3) - System.IO.MemoryMappedFiles (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.IO.MemoryMappedFiles (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.1) runtime.native.System (>= 4.3) System.IO (>= 4.3) @@ -2217,7 +2199,7 @@ NUGET System.Runtime.InteropServices (>= 4.3) System.Threading (>= 4.3) System.Threading.Tasks (>= 4.3) - System.IO.UnmanagedMemoryStream (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.IO.UnmanagedMemoryStream (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) System.Buffers (>= 4.3) System.Diagnostics.Debug (>= 4.3) System.IO (>= 4.3) @@ -2298,7 +2280,7 @@ NUGET System.Text.Encoding (>= 4.3) System.Threading (>= 4.3) System.Threading.Tasks (>= 4.3) - System.Net.NameResolution (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Net.NameResolution (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.1) runtime.native.System (>= 4.3) System.Collections (>= 4.3) @@ -2332,7 +2314,7 @@ NUGET System.Runtime (>= 4.3) System.Threading (>= 4.3) System.Threading.Tasks (>= 4.3) - System.Net.Security (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Net.Security (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.Win32.Primitives (>= 4.3) runtime.native.System (>= 4.3) @@ -2373,7 +2355,7 @@ NUGET System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) System.Runtime.Extensions (>= 4.3) - System.Numerics.Vectors (4.4) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Numerics.Vectors (4.4) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) NETStandard.Library (>= 1.6.1) System.ObjectModel (4.3) System.Collections (>= 4.3) @@ -2387,7 +2369,7 @@ NUGET System.IO (>= 4.3) System.Reflection.Primitives (>= 4.3) System.Runtime (>= 4.3) - System.Reflection.DispatchProxy (4.4) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Reflection.DispatchProxy (4.4) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) NETStandard.Library (>= 1.6.1) System.Reflection.Emit (>= 4.3) System.Reflection.Emit.ILGeneration (>= 4.3) @@ -2411,18 +2393,18 @@ NUGET Microsoft.NETCore.Targets (>= 1.1) System.Reflection (>= 4.3) System.Runtime (>= 4.3) - System.Reflection.Metadata (1.5) - storage: packages, content: none + System.Reflection.Metadata (1.5) NETStandard.Library (>= 1.6.1) System.Collections.Immutable (>= 1.4) System.Reflection.Primitives (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) - System.Reflection.TypeExtensions (4.4) - storage: packages, content: none + System.Reflection.TypeExtensions (4.4) System.Reflection (>= 4.3) System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) - System.Resources.Reader (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Resources.Reader (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) System.IO (>= 4.3) System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) @@ -2478,7 +2460,7 @@ NUGET System.Runtime.Serialization.Primitives (4.3) System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) - System.Security.Claims (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Security.Claims (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) System.Collections (>= 4.3) System.Globalization (>= 4.3) System.IO (>= 4.3) @@ -2486,7 +2468,7 @@ NUGET System.Runtime (>= 4.3) System.Runtime.Extensions (>= 4.3) System.Security.Principal (>= 4.3) - System.Security.Cryptography.Algorithms (4.3) - storage: packages, content: none + System.Security.Cryptography.Algorithms (4.3) Microsoft.NETCore.Platforms (>= 1.1) runtime.native.System.Security.Cryptography.Apple (>= 4.3) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) @@ -2588,9 +2570,9 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) System.Text.Encoding (>= 4.3) System.Threading (>= 4.3) - System.Security.Principal (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Security.Principal (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) System.Runtime (>= 4.3) - System.Security.Principal.Windows (4.4) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Security.Principal.Windows (4.4) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) Microsoft.Win32.Primitives (>= 4.3) System.Collections (>= 4.3) System.Diagnostics.Debug (>= 4.3) @@ -2608,7 +2590,7 @@ NUGET Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) - System.Text.Encoding.CodePages (4.4) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Text.Encoding.CodePages (4.4) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) NETStandard.Library (>= 1.6.1) System.Text.Encoding.Extensions (4.3) Microsoft.NETCore.Platforms (>= 1.1) @@ -2616,16 +2598,16 @@ NUGET System.Runtime (>= 4.3) System.Text.Encoding (>= 4.3) System.Text.RegularExpressions (4.3) - System.Collections (>= 4.3) - System.Globalization (>= 4.3) - System.Resources.ResourceManager (>= 4.3) + System.Collections (>= 4.3) - restriction: || (== netstandard1.6) (&& (== netcoreapp1.1) (>= dnxcore50)) + System.Globalization (>= 4.3) - restriction: || (== netstandard1.6) (&& (== netcoreapp1.1) (>= dnxcore50)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard1.6) (&& (== netcoreapp1.1) (>= dnxcore50)) System.Runtime (>= 4.3) - System.Runtime.Extensions (>= 4.3) - System.Threading (>= 4.3) + System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard1.6) (&& (== netcoreapp1.1) (>= dnxcore50)) + System.Threading (>= 4.3) - restriction: || (== netstandard1.6) (&& (== netcoreapp1.1) (>= dnxcore50)) System.Threading (4.3) System.Runtime (>= 4.3) System.Threading.Tasks (>= 4.3) - System.Threading.Overlapped (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Threading.Overlapped (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.1) System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) @@ -2634,7 +2616,7 @@ NUGET Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) - System.Threading.Tasks.Dataflow (4.8) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.0) + System.Threading.Tasks.Dataflow (4.8) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) NETStandard.Library (>= 1.6.1) System.Dynamic.Runtime (>= 4.3) System.Threading.Tasks.Extensions (4.4) diff --git a/src/app/Fake.Core.BuildServer/paket.references b/src/app/Fake.Core.BuildServer/paket.references index b4ed1d2bfbf..2c8a7ddfd73 100644 --- a/src/app/Fake.Core.BuildServer/paket.references +++ b/src/app/Fake.Core.BuildServer/paket.references @@ -1,4 +1,4 @@ group netcore FSharp.Core -NETStandard.Library framework: netstandard1.6 \ No newline at end of file +NETStandard.Library \ No newline at end of file diff --git a/src/app/Fake.Core.String/paket.references b/src/app/Fake.Core.String/paket.references index 96057853752..2c8a7ddfd73 100644 --- a/src/app/Fake.Core.String/paket.references +++ b/src/app/Fake.Core.String/paket.references @@ -1,4 +1,4 @@ group netcore FSharp.Core -NETStandard.Library framework: netcore10 \ No newline at end of file +NETStandard.Library \ No newline at end of file diff --git a/src/app/Fake.netcore/Fake.netcore.fsproj b/src/app/Fake.netcore/Fake.netcore.fsproj index 06900f88969..97865fd3c34 100644 --- a/src/app/Fake.netcore/Fake.netcore.fsproj +++ b/src/app/Fake.netcore/Fake.netcore.fsproj @@ -1,7 +1,7 @@ 1.0.0-alpha-10 - netcoreapp1.0 + netcoreapp1.1 $(DefineConstants);CORE_CLR;DOTNETCORE;EXPLICIT_DEPENDENCIES;NETSTANDARD;NETSTANDARD1_6 true Portable diff --git a/src/app/Fake.netcore/paket.references b/src/app/Fake.netcore/paket.references index 0cfc6865e91..9af96675b59 100644 --- a/src/app/Fake.netcore/paket.references +++ b/src/app/Fake.netcore/paket.references @@ -3,4 +3,6 @@ FSharp.Core Argu Paket.Core -Mono.Cecil \ No newline at end of file +Mono.Cecil +Microsoft.NETCore.App +NETStandard.Library \ No newline at end of file From 794e83ea67b15bf5fde4359f75436c0ee06711be Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 3 Sep 2017 20:55:41 +0200 Subject: [PATCH 06/25] we need to have a single fsharp.core && downgrade FCS. --- paket.dependencies | 5 +-- paket.lock | 59 +++++++++++++++++++++++++++---- src/app/Fake.Runtime/CoreCache.fs | 3 +- 3 files changed, 57 insertions(+), 10 deletions(-) diff --git a/paket.dependencies b/paket.dependencies index e948c9bedda..5a030c9b078 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -45,7 +45,7 @@ nuget Microsoft.AspNet.Razor 2.0.30506 nuget Microsoft.AspNet.WebPages 2.0.30506 nuget FluentMigrator.Runner nuget HashLib -nuget FSharp.Compiler.Service content: none +nuget FSharp.Compiler.Service < 14 content: none nuget Octokit nuget System.Net.Http nuget Microsoft.DotNet.PlatformAbstractions @@ -103,7 +103,7 @@ group netcore framework: netstandard1.6, netcoreapp1.1 nuget Microsoft.NETCore.App !~> 1.1 - nuget FSharp.Compiler.Service storage: packages, content: none + nuget FSharp.Compiler.Service < 14 storage: packages, content: none nuget Microsoft.DotNet.PlatformAbstractions !~> 1 // START _ REMOVE ME ONCE PAKET WORKS https://github.com/fsprojects/Paket/issues/2715 nuget Microsoft.NETCore.DotNetHostPolicy !~> 1.1 @@ -111,6 +111,7 @@ group netcore nuget Microsoft.NETCore.DotNetHostResolver !~> 1.1 nuget Microsoft.NETCore.Runtime.CoreCLR !~> 1.1 nuget Microsoft.NETCore.Jit !~> 1.1 + nuget Microsoft.NETCore.Targets !~> 1.1 // END _ REMOVE ME ONCE PAKET WORKS nuget NETStandard.Library !~> 1.0 diff --git a/paket.lock b/paket.lock index 6f5e64aa455..df0e5519123 100644 --- a/paket.lock +++ b/paket.lock @@ -1683,18 +1683,43 @@ NUGET Chessie (0.6) FSharp.Core (>= 4.0.1.7-alpha) NETStandard.Library (>= 1.6) - FSharp.Compiler.Service (14.0.2) - storage: packages, content: none - FSharp.Core (>= 4.1.18) + FSharp.Compiler.Service (13.0) - storage: packages, content: none + FSharp.Core (>= 4.1.17) + Microsoft.DiaSymReader (>= 1.1) + Microsoft.DiaSymReader.PortablePdb (>= 1.2) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) NETStandard.Library (>= 1.6.1) + runtime.native.System (>= 4.3) + runtime.native.System.IO.Compression (>= 4.3) + System.Buffers (>= 4.3) + System.Collections (>= 4.3) System.Collections.Immutable (>= 1.3) + System.Diagnostics.Debug (>= 4.3) System.Diagnostics.Process (>= 4.1) System.Diagnostics.TraceSource (>= 4.0) + System.Diagnostics.Tracing (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.IO.Compression (>= 4.3) + System.Linq (>= 4.3) + System.Reflection (>= 4.3) System.Reflection.Emit (>= 4.3) + System.Reflection.Extensions (>= 4.3) System.Reflection.Metadata (>= 1.4.1) + System.Reflection.Primitives (>= 4.3) System.Reflection.TypeExtensions (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices (>= 4.3) System.Runtime.Loader (>= 4.0) System.Security.Cryptography.Algorithms (>= 4.3) - System.ValueTuple (>= 4.4) + System.Text.Encoding (>= 4.3) + System.Text.Encoding.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Threading.Tasks (>= 4.3) FSharp.Core (4.1.18) System.Collections (>= 4.0.11) System.Console (>= 4.0) @@ -1770,7 +1795,27 @@ NUGET NETStandard.Library (>= 1.6.1) System.Dynamic.Runtime (>= 4.3) System.Reflection.TypeExtensions (>= 4.3) + Microsoft.DiaSymReader (1.1) - storage: packages, content: none + System.Diagnostics.Debug (>= 4.0.11) + System.Runtime (>= 4.1) + System.Runtime.InteropServices (>= 4.1) Microsoft.DiaSymReader.Native (1.4.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + Microsoft.DiaSymReader.PortablePdb (1.2) - storage: packages, content: none + Microsoft.DiaSymReader (>= 1.1) + System.Collections (>= 4.3) + System.Collections.Immutable (>= 1.3.1) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Linq (>= 4.3) + System.Reflection (>= 4.3) + System.Reflection.Metadata (>= 1.4.2) + System.Reflection.Primitives (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading (>= 4.3) Microsoft.DotNet.PlatformAbstractions (1.1.2) System.AppContext (>= 4.1) System.Collections (>= 4.0.11) @@ -1835,7 +1880,7 @@ NUGET Microsoft.NETCore.Runtime.CoreCLR (1.1.2) Microsoft.NETCore.Jit (>= 1.1.2) Microsoft.NETCore.Windows.ApiSets (>= 1.0.1) - Microsoft.NETCore.Targets (2.0) + Microsoft.NETCore.Targets (1.1) Microsoft.NETCore.Windows.ApiSets (1.0.1) Microsoft.VisualBasic (10.2) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) NETStandard.Library (>= 1.6.1) @@ -1923,10 +1968,10 @@ NUGET runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.1) - runtime.native.System (4.3) + runtime.native.System (4.3) - storage: packages, content: none Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.IO.Compression (4.3) + runtime.native.System.IO.Compression (4.3) - storage: packages, content: none Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) runtime.native.System.Net.Http (4.3) @@ -2641,7 +2686,7 @@ NUGET Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) - System.ValueTuple (4.4) - storage: packages, content: none + System.ValueTuple (4.4) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) NETStandard.Library (>= 1.6.1) System.Xml.ReaderWriter (4.3) System.Collections (>= 4.3) diff --git a/src/app/Fake.Runtime/CoreCache.fs b/src/app/Fake.Runtime/CoreCache.fs index 2cb7b0dd1e3..7039d1ec215 100644 --- a/src/app/Fake.Runtime/CoreCache.fs +++ b/src/app/Fake.Runtime/CoreCache.fs @@ -210,7 +210,8 @@ let findAndLoadInRuntimeDeps (loadContext:AssemblyLoadContext) (name:AssemblyNam // These guys need to be handled carefully, they must only exist a single time in memory let wellKnownAssemblies = - [ getAssemblyFromType typeof ] + [ getAssemblyFromType typeof + getAssemblyFromType typeof ] let isPerfectMatch, result = match wellKnownAssemblies |> List.tryFind (fun a -> a.GetName().Name = name.Name) with From 4ffdc59fd394745cf421b1f8ac9d6f9f6950bfb3 Mon Sep 17 00:00:00 2001 From: Oleksandr Bogomaz Date: Mon, 4 Sep 2017 10:21:58 +0300 Subject: [PATCH 07/25] fix code in FAKE5 modules doc --- help/markdown/fake-fake5-modules.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/help/markdown/fake-fake5-modules.md b/help/markdown/fake-fake5-modules.md index 13eec200f76..18f75452926 100644 --- a/help/markdown/fake-fake5-modules.md +++ b/help/markdown/fake-fake5-modules.md @@ -18,7 +18,7 @@ group NetcoreBuild nuget Fake.Core.Targets prerelease ``` -Now you can directly use `open Fake.Core.Targets` and use the [targets module](core-targets.html). +Now you can directly use `open Fake.Core` and use the [targets module](core-targets.html). For example create a new file `build.fsx` with @@ -26,10 +26,10 @@ For example create a new file `build.fsx` with // Use this for IDE support. Not required by FAKE 5. Change "build.fsx" to the name of your script. #load ".fake/build.fsx/intellisense.fsx" -open Fake.Core.Targets +open Fake.Core Target.Create "MyBuild" (fun _ -> - printfn "MyBuild" + printfn "message from MyBuild target" ) Target.RunOrDefault "MyBuild" From 28f23c92c610d488fa8b6bf5fe7466c6b104d6bc Mon Sep 17 00:00:00 2001 From: Oleksandr Bogomaz Date: Mon, 4 Sep 2017 10:26:47 +0300 Subject: [PATCH 08/25] modules docs - rename 'targets' to Target --- help/markdown/fake-fake5-modules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/help/markdown/fake-fake5-modules.md b/help/markdown/fake-fake5-modules.md index 18f75452926..d764fb824f0 100644 --- a/help/markdown/fake-fake5-modules.md +++ b/help/markdown/fake-fake5-modules.md @@ -18,7 +18,7 @@ group NetcoreBuild nuget Fake.Core.Targets prerelease ``` -Now you can directly use `open Fake.Core` and use the [targets module](core-targets.html). +Now you can directly use `open Fake.Core` and use the [Target module](core-targets.html). For example create a new file `build.fsx` with From 335155fc23824da92b1c503da1113a38947f7462 Mon Sep 17 00:00:00 2001 From: Kent Boogaart Date: Fri, 1 Sep 2017 17:03:43 +0930 Subject: [PATCH 09/25] Add MSBuild binary logger support --- src/app/Fake.DotNet.MsBuild/MsBuild.fs | 153 +++++++++++++------------ src/app/FakeLib/MSBuildHelper.fs | 17 ++- 2 files changed, 94 insertions(+), 76 deletions(-) diff --git a/src/app/Fake.DotNet.MsBuild/MsBuild.fs b/src/app/Fake.DotNet.MsBuild/MsBuild.fs index c331697aada..35d3889edad 100644 --- a/src/app/Fake.DotNet.MsBuild/MsBuild.fs +++ b/src/app/Fake.DotNet.MsBuild/MsBuild.fs @@ -53,7 +53,7 @@ let monoVersionToUseMSBuildOn = System.Version("5.0") /// Tries to detect the right version of MSBuild. /// - On all OS's, we check a `MSBuild` environment variable which is either /// * a direct path to a file to use, or -/// * a directory that contains a file called +/// * a directory that contains a file called /// * `msbuild` on non-Windows systems with mono >= 5.0.0.0, or /// * `xbuild` on non-Windows systems with mono < 5.0.0.0, /// * `MSBuild.exe` on Windows systems, or @@ -108,8 +108,8 @@ let msBuildExe = which "msbuild" ] defaultArg (sources |> List.choose id |> List.tryHead) "xbuild" - | false, _ -> - + | false, _ -> + let configIgnoreMSBuild = #if !FX_NO_SYSTEM_CONFIGURATION if "true".Equals(System.Configuration.ConfigurationManager.AppSettings.["IgnoreMSBuild"], StringComparison.OrdinalIgnoreCase) @@ -122,9 +122,9 @@ let msBuildExe = let vsVersionPaths = defaultArg (Environment.environVarOrNone "VisualStudioVersion" |> Option.bind dict.TryFind) getAllKnownPaths |> List.map ((@@) Environment.ProgramFilesX86) - + Process.tryFindFile vsVersionPaths "MSBuild.exe" - + let sources = [ msbuildEnvironVar |> Option.map (exactPathOrBinaryOnPath "MSBuild.exe") msbuildEnvironVar |> Option.bind which @@ -132,7 +132,7 @@ let msBuildExe = findOnVSPathsThenSystemPath ] defaultArg (sources |> List.choose id |> List.tryHead) "MSBuild.exe" - + if foundExe.Contains @"\BuildTools\" then Trace.traceFAKE "If you encounter msbuild errors make sure you have copied the required SDKs, see https://github.com/Microsoft/msbuild/issues/1697" elif foundExe.Contains @"\2017\" then @@ -146,7 +146,7 @@ let msbuildNamespace = "http://schemas.microsoft.com/developer/msbuild/2003" let xname name = XName.Get(name, msbuildNamespace) /// [omit] -let loadProject (projectFileName : string) : MSBuildProject = +let loadProject (projectFileName : string) : MSBuildProject = MSBuildProject.Load(projectFileName, LoadOptions.PreserveWhitespace) // See: http://msdn.microsoft.com/en-us/library/ms228186.aspx @@ -155,17 +155,17 @@ let internal unescapeMSBuildSpecialChars s = replExpr.Replace(s, new Text.RegularExpressions.MatchEvaluator( fun _match -> match _match.Value with | "%24" -> "$" | "%25" -> "%" | "%27" -> "'" | "%40" -> "@" - | "%3B" -> ";" | "%3F" -> "?" | "%2A" -> "*" + | "%3B" -> ";" | "%3F" -> "?" | "%2A" -> "*" | _ -> _match.Value)) /// [omit] -let internal getReferenceElements elementName projectFileName (doc : XDocument) = +let internal getReferenceElements elementName projectFileName (doc : XDocument) = let fi = FileInfo.ofPath projectFileName - doc.Descendants(xname "Project").Descendants(xname "ItemGroup").Descendants(xname elementName) - |> Seq.map (fun e -> + doc.Descendants(xname "Project").Descendants(xname "ItemGroup").Descendants(xname elementName) + |> Seq.map (fun e -> let a = e.Attribute(XName.Get "Include") - let value = a.Value |> unescapeMSBuildSpecialChars |> Path.convertWindowsToCurrentPath - + let value = a.Value |> unescapeMSBuildSpecialChars |> Path.convertWindowsToCurrentPath + let fileName = if value.StartsWith(".." + Path.directorySeparator) || (not <| value.Contains Path.directorySeparator) then fi.Directory.FullName @@ value @@ -173,7 +173,7 @@ let internal getReferenceElements elementName projectFileName (doc : XDocument) a, fileName |> Path.getFullName) /// [omit] -let processReferences elementName f projectFileName (doc : XDocument) = +let processReferences elementName f projectFileName (doc : XDocument) = let fi = FileInfo.ofPath projectFileName doc |> getReferenceElements elementName projectFileName @@ -181,10 +181,10 @@ let processReferences elementName f projectFileName (doc : XDocument) = doc /// [omit] -let rec getProjectReferences (projectFileName : string) = +let rec getProjectReferences (projectFileName : string) = if projectFileName.EndsWith ".sln" then Set.empty else // exclude .sln-files since the are not XML - + let doc = loadProject projectFileName let references = getReferenceElements "ProjectReference" projectFileName doc |> Seq.map snd |> Seq.filter File.Exists references @@ -194,7 +194,7 @@ let rec getProjectReferences (projectFileName : string) = |> Set.ofSeq /// MSBuild verbosity option -type MSBuildVerbosity = +type MSBuildVerbosity = | Quiet | Minimal | Normal @@ -202,7 +202,7 @@ type MSBuildVerbosity = | Diagnostic /// MSBuild log option -type MSBuildLogParameter = +type MSBuildLogParameter = | Append | PerformanceSummary | Summary @@ -225,14 +225,14 @@ type MSBuildFileLoggerConfig = Verbosity : MSBuildVerbosity option Parameters : MSBuildLogParameter list option } -type MSBuildDistributedLoggerConfig = +type MSBuildDistributedLoggerConfig = { ClassName : string option AssemblyPath : string Parameters : (string * string) list option } /// A type for MSBuild task parameters -type MSBuildParams = +type MSBuildParams = { Targets : string list Properties : (string * string) list MaxCpuCount : int option option @@ -243,10 +243,11 @@ type MSBuildParams = Verbosity : MSBuildVerbosity option NoConsoleLogger : bool FileLoggers : MSBuildFileLoggerConfig list option + BinaryLoggers : string list option DistributedLoggers : (MSBuildDistributedLoggerConfig * MSBuildDistributedLoggerConfig option) list option } /// Defines a default for MSBuild task parameters -let mutable MSBuildDefaults = +let mutable MSBuildDefaults = { Targets = [] Properties = [] MaxCpuCount = Some None @@ -256,25 +257,26 @@ let mutable MSBuildDefaults = Verbosity = None NoConsoleLogger = false RestorePackagesFlag = false - FileLoggers = None + FileLoggers = None + BinaryLoggers = None DistributedLoggers = None } /// [omit] -let getAllParameters targets maxcpu noLogo nodeReuse tools verbosity noconsolelogger fileLoggers distributedFileLoggers properties = - if Environment.isUnix then [ targets; tools; verbosity; noconsolelogger ] @ fileLoggers @ distributedFileLoggers @ properties - else [ targets; maxcpu; noLogo; nodeReuse; tools; verbosity; noconsolelogger ] @ fileLoggers @ distributedFileLoggers @ properties +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 private serializeArgs args = args - |> Seq.map (function + |> Seq.map (function | None -> "" - | Some(k, v) -> + | Some(k, v) -> "/" + k + (if String.isNullOrEmpty v then "" else ":" + v)) |> String.separated " " /// [omit] -let serializeMSBuildParams (p : MSBuildParams) = +let serializeMSBuildParams (p : MSBuildParams) = let verbosityName v = match v with | Quiet -> "q" @@ -283,48 +285,48 @@ let serializeMSBuildParams (p : MSBuildParams) = | Detailed -> "d" | Diagnostic -> "diag" - - - let targets = + + + let targets = match p.Targets with | [] -> None | t -> Some("t", t |> Seq.map (String.replace "." "_") |> String.separated ";") - + let properties = ("RestorePackages",p.RestorePackagesFlag.ToString()) :: p.Properties |> List.map (fun (k, v) -> Some("p", sprintf "%s=\"%s\"" k v)) - - let maxcpu = + + let maxcpu = match p.MaxCpuCount with | None -> None - | Some x -> - Some("m", + | Some x -> + Some("m", match x with | Some v -> v.ToString() | _ -> "") - - let noLogo = + + let noLogo = if p.NoLogo then Some("nologo", "") else None - - let nodeReuse = + + let nodeReuse = if p.NodeReuse then None else Some("nodeReuse", "False") - + let tools = match p.ToolsVersion with | None -> None | Some t -> Some("tv", t) - - let verbosity = + + let verbosity = match p.Verbosity with | None -> None | Some v -> Some("v", verbosityName v) - + let noconsolelogger = if p.NoConsoleLogger then Some("noconlog", "") else None let fileLoggers = - let serializeLogger fl = + let serializeLogger fl = let logParams param = match param with | Append -> "Append" @@ -342,16 +344,16 @@ let serializeMSBuildParams (p : MSBuildParams) = | DisableMPLogging -> "DisableMPLogging" | EnableMPLogging -> "EnableMPLogging" - sprintf "%s%s%s" + sprintf "%s%s%s" (match fl.Filename with | None -> "" | Some f -> sprintf "LogFile=%s;" f) (match fl.Verbosity with | None -> "" - | Some v -> sprintf "Verbosity=%s;" (verbosityName v)) + | Some v -> sprintf "Verbosity=%s;" (verbosityName v)) (match fl.Parameters with | None -> "" - | Some ps -> + | Some ps -> ps |> List.map (fun p -> sprintf "%s;" (logParams p)) |> String.concat "") @@ -359,17 +361,24 @@ let serializeMSBuildParams (p : MSBuildParams) = match p.FileLoggers with | None -> [] | Some fls -> - fls + fls |> List.map (fun fl -> Some ("flp" + (string fl.Number), serializeLogger fl) ) - let distributedFileLoggers = + let binaryLoggers = + match p.BinaryLoggers with + | None -> [] + | Some bls -> + bls + |> List.map (fun bl -> Some ("bl", bl) ) + + let distributedFileLoggers = let serializeDLogger (dlogger : MSBuildDistributedLoggerConfig) = - sprintf "%s%s%s" - (match dlogger.ClassName with | None -> "" | Some name -> sprintf "%s," name) + sprintf "%s%s%s" + (match dlogger.ClassName with | None -> "" | Some name -> sprintf "%s," name) (sprintf "\"%s\"" dlogger.AssemblyPath) - (match dlogger.Parameters with - | None -> "" - | Some vars -> vars + (match dlogger.Parameters with + | None -> "" + | Some vars -> vars |> List.fold (fun acc (k,v) -> sprintf "%s%s=%s;" acc k v) "" |> sprintf ";\"%s\"" ) @@ -385,18 +394,18 @@ let serializeMSBuildParams (p : MSBuildParams) = dfls |> List.map(fun (cl, fl) -> Some("dl", createLoggerString cl fl)) - getAllParameters targets maxcpu noLogo nodeReuse tools verbosity noconsolelogger fileLoggers distributedFileLoggers properties + getAllParameters targets maxcpu noLogo nodeReuse tools verbosity noconsolelogger fileLoggers binaryLoggers distributedFileLoggers properties |> serializeArgs #if !NO_MSBUILD_AVAILABLE /// [omit] let ErrorLoggerName = typedefof.FullName -let private pathToLogger = typedefof.Assembly.Location +let private pathToLogger = typedefof.Assembly.Location #endif /// Defines the loggers to use for MSBuild task -let mutable private MSBuildLoggers = +let mutable private MSBuildLoggers = [] //[ ErrorLoggerName ] //|> List.map (fun a -> sprintf "%s,\"%s\"" a pathToLogger) @@ -431,20 +440,20 @@ match BuildServer.buildServer with /// |> DoNothing let build setParams project = use t = Trace.traceTask "MSBuild" project - let args = + let args = MSBuildDefaults |> setParams |> serializeMSBuildParams - let errorLoggerParam = + let errorLoggerParam = MSBuildLoggers |> List.map (fun a -> Some ("logger", a)) |> serializeArgs - + let args = Process.toParam project + " " + args + " " + errorLoggerParam Trace.tracefn "Building project: %s\n %s %s" project msBuildExe args let exitCode = - Process.ExecProcess (fun info -> + Process.ExecProcess (fun info -> info.FileName <- msBuildExe info.Arguments <- args) TimeSpan.MaxValue if exitCode <> 0 then @@ -457,7 +466,7 @@ let build setParams project = #else [] #endif - + let errorMessage = sprintf "Building %s failed with exitcode %d." project exitCode raise (BuildException(errorMessage, errors)) @@ -467,26 +476,26 @@ let build setParams project = /// - `targets` - A string with the target names which should be run by MSBuild. /// - `properties` - A list with tuples of property name and property values. /// - `projects` - A list of project or solution files. -let MSBuildWithProjectProperties outputPath (targets : string) (properties : (string) -> (string * string) list) projects = +let MSBuildWithProjectProperties outputPath (targets : string) (properties : (string) -> (string * string) list) projects = let projects = projects |> Seq.toList - - let output = + + let output = if String.isNullOrEmpty outputPath then "" - else + else outputPath |> Path.getFullName |> String.trimSeparator - let properties = + let properties = if String.isNullOrEmpty output then properties else fun x -> ("OutputPath", output) :: (properties x) let dependencies = - projects + projects |> List.map getProjectReferences |> Set.unionMany - let setBuildParam project projectParams = + let setBuildParam project projectParams = { projectParams with Targets = targets |> String.split ';' |> List.filter ((<>) ""); Properties = projectParams.Properties @ properties project } projects @@ -530,7 +539,7 @@ let MSBuildWithDefaults targets projects = MSBuild null targets [ "Configuration /// - `properties` - A list with tuples of property name and property values. /// - `targets` - A string with the target names which should be run by MSBuild. /// - `projects` - A list of project or solution files. -let MSBuildReleaseExt outputPath properties targets projects = +let MSBuildReleaseExt outputPath properties targets projects = let properties = ("Configuration", "Release") :: properties MSBuild outputPath targets properties projects @@ -581,4 +590,4 @@ let BuildWebsitesConfig outputPath configuration projectFiles = Seq.iter (BuildW /// ## Parameters /// - `outputPath` - The output path. /// - `projectFiles` - The project file paths. -let BuildWebsites outputPath projectFiles = BuildWebsitesConfig outputPath "Debug" projectFiles \ No newline at end of file +let BuildWebsites outputPath projectFiles = BuildWebsitesConfig outputPath "Debug" projectFiles diff --git a/src/app/FakeLib/MSBuildHelper.fs b/src/app/FakeLib/MSBuildHelper.fs index aaec19ea29e..75adfd7e8f0 100644 --- a/src/app/FakeLib/MSBuildHelper.fs +++ b/src/app/FakeLib/MSBuildHelper.fs @@ -227,6 +227,7 @@ type MSBuildParams = Verbosity : MSBuildVerbosity option NoConsoleLogger : bool FileLoggers : MSBuildFileLoggerConfig list option + BinaryLoggers : string list option DistributedLoggers : (MSBuildDistributedLoggerConfig * MSBuildDistributedLoggerConfig option) list option } /// Defines a default for MSBuild task parameters @@ -241,12 +242,13 @@ let mutable MSBuildDefaults = NoConsoleLogger = false RestorePackagesFlag = false FileLoggers = None + BinaryLoggers = None DistributedLoggers = None } /// [omit] -let getAllParameters targets maxcpu noLogo nodeReuse tools verbosity noconsolelogger fileLoggers distributedFileLoggers properties = - if isUnix then [ targets; tools; verbosity; noconsolelogger ] @ fileLoggers @ distributedFileLoggers @ properties - else [ targets; maxcpu; noLogo; nodeReuse; tools; verbosity; noconsolelogger ] @ fileLoggers @ distributedFileLoggers @ properties +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 private serializeArgs args = args @@ -344,6 +346,13 @@ let serializeMSBuildParams (p : MSBuildParams) = fls |> List.map (fun fl -> Some ("flp" + (string fl.Number), serializeLogger fl) ) + let binaryLoggers = + match p.BinaryLoggers with + | None -> [] + | Some bls -> + bls + |> List.map (fun bl -> Some ("bl", bl) ) + let distributedFileLoggers = let serializeDLogger (dlogger : MSBuildDistributedLoggerConfig) = sprintf "%s%s%s" @@ -367,7 +376,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 distributedFileLoggers properties + getAllParameters targets maxcpu noLogo nodeReuse tools verbosity noconsolelogger fileLoggers binaryLoggers distributedFileLoggers properties |> serializeArgs /// [omit] From 7821b981d5e996ede56c32de1d55d5a6078f2c4b Mon Sep 17 00:00:00 2001 From: TeaDrivenDev Date: Sun, 3 Sep 2017 00:28:15 +0200 Subject: [PATCH 10/25] Add BasePath support for NuGet pack --- src/app/Fake.DotNet.NuGet/NuGet.fs | 19 +++++++++++-------- src/app/FakeLib/NuGet/NugetHelper.fs | 19 +++++++++++-------- .../Test.FAKECore/PackageMgt/NugetSpecs.cs | 3 +++ 3 files changed, 25 insertions(+), 16 deletions(-) diff --git a/src/app/Fake.DotNet.NuGet/NuGet.fs b/src/app/Fake.DotNet.NuGet/NuGet.fs index c568f86dc55..7dcd9906516 100644 --- a/src/app/Fake.DotNet.NuGet/NuGet.fs +++ b/src/app/Fake.DotNet.NuGet/NuGet.fs @@ -56,6 +56,7 @@ type NuGetParams = ReleaseNotes : string Copyright : string WorkingDir : string + BasePath : string option OutputPath : string PublishUrl : string AccessKey : string @@ -99,6 +100,7 @@ let NuGetDefaults() = ReferencesByFramework = [] FrameworkAssemblies = [] IncludeReferencedProjects = false + BasePath = None OutputPath = "./NuGet" WorkingDir = "./NuGet" PublishUrl = "https://www.nuget.org/api/v2/package" @@ -272,6 +274,7 @@ let private propertiesParam = function let private pack parameters nuspecFile = let nuspecFile = Path.getFullName nuspecFile let properties = propertiesParam parameters.Properties + let basePath = parameters.BasePath |> Option.map (sprintf "-BasePath \"%s\"") |> Option.defaultValue "" let outputPath = (Path.getFullName(parameters.OutputPath.TrimEnd('\\').TrimEnd('/'))) let packageAnalysis = if parameters.NoPackageAnalysis then "-NoPackageAnalysis" else "" let defaultExcludes = if parameters.NoDefaultExcludes then "-NoDefaultExcludes" else "" @@ -291,19 +294,19 @@ let private pack parameters nuspecFile = match parameters.SymbolPackage with | NugetSymbolPackage.ProjectFile -> if not (isNullOrEmpty parameters.ProjectFile) then - sprintf "pack -Symbols -Version %s -OutputDirectory \"%s\" \"%s\" %s %s %s %s" - parameters.Version outputPath (Path.getFullName parameters.ProjectFile) packageAnalysis defaultExcludes includeReferencedProjects properties + sprintf "pack -Symbols -Version %s -OutputDirectory \"%s\" \"%s\" %s %s %s %s %s" + parameters.Version outputPath (Path.getFullName parameters.ProjectFile) packageAnalysis defaultExcludes includeReferencedProjects properties basePath |> execute - sprintf "pack -Version %s -OutputDirectory \"%s\" \"%s\" %s %s %s %s" - parameters.Version outputPath nuspecFile packageAnalysis defaultExcludes includeReferencedProjects properties + sprintf "pack -Version %s -OutputDirectory \"%s\" \"%s\" %s %s %s %s %s" + parameters.Version outputPath nuspecFile packageAnalysis defaultExcludes includeReferencedProjects properties basePath |> execute | NugetSymbolPackage.Nuspec -> - sprintf "pack -Symbols -Version %s -OutputDirectory \"%s\" \"%s\" %s %s %s %s" - parameters.Version outputPath nuspecFile packageAnalysis defaultExcludes includeReferencedProjects properties + sprintf "pack -Symbols -Version %s -OutputDirectory \"%s\" \"%s\" %s %s %s %s %s" + parameters.Version outputPath nuspecFile packageAnalysis defaultExcludes includeReferencedProjects properties basePath |> execute | _ -> - sprintf "pack -Version %s -OutputDirectory \"%s\" \"%s\" %s %s %s %s" - parameters.Version outputPath nuspecFile packageAnalysis defaultExcludes includeReferencedProjects properties + sprintf "pack -Version %s -OutputDirectory \"%s\" \"%s\" %s %s %s %s %s" + parameters.Version outputPath nuspecFile packageAnalysis defaultExcludes includeReferencedProjects properties basePath |> execute /// push package (and try again if something fails) diff --git a/src/app/FakeLib/NuGet/NugetHelper.fs b/src/app/FakeLib/NuGet/NugetHelper.fs index 4f044af5d51..f11952a390e 100644 --- a/src/app/FakeLib/NuGet/NugetHelper.fs +++ b/src/app/FakeLib/NuGet/NugetHelper.fs @@ -55,6 +55,7 @@ type NuGetParams = ReleaseNotes : string Copyright : string WorkingDir : string + BasePath : string option OutputPath : string PublishUrl : string AccessKey : string @@ -99,6 +100,7 @@ let NuGetDefaults() = ReferencesByFramework = [] FrameworkAssemblies = [] IncludeReferencedProjects = false + BasePath = None OutputPath = "./NuGet" WorkingDir = "./NuGet" PublishUrl = "https://www.nuget.org/api/v2/package" @@ -278,6 +280,7 @@ let private propertiesParam = function let private pack parameters nuspecFile = let nuspecFile = FullName nuspecFile let properties = propertiesParam parameters.Properties + let basePath = parameters.BasePath |> Option.map (sprintf "-BasePath \"%s\"") |> Option.defaultValue "" let outputPath = (FullName(parameters.OutputPath.TrimEnd('\\').TrimEnd('/'))) let packageAnalysis = if parameters.NoPackageAnalysis then "-NoPackageAnalysis" else "" let defaultExcludes = if parameters.NoDefaultExcludes then "-NoDefaultExcludes" else "" @@ -297,19 +300,19 @@ let private pack parameters nuspecFile = match parameters.SymbolPackage with | NugetSymbolPackage.ProjectFile -> if not (isNullOrEmpty parameters.ProjectFile) then - sprintf "pack -Symbols -Version %s -OutputDirectory \"%s\" \"%s\" %s %s %s %s" - parameters.Version outputPath (FullName parameters.ProjectFile) packageAnalysis defaultExcludes includeReferencedProjects properties + sprintf "pack -Symbols -Version %s -OutputDirectory \"%s\" \"%s\" %s %s %s %s %s" + parameters.Version outputPath (FullName parameters.ProjectFile) packageAnalysis defaultExcludes includeReferencedProjects properties basePath |> execute - sprintf "pack -Version %s -OutputDirectory \"%s\" \"%s\" %s %s %s %s" - parameters.Version outputPath nuspecFile packageAnalysis defaultExcludes includeReferencedProjects properties + sprintf "pack -Version %s -OutputDirectory \"%s\" \"%s\" %s %s %s %s %s" + parameters.Version outputPath nuspecFile packageAnalysis defaultExcludes includeReferencedProjects properties basePath |> execute | NugetSymbolPackage.Nuspec -> - sprintf "pack -Symbols -Version %s -OutputDirectory \"%s\" \"%s\" %s %s %s %s" - parameters.Version outputPath nuspecFile packageAnalysis defaultExcludes includeReferencedProjects properties + sprintf "pack -Symbols -Version %s -OutputDirectory \"%s\" \"%s\" %s %s %s %s %s" + parameters.Version outputPath nuspecFile packageAnalysis defaultExcludes includeReferencedProjects properties basePath |> execute | _ -> - sprintf "pack -Version %s -OutputDirectory \"%s\" \"%s\" %s %s %s %s" - parameters.Version outputPath nuspecFile packageAnalysis defaultExcludes includeReferencedProjects properties + sprintf "pack -Version %s -OutputDirectory \"%s\" \"%s\" %s %s %s %s %s" + parameters.Version outputPath nuspecFile packageAnalysis defaultExcludes includeReferencedProjects properties basePath |> execute diff --git a/src/test/Test.FAKECore/PackageMgt/NugetSpecs.cs b/src/test/Test.FAKECore/PackageMgt/NugetSpecs.cs index c98954242fc..435c84780e6 100644 --- a/src/test/Test.FAKECore/PackageMgt/NugetSpecs.cs +++ b/src/test/Test.FAKECore/PackageMgt/NugetSpecs.cs @@ -26,6 +26,7 @@ public class when_packing_with_nuspec_template authors: ListModule.OfSeq(new [] { "author" }), project: "fake", description: "description", + basePath: p.BasePath, outputPath: tempDir, summary: "summary", workingDir: TestData.TestDataDir, @@ -84,6 +85,7 @@ public class when_packing_with_csproj_and_complete_nuspec_alongside authors: ListModule.OfSeq(new[] { "author" }), project: "fake", description: "description", + basePath: p.BasePath, outputPath: tempDir, summary: "summary", workingDir: TestData.TestDataDir, @@ -154,6 +156,7 @@ public class when_packing_with_a_complete_nuspec_file authors: ListModule.OfSeq(new [] { "author" }), project: "fake", description: "description", + basePath: p.BasePath, outputPath: tempDir, summary: "summary", workingDir: TestData.TestDataDir, From 68409cecb926858656b8cc861a3e86b4a1301381 Mon Sep 17 00:00:00 2001 From: Volodymyr Lukashevych Date: Wed, 30 Aug 2017 22:52:33 -0700 Subject: [PATCH 11/25] Add NET Core version for the Fake.Api.Slack module --- src/app/Fake.Api.Slack/AssemblyInfo.fs | 17 +++ src/app/Fake.Api.Slack/Fake.Api.Slack.fsproj | 38 ++++++ src/app/Fake.Api.Slack/SlackNotification.fs | 126 +++++++++++++++++++ src/app/Fake.Api.Slack/paket.references | 6 + src/app/FakeLib/FakeLib.fsproj | 5 +- 5 files changed, 191 insertions(+), 1 deletion(-) create mode 100644 src/app/Fake.Api.Slack/AssemblyInfo.fs create mode 100644 src/app/Fake.Api.Slack/Fake.Api.Slack.fsproj create mode 100644 src/app/Fake.Api.Slack/SlackNotification.fs create mode 100644 src/app/Fake.Api.Slack/paket.references diff --git a/src/app/Fake.Api.Slack/AssemblyInfo.fs b/src/app/Fake.Api.Slack/AssemblyInfo.fs new file mode 100644 index 00000000000..fcd8d530822 --- /dev/null +++ b/src/app/Fake.Api.Slack/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 Slack notifications" + 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.Api.Slack/Fake.Api.Slack.fsproj b/src/app/Fake.Api.Slack/Fake.Api.Slack.fsproj new file mode 100644 index 00000000000..632394d3617 --- /dev/null +++ b/src/app/Fake.Api.Slack/Fake.Api.Slack.fsproj @@ -0,0 +1,38 @@ + + + 1.0.0-alpha-10 + + netstandard1.6 + pdbonly + true + Fake.Api.Slack + Library + $(PackageTargetFallback);portable-net45+win8;dnxcore50 + + + $(DefineConstants);RELEASE + + + + + + + + + + + + + + + diff --git a/src/app/Fake.Api.Slack/SlackNotification.fs b/src/app/Fake.Api.Slack/SlackNotification.fs new file mode 100644 index 00000000000..61711e51183 --- /dev/null +++ b/src/app/Fake.Api.Slack/SlackNotification.fs @@ -0,0 +1,126 @@ +namespace Fake.Api + +open System.Net +open Newtonsoft.Json + +/// Contains a task to send notification messages to a [Slack](https://slack.com/) webhook +module Slack = + /// The Slack notification attachment field parameter type + [] + type SlackNotificationAttachmentFieldParams = { + /// (Required) The field title + Title: string + /// (Required) Text value of the field + Value: string + /// Whether the value is short enough to be displayed side-by-side with other values + Short: bool + } + + /// The Slack notification attachment parameter type + [] + type SlackNotificationAttachmentParams = { + /// (Required) Text summary of the attachment that is shown by clients that understand attachments but choose not to show them + Fallback: string + /// The title of the attachment + Title: string + /// Content to which the title should link + Title_Link: string + /// Text that should appear within the attachment + Text: string + /// Text that should appear above the formatted data + Pretext: string + /// Color of the attachment text. Can be hex-value(e.g. "#AABBCC") or one of "'good', 'warning', 'danger'. + Color: string + /// Text to be displayed as a table below the message + Fields: SlackNotificationAttachmentFieldParams[] + } + + /// The Slack notification parameter type + [] + type SlackNotificationParams = { + /// (Required) The message body + Text: string + /// Name the message will appear to be sent from. Default value: Specified in your Slack Webhook configuration. + From: string + /// Channel to which the message will be posted. Default value: Specified in your Slack Webhook configuration. + Channel: string + /// The icon to be displayed with the message. Default value: Specified in your slack Webhook configuration. + Icon_URL: string + /// The emoji to be displayed with the message. Default value: Specified in your slack Webhook configuration. + Icon_Emoji: string + /// Whether to force inline unfurling of attached links. Default value: false. + Unfurl_Links: bool + // Richly formatted message attachments for the notification + Attachments: SlackNotificationAttachmentParams[] + // Whether or not to link names of users or channels (beginning with @ or #), Default value : false + Link_Names: bool + } + + /// The default Slack notification parameters + let SlackNotificationDefaults = { + Text = "" + From = null + Channel = null + Icon_URL = null + Icon_Emoji = null + Unfurl_Links = false + Attachments = Array.empty + Link_Names = false + } + + /// The default parameters for Slack notification attachments + let SlackNotificationAttachmentDefaults = { + Fallback = "" + Title = null + Title_Link = null + Text = null + Pretext = null + Color = null + Fields = Array.empty + } + + /// The default parameters for Slack notification attachment fields + let SlackNotificationAttachmentFieldDefaults = { + Title = "" + Value = "" + Short = false + } + + /// [omit] + let private lowerCaseContractResolver = { new Newtonsoft.Json.Serialization.DefaultContractResolver() with + override this.ResolvePropertyName (key : string) = + key.ToLower() + } + + /// [omit] + let private ValidateParams webhookURL (param : SlackNotificationParams) = + if webhookURL = "" then failwith "You must specify a webhook URL" + if param.Text = "" && param.Attachments.Length = 0 then failwith "You must specify a message or include an attachment" + let validateField (field : SlackNotificationAttachmentFieldParams) = + if field.Title = "" then failwith "Each field must have a title" + if field.Value = "" then failwith "Each field must have a value" + let validateAttachment (attachment : SlackNotificationAttachmentParams) = + if attachment.Fallback = "" then failwith "Each attachment must have a fallback" + Array.iter(fun field -> validateField field) attachment.Fields + Array.iter(fun attachment -> validateAttachment attachment) param.Attachments + + param + + /// [omit] + let private SerializeData data = + JsonConvert.SerializeObject(data, Formatting.None, new JsonSerializerSettings(NullValueHandling = NullValueHandling.Ignore, ContractResolver = lowerCaseContractResolver)) + + /// Sends a notification to a Slack Channel + /// ## Parameters + /// - `webhookURL` - The Slack webhook URL + /// - `setParams` - Function used to override the default notification parameters + let SlackNotification (webhookURL : string) (setParams: SlackNotificationParams -> SlackNotificationParams) = + let sendNotification param = + use client = (new WebClient()) + client.Headers.Add(HttpRequestHeader.ContentType, "application/json") + client.UploadString(webhookURL, "POST", SerializeData param) + + SlackNotificationDefaults + |> setParams + |> ValidateParams webhookURL + |> sendNotification diff --git a/src/app/Fake.Api.Slack/paket.references b/src/app/Fake.Api.Slack/paket.references new file mode 100644 index 00000000000..7e3f02584b1 --- /dev/null +++ b/src/app/Fake.Api.Slack/paket.references @@ -0,0 +1,6 @@ +group netcore + +FSharp.Core +NETStandard.Library +System.Net.Http +Newtonsoft.Json diff --git a/src/app/FakeLib/FakeLib.fsproj b/src/app/FakeLib/FakeLib.fsproj index 7bdf951fbc1..ecb73497c68 100644 --- a/src/app/FakeLib/FakeLib.fsproj +++ b/src/app/FakeLib/FakeLib.fsproj @@ -269,6 +269,9 @@ Fake.DotNet.Testing.OpenCover/OpenCover.fs + + Fake.Api.Slack/SlackNotification.fs + @@ -2708,4 +2711,4 @@ - \ No newline at end of file + From b396b8b477e1c099e24d1f1eb8356e1b9c0df461 Mon Sep 17 00:00:00 2001 From: Volodymyr Lukashevych Date: Thu, 31 Aug 2017 21:40:54 -0700 Subject: [PATCH 12/25] Use HttpClient for NET Core, update Fake-netcore.sln --- build.fsx | 3 ++- src/Fake-netcore.sln | 15 +++++++++++++++ src/app/Fake.Api.Slack/Fake.Api.Slack.fsproj | 10 +++------- src/app/Fake.Api.Slack/SlackNotification.fs | 11 ++++++++++- 4 files changed, 30 insertions(+), 9 deletions(-) diff --git a/build.fsx b/build.fsx index cc52cd1e598..3a081371bdd 100644 --- a/build.fsx +++ b/build.fsx @@ -220,7 +220,8 @@ let common = [ // New FAKE libraries let dotnetAssemblyInfos = - [ "Fake.Core.BuildServer", "Buildserver Support" + [ "Fake.Api.Slack", "Slack Integration Support" + "Fake.Core.BuildServer", "Buildserver Support" "Fake.Core.Context", "Core Context Infrastructure" "Fake.Core.Environment", "Environment Detection" "Fake.Core.Globbing", "Filesystem Globbing Support and Operators" diff --git a/src/Fake-netcore.sln b/src/Fake-netcore.sln index 80626caea49..d3f403fdfb5 100644 --- a/src/Fake-netcore.sln +++ b/src/Fake-netcore.sln @@ -67,6 +67,8 @@ Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Testing.SonarQube", "a 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}" EndProject +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fake.Api.Slack", "app\Fake.Api.Slack\Fake.Api.Slack.fsproj", "{58A3EDF0-CA9D-4757-B1E8-2A4E3592B308}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -452,6 +454,18 @@ Global {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|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|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 EndGlobalSection GlobalSection(NestedProjects) = preSolution {E2CF8635-E7C4-4470-92DD-F706F052BF7B} = {7BFFAE76-DEE9-417A-A79B-6A6644C4553A} @@ -484,5 +498,6 @@ Global {CDFB2B10-050A-4188-8F72-2BCC61E9814F} = {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} EndGlobalSection EndGlobal diff --git a/src/app/Fake.Api.Slack/Fake.Api.Slack.fsproj b/src/app/Fake.Api.Slack/Fake.Api.Slack.fsproj index 632394d3617..71047219d0f 100644 --- a/src/app/Fake.Api.Slack/Fake.Api.Slack.fsproj +++ b/src/app/Fake.Api.Slack/Fake.Api.Slack.fsproj @@ -9,6 +9,9 @@ Library $(PackageTargetFallback);portable-net45+win8;dnxcore50 + + $(DefineConstants);NETSTANDARD;USE_HTTPCLIENT + $(DefineConstants);RELEASE @@ -16,13 +19,6 @@ - - - - - - - + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) true $(MSBuildThisFileDirectory) @@ -236,4 +239,4 @@ NuspecProperties="$(NuspecProperties)"/> - \ No newline at end of file + diff --git a/paket.dependencies b/paket.dependencies index 333d5bd5695..dfd03de905d 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -1,4 +1,4 @@ -version 5.96.2 +version 5.96.3 content: none // just in case we need some special nuget feature again... //source https://ci.appveyor.com/nuget/paket diff --git a/paket.lock b/paket.lock index d26641ba0a3..e1a1719e046 100644 --- a/paket.lock +++ b/paket.lock @@ -218,7 +218,7 @@ NUGET NUnit.Extension.VSProjectLoader (3.6) Octokit (0.26) NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.1) - Paket.Core (5.96.2) + Paket.Core (5.96.3) Chessie (>= 0.6) FSharp.Compiler.Tools - restriction: < netstandard1.6 FSharp.Core - restriction: < netstandard1.6 @@ -1941,7 +1941,7 @@ NUGET System.Runtime.Serialization.Formatters (>= 4.3) System.Runtime.Serialization.Primitives (>= 4.3) System.Xml.XmlDocument (>= 4.3) - Paket.Core (5.96.2) + Paket.Core (5.96.3) Chessie (>= 0.6) Mono.Cecil (>= 0.10.0-beta6) Newtonsoft.Json (>= 10.0.3) @@ -3866,7 +3866,7 @@ 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) - Paket.Core (5.96.2) + Paket.Core (5.96.3) Chessie (>= 0.6) FSharp.Compiler.Tools - restriction: < netstandard1.6 FSharp.Core - restriction: < netstandard1.6 From f6e7fee44bca64d95fcc65233ddcfc7906cf1eec Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 17 Sep 2017 23:15:03 +0200 Subject: [PATCH 21/25] update paket --- paket.dependencies | 2 +- paket.lock | 146 ++++++++++++++-------------- src/app/Fake.Runtime/FakeRuntime.fs | 4 +- 3 files changed, 76 insertions(+), 76 deletions(-) diff --git a/paket.dependencies b/paket.dependencies index dfd03de905d..b0f11588eb5 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -1,4 +1,4 @@ -version 5.96.3 +version 5.96.4 content: none // just in case we need some special nuget feature again... //source https://ci.appveyor.com/nuget/paket diff --git a/paket.lock b/paket.lock index e1a1719e046..fab600ec2d4 100644 --- a/paket.lock +++ b/paket.lock @@ -218,7 +218,7 @@ NUGET NUnit.Extension.VSProjectLoader (3.6) Octokit (0.26) NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.1) - Paket.Core (5.96.3) + Paket.Core (5.96.4) Chessie (>= 0.6) FSharp.Compiler.Tools - restriction: < netstandard1.6 FSharp.Core - restriction: < netstandard1.6 @@ -733,7 +733,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= net463) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (>= net46) (< netstandard1.4)) (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (>= net461) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) - System.Security.Cryptography.Cng (4.4) - restriction: || (&& (>= net46) (>= dnxcore50)) (&& (>= net46) (>= netstandard1.6)) (>= dnxcore50) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) + System.Security.Cryptography.Cng (4.4) - restriction: || (&& (>= net46) (>= netstandard1.6)) (>= dnxcore50) (&& (>= netstandard1.6) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 System.IO (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net46) (>= netstandard1.3) (< netstandard1.4) (< monoandroid)) (&& (< net46) (>= netstandard1.4) (< netstandard1.6) (< monoandroid)) (&& (>= netstandard1.6) (< netstandard2.0) (< monotouch) (< xamarintvos) (< xamarinwatchos) (< xamarinios) (< xamarinmac)) @@ -1719,9 +1719,9 @@ NUGET System.Threading.Thread (>= 4.0) System.Threading.ThreadPool (>= 4.0.10) System.Threading.Timer (>= 4.0.1) - Libuv (1.9.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) + Libuv (1.9.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.0.1) - Microsoft.CodeAnalysis.Analyzers (1.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) + Microsoft.CodeAnalysis.Analyzers (1.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) Microsoft.CodeAnalysis.Common (1.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) Microsoft.CodeAnalysis.Analyzers (>= 1.1) System.AppContext (>= 4.1) @@ -1762,9 +1762,9 @@ NUGET System.Xml.XDocument (>= 4.0.11) System.Xml.XmlDocument (>= 4.0.1) System.Xml.XPath.XDocument (>= 4.0.1) - Microsoft.CodeAnalysis.CSharp (1.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) + Microsoft.CodeAnalysis.CSharp (1.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) Microsoft.CodeAnalysis.Common (1.3) - Microsoft.CodeAnalysis.VisualBasic (1.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) + Microsoft.CodeAnalysis.VisualBasic (1.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) Microsoft.CodeAnalysis.Common (>= 1.3) Microsoft.CSharp (4.3) System.Collections (>= 4.3) @@ -1783,7 +1783,7 @@ NUGET System.Runtime.Extensions (>= 4.3) System.Runtime.InteropServices (>= 4.3) System.Threading (>= 4.3) - Microsoft.DiaSymReader.Native (1.4.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + Microsoft.DiaSymReader.Native (1.4.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) Microsoft.DotNet.PlatformAbstractions (1.1.2) System.AppContext (>= 4.1) System.Collections (>= 4.0.11) @@ -1794,50 +1794,50 @@ NUGET System.Runtime.InteropServices (>= 4.1) System.Runtime.InteropServices.RuntimeInformation (>= 4.0) Microsoft.NETCore.App (1.1.2) - Libuv (>= 1.9.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) - Microsoft.CodeAnalysis.CSharp (>= 1.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) - Microsoft.CodeAnalysis.VisualBasic (>= 1.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) - Microsoft.CSharp (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - Microsoft.DiaSymReader.Native (>= 1.4.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - Microsoft.NETCore.DotNetHostPolicy (>= 1.1.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - Microsoft.NETCore.Runtime.CoreCLR (>= 1.1.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - Microsoft.VisualBasic (>= 10.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Buffers (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Collections.Immutable (>= 1.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.ComponentModel (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.ComponentModel.Annotations (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Diagnostics.DiagnosticSource (>= 4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Diagnostics.Process (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Globalization.Extensions (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.IO.FileSystem.Watcher (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.IO.MemoryMappedFiles (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.IO.UnmanagedMemoryStream (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Linq.Parallel (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Linq.Queryable (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Net.Http (>= 4.3.2) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Net.NameResolution (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Net.Requests (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Net.Security (>= 4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Net.WebHeaderCollection (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Numerics.Vectors (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Reflection.DispatchProxy (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Reflection.Metadata (>= 1.4.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Resources.Reader (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Runtime.Loader (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Threading.Tasks.Dataflow (>= 4.7) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Threading.Tasks.Parallel (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Threading.Thread (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) - System.Threading.ThreadPool (>= 4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + Libuv (>= 1.9.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) + Microsoft.CodeAnalysis.CSharp (>= 1.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) + Microsoft.CodeAnalysis.VisualBasic (>= 1.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) + Microsoft.CSharp (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + Microsoft.DiaSymReader.Native (>= 1.4.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + Microsoft.NETCore.DotNetHostPolicy (>= 1.1.2) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + Microsoft.NETCore.Runtime.CoreCLR (>= 1.1.2) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + Microsoft.VisualBasic (>= 10.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Buffers (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Collections.Immutable (>= 1.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.ComponentModel (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.ComponentModel.Annotations (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Diagnostics.DiagnosticSource (>= 4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Diagnostics.Process (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Globalization.Extensions (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.IO.FileSystem.Watcher (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.IO.MemoryMappedFiles (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.IO.UnmanagedMemoryStream (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Linq.Parallel (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Linq.Queryable (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Net.Http (>= 4.3.2) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Net.NameResolution (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Net.Requests (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Net.Security (>= 4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Net.WebHeaderCollection (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Numerics.Vectors (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Reflection.DispatchProxy (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Reflection.Metadata (>= 1.4.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Resources.Reader (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Runtime.Loader (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Threading.Tasks.Dataflow (>= 4.7) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Threading.Tasks.Parallel (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Threading.Thread (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Threading.ThreadPool (>= 4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) Microsoft.NETCore.DotNetHost (1.1) Microsoft.NETCore.DotNetHostPolicy (1.1.2) Microsoft.NETCore.DotNetHostResolver (>= 1.1) @@ -1850,7 +1850,7 @@ NUGET Microsoft.NETCore.Windows.ApiSets (>= 1.0.1) Microsoft.NETCore.Targets (1.1) Microsoft.NETCore.Windows.ApiSets (1.0.1) - Microsoft.VisualBasic (10.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + Microsoft.VisualBasic (10.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) System.Collections (>= 4.3) System.Diagnostics.Debug (>= 4.3) System.Dynamic.Runtime (>= 4.3) @@ -1941,7 +1941,7 @@ NUGET System.Runtime.Serialization.Formatters (>= 4.3) System.Runtime.Serialization.Primitives (>= 4.3) System.Xml.XmlDocument (>= 4.3) - Paket.Core (5.96.3) + Paket.Core (5.96.4) Chessie (>= 0.6) Mono.Cecil (>= 0.10.0-beta6) Newtonsoft.Json (>= 10.0.3) @@ -1965,7 +1965,7 @@ NUGET runtime.native.System.Net.Http (4.3) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Net.Security (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + runtime.native.System.Net.Security (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) runtime.native.System.Security.Cryptography.Apple (4.3) @@ -2038,7 +2038,7 @@ NUGET System.Threading (>= 4.3) System.ComponentModel (4.3) System.Runtime (>= 4.3) - System.ComponentModel.Annotations (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.ComponentModel.Annotations (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) System.Collections (>= 4.3) System.ComponentModel (>= 4.3) System.Globalization (>= 4.3) @@ -2118,7 +2118,7 @@ NUGET System.Threading.Tasks (>= 4.3) System.Threading.Thread (>= 4.3) System.Threading.ThreadPool (>= 4.3) - System.Diagnostics.StackTrace (4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) + System.Diagnostics.StackTrace (4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) System.Collections.Immutable (>= 1.2) System.IO.FileSystem (>= 4.0.1) System.Reflection (>= 4.1) @@ -2217,7 +2217,7 @@ NUGET System.Threading.Tasks (>= 4.3) System.IO.FileSystem.Primitives (4.3) System.Runtime (>= 4.3) - System.IO.FileSystem.Watcher (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.IO.FileSystem.Watcher (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.Win32.Primitives (>= 4.3) runtime.native.System (>= 4.3) @@ -2234,7 +2234,7 @@ NUGET System.Threading.Overlapped (>= 4.3) System.Threading.Tasks (>= 4.3) System.Threading.Thread (>= 4.3) - System.IO.MemoryMappedFiles (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.IO.MemoryMappedFiles (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.1) runtime.native.System (>= 4.3) System.IO (>= 4.3) @@ -2329,7 +2329,7 @@ NUGET System.Text.Encoding (>= 4.3) System.Threading (>= 4.3) System.Threading.Tasks (>= 4.3) - System.Net.NameResolution (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Net.NameResolution (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.1) runtime.native.System (>= 4.3) System.Collections (>= 4.3) @@ -2363,7 +2363,7 @@ NUGET System.Runtime (>= 4.3) System.Threading (>= 4.3) System.Threading.Tasks (>= 4.3) - System.Net.Security (4.3.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Net.Security (4.3.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.Win32.Primitives (>= 4.3) runtime.native.System (>= 4.3) @@ -2404,7 +2404,7 @@ NUGET System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) System.Runtime.Extensions (>= 4.3) - System.Numerics.Vectors (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Numerics.Vectors (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) System.Globalization (>= 4.3) System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) @@ -2421,7 +2421,7 @@ NUGET System.IO (>= 4.3) System.Reflection.Primitives (>= 4.3) System.Runtime (>= 4.3) - System.Reflection.DispatchProxy (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Reflection.DispatchProxy (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) System.Collections (>= 4.3) System.Linq (>= 4.3) System.Reflection (>= 4.3) @@ -2476,7 +2476,7 @@ NUGET System.Reflection.TypeExtensions (4.3) System.Reflection (>= 4.3) System.Runtime (>= 4.3) - System.Resources.Reader (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Resources.Reader (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) System.IO (>= 4.3) System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) @@ -2646,7 +2646,7 @@ NUGET System.Threading (>= 4.3) System.Security.Principal (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) System.Runtime (>= 4.3) - System.Security.Principal.Windows (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Security.Principal.Windows (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.Win32.Primitives (>= 4.3) System.Collections (>= 4.3) @@ -2665,7 +2665,7 @@ NUGET Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) - System.Text.Encoding.CodePages (4.0.1) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) + System.Text.Encoding.CodePages (4.0.1) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.0)) (== netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.0.1) System.Collections (>= 4.0.11) System.Globalization (>= 4.0.11) @@ -2684,16 +2684,16 @@ NUGET System.Runtime (>= 4.3) System.Text.Encoding (>= 4.3) System.Text.RegularExpressions (4.3) - System.Collections (>= 4.3) - restriction: || (== netstandard1.6) (&& (== netcoreapp1.1) (>= dnxcore50)) - System.Globalization (>= 4.3) - restriction: || (== netstandard1.6) (&& (== netcoreapp1.1) (>= dnxcore50)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard1.6) (&& (== netcoreapp1.1) (>= dnxcore50)) + System.Collections (>= 4.3) - restriction: || (== netstandard1.6) (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netcoreapp1.1) (>= dnxcore50)) + System.Globalization (>= 4.3) - restriction: || (== netstandard1.6) (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netcoreapp1.1) (>= dnxcore50)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard1.6) (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netcoreapp1.1) (>= dnxcore50)) System.Runtime (>= 4.3) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard1.6) (&& (== netcoreapp1.1) (>= dnxcore50)) - System.Threading (>= 4.3) - restriction: || (== netstandard1.6) (&& (== netcoreapp1.1) (>= dnxcore50)) + System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard1.6) (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netcoreapp1.1) (>= dnxcore50)) + System.Threading (>= 4.3) - restriction: || (== netstandard1.6) (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netcoreapp1.1) (>= dnxcore50)) System.Threading (4.3) System.Runtime (>= 4.3) System.Threading.Tasks (>= 4.3) - System.Threading.Overlapped (4.3) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Threading.Overlapped (4.3) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) Microsoft.NETCore.Platforms (>= 1.1) System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) @@ -2702,7 +2702,7 @@ NUGET Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) System.Runtime (>= 4.3) - System.Threading.Tasks.Dataflow (4.7) - restriction: || (&& (== netstandard1.6) (== netcoreapp1.1)) (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) + System.Threading.Tasks.Dataflow (4.7) - restriction: || (&& (== netstandard1.6) (>= netcoreapp1.1)) (== netcoreapp1.1) System.Collections (>= 4.3) System.Collections.Concurrent (>= 4.3) System.Diagnostics.Debug (>= 4.3) @@ -3866,7 +3866,7 @@ 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) - Paket.Core (5.96.3) + Paket.Core (5.96.4) Chessie (>= 0.6) FSharp.Compiler.Tools - restriction: < netstandard1.6 FSharp.Core - restriction: < netstandard1.6 diff --git a/src/app/Fake.Runtime/FakeRuntime.fs b/src/app/Fake.Runtime/FakeRuntime.fs index 421c1763f68..e79662dc8ea 100644 --- a/src/app/Fake.Runtime/FakeRuntime.fs +++ b/src/app/Fake.Runtime/FakeRuntime.fs @@ -115,7 +115,7 @@ let paketCachingProvider printDetails cacheDir (paketDependencies:Paket.Dependen let lockFile = paketDependencies.GetLockFile() let (cache:DependencyCache) = DependencyCache(paketDependencies.GetDependenciesFile(), lockFile) if printDetails then Trace.log "Setup DependencyCache..." - cache.SetupGroup groupName + cache.SetupGroup groupName |> ignore let orderedGroup = cache.OrderedGroups groupName // lockFile.GetGroup groupName // Write loadDependencies file (basically only for editor support) @@ -143,7 +143,7 @@ let paketCachingProvider printDetails cacheDir (paketDependencies:Paket.Dependen |> RuntimeGraph.mergeSeq // Retrieve assemblies - if printDetails then Trace.log <| sprintf "Retrieving the assemblies..." + if printDetails then Trace.log <| sprintf "Retrieving the assemblies (rid: '%O')..." rid orderedGroup |> Seq.filter (fun p -> if p.Name.ToString() = "Microsoft.FSharp.Core.netcore" then From bcfc351138674ed57c49bb02d2bac1a26f449a9c Mon Sep 17 00:00:00 2001 From: "Sean.Amos" Date: Sun, 17 Sep 2017 23:30:31 +0200 Subject: [PATCH 22/25] Fixed the tooltip position and improved the styling in the api reference documents --- help/content/assets/css/style.css | 51 ++++++++++++++++++++++++++++++- help/content/assets/js/tips.js | 6 ---- 2 files changed, 50 insertions(+), 7 deletions(-) diff --git a/help/content/assets/css/style.css b/help/content/assets/css/style.css index 7cd386cc26b..0124c097989 100644 --- a/help/content/assets/css/style.css +++ b/help/content/assets/css/style.css @@ -42,6 +42,9 @@ div.tip { display:none; color:#d1d1d1; } +div.tip strong { + color:#d1d1d1; +} table.pre pre { padding:0px; margin:0px; @@ -70,6 +73,7 @@ table.pre td { padding:0px; white-space:normal; margin:0px; + border:none; } table.pre td.lines { width:30px; @@ -142,7 +146,7 @@ hr { } /* Make table headings and td.title bold */ -td.title, thead { +td.title, thead tr td { font-weight:bold; } @@ -204,6 +208,51 @@ td.title, thead { .github-link .normal { display: block; } .github-link:hover .normal { display: none; } +.member-name code { + padding: 2px 4px; + color: #d14; + background-color: #f7f7f9; + border: 1px solid #e1e1e8; + font-family: Monaco,Menlo,Consolas,'Courier New', monospace; + font-size: 12px; + border-radius: 3px; +} + +table { + max-width: 100%; + background-color: transparent; + border-spacing: 0; +} + +.table-bordered { + border: 1px solid #dddddd; + border-collapse: separate; + border-left: 0; + border-radius: 4px; +} + +.table caption+thead tr:first-child th, +.table caption+thead tr:first-child td, +.table colgroup+thead tr:first-child th, +.table colgroup+thead tr:first-child td, +.table thead:first-child tr:first-child th, +.table thead:first-child tr:first-child td { + border-top: 0; +} + +.table th, .table td { + padding: 8px; + line-height: 20px; + text-align: left; + vertical-align: top; + border-top: 1px solid #dddddd; +} + +.table-bordered th, .table-bordered td { + border-left: 1px solid #dddddd; +} + + /*-------------------------------------------------------------------------- Additional formatting for the homepage /*--------------------------------------------------------------------------*/ diff --git a/help/content/assets/js/tips.js b/help/content/assets/js/tips.js index 2b125bada57..01001a7b21c 100644 --- a/help/content/assets/js/tips.js +++ b/help/content/assets/js/tips.js @@ -33,14 +33,8 @@ function showTip(evt, name, unique, owner) { currentTip = unique; currentTipElement = name; - var pos = findPos(owner ? owner : (evt.srcElement ? evt.srcElement : evt.target)); - var posx = pos[0]; - var posy = pos[1]; - var el = document.getElementById(name); var parent = (document.documentElement == null) ? document.body : document.documentElement; el.style.position = "absolute"; - el.style.left = posx + "px"; - el.style.top = posy + "px"; el.style.display = "block"; } \ No newline at end of file From df62ea8ed7635794b6835fd11785c03a1e7a256c Mon Sep 17 00:00:00 2001 From: "Sean.Amos" Date: Mon, 18 Sep 2017 01:50:05 +0200 Subject: [PATCH 23/25] Reduced size of "Parameters" and "Samples". Mode parameters in "code" elements styled --- help/content/assets/css/style.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/help/content/assets/css/style.css b/help/content/assets/css/style.css index 0124c097989..e4edbf0a174 100644 --- a/help/content/assets/css/style.css +++ b/help/content/assets/css/style.css @@ -208,7 +208,13 @@ td.title, thead tr td { .github-link .normal { display: block; } .github-link:hover .normal { display: none; } -.member-name code { +#content .member-list .xmldoc h2 { + margin-top: 0; + font-size: 1em; +} + +.member-list td > code, +.member-list li > code { padding: 2px 4px; color: #d14; background-color: #f7f7f9; From 5dce70cafd941949bb1e931533ea8db60a5a4d33 Mon Sep 17 00:00:00 2001 From: Volodymyr Lukashevych Date: Sun, 17 Sep 2017 22:17:06 -0700 Subject: [PATCH 24/25] Remove [] --- src/app/Fake.Api.Slack/SlackNotification.fs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/app/Fake.Api.Slack/SlackNotification.fs b/src/app/Fake.Api.Slack/SlackNotification.fs index d932ac315f2..94cbd43c0ce 100644 --- a/src/app/Fake.Api.Slack/SlackNotification.fs +++ b/src/app/Fake.Api.Slack/SlackNotification.fs @@ -10,7 +10,6 @@ open Newtonsoft.Json /// Contains a task to send notification messages to a [Slack](https://slack.com/) webhook module Slack = /// The Slack notification attachment field parameter type - [] type NotificationAttachmentFieldParams = { /// (Required) The field title Title: string @@ -21,7 +20,6 @@ module Slack = } /// The Slack notification attachment parameter type - [] type NotificationAttachmentParams = { /// (Required) Text summary of the attachment that is shown by clients that understand attachments but choose not to show them Fallback: string @@ -40,7 +38,6 @@ module Slack = } /// The Slack notification parameter type - [] type NotificationParams = { /// (Required) The message body Text: string @@ -120,15 +117,15 @@ module Slack = /// - `setParams` - Function used to override the default notification parameters let SendNotification (webhookURL : string) (setParams: NotificationParams -> NotificationParams) = let sendNotification param = - #if NETSTANDARD +#if NETSTANDARD use client = (new HttpClient()) let response = client.PostAsync(webhookURL, new StringContent(SerializeData param, System.Text.Encoding.UTF8, "application/json")).Result response.Content.ReadAsStringAsync().Result - #else +#else use client = (new WebClient()) client.Headers.Add(HttpRequestHeader.ContentType, "application/json") client.UploadString(webhookURL, "POST", SerializeData param) - #endif +#endif NotificationDefaults |> setParams |> ValidateParams webhookURL From 11e2c0d0b103dac697a47f487247217670ea7f76 Mon Sep 17 00:00:00 2001 From: Volodymyr Lukashevych Date: Sun, 17 Sep 2017 22:27:10 -0700 Subject: [PATCH 25/25] Remove '_' from the type definitions --- src/app/Fake.Api.Slack/SlackNotification.fs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/app/Fake.Api.Slack/SlackNotification.fs b/src/app/Fake.Api.Slack/SlackNotification.fs index 94cbd43c0ce..c0c940c705d 100644 --- a/src/app/Fake.Api.Slack/SlackNotification.fs +++ b/src/app/Fake.Api.Slack/SlackNotification.fs @@ -26,7 +26,7 @@ module Slack = /// The title of the attachment Title: string /// Content to which the title should link - Title_Link: string + TitleLink: string /// Text that should appear within the attachment Text: string /// Text that should appear above the formatted data @@ -46,15 +46,15 @@ module Slack = /// Channel to which the message will be posted. Default value: Specified in your Slack Webhook configuration. Channel: string /// The icon to be displayed with the message. Default value: Specified in your slack Webhook configuration. - Icon_URL: string + IconURL: string /// The emoji to be displayed with the message. Default value: Specified in your slack Webhook configuration. - Icon_Emoji: string + IconEmoji: string /// Whether to force inline unfurling of attached links. Default value: false. - Unfurl_Links: bool + UnfurlLinks: bool // Richly formatted message attachments for the notification Attachments: NotificationAttachmentParams[] // Whether or not to link names of users or channels (beginning with @ or #), Default value : false - Link_Names: bool + LinkNames: bool } /// The default Slack notification parameters @@ -62,18 +62,18 @@ module Slack = Text = "" From = null Channel = null - Icon_URL = null - Icon_Emoji = null - Unfurl_Links = false + IconURL = null + IconEmoji = null + UnfurlLinks = false Attachments = Array.empty - Link_Names = false + LinkNames = false } /// The default parameters for Slack notification attachments let NotificationAttachmentDefaults = { Fallback = "" Title = null - Title_Link = null + TitleLink = null Text = null Pretext = null Color = null