diff --git a/.gitignore b/.gitignore index a7853c474..a155cd48b 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,8 @@ obj/ packages/ paket-files/ tools/ + +.paket/* +!.paket/*.proj +!.paket/*.props +!.paket/*.targets \ No newline at end of file diff --git a/.paket/Paket.Restore.targets b/.paket/Paket.Restore.targets index feb52234b..2d7572e5b 100644 --- a/.paket/Paket.Restore.targets +++ b/.paket/Paket.Restore.targets @@ -11,23 +11,49 @@ $(MSBuildThisFileDirectory)..\ $(PaketRootPath)paket-files\paket.restore.cached $(PaketRootPath)paket.lock + classic + proj + assembly + native /Library/Frameworks/Mono.framework/Commands/mono mono - - $(PaketRootPath)paket.exe - $(PaketToolsPath)paket.exe - "$(PaketExePath)" - $(MonoPath) --runtime=v4.0.30319 "$(PaketExePath)" - + + $(PaketRootPath)paket.bootstrapper.exe + $(PaketToolsPath)paket.bootstrapper.exe + $([System.IO.Path]::GetDirectoryName("$(PaketBootStrapperExePath)"))\ + + + + + $(PaketRootPath)paket.exe + $(PaketToolsPath)paket.exe + $(PaketToolsPath)paket.exe + $(_PaketBootStrapperExeDir)paket.exe + paket.exe + + + $(PaketRootPath)paket + $(PaketToolsPath)paket + $(PaketToolsPath)paket + + + $(PaketRootPath)paket.exe + $(PaketToolsPath)paket.exe + + + $(PaketBootStrapperExeDir)paket.exe + + + paket + + <_PaketExeExtension>$([System.IO.Path]::GetExtension("$(PaketExePath)")) - dotnet "$(PaketExePath)" + dotnet "$(PaketExePath)" + $(MonoPath) --runtime=v4.0.30319 "$(PaketExePath)" + "$(PaketExePath)" - - "$(PaketExePath)" - $(PaketRootPath)paket.bootstrapper.exe - $(PaketToolsPath)paket.bootstrapper.exe "$(PaketBootStrapperExePath)" $(MonoPath) --runtime=v4.0.30319 "$(PaketBootStrapperExePath)" @@ -38,7 +64,11 @@ true - + + + + + @@ -77,7 +107,7 @@ - + @@ -141,15 +171,17 @@ + $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',').Length) $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[0]) $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[1]) $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[4]) - $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[5]) + $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[5]) %(PaketReferencesFileLinesInfo.PackageVersion) All - runtime + runtime + runtime true @@ -182,19 +214,27 @@ false + $(MSBuildVersion) + 15.8.0 <_NuspecFilesNewLocation Include="$(BaseIntermediateOutputPath)$(Configuration)\*.nuspec"/> + + $(MSBuildProjectDirectory)/$(MSBuildProjectFile) true - false - true + false + true + false + true + false + true $(BaseIntermediateOutputPath)$(Configuration) $(BaseIntermediateOutputPath) @@ -209,9 +249,52 @@ - - + + - + + + + + $(MSBuildThisFileDirectory.TrimEnd('\\').TrimEnd('/')) + + $(RepoRoot)\paket.bootstrapper.exe + $(RepoRoot)/paket.bootstrapper + $(RepoRoot)\paket.exe + $(RepoRoot)/paket + + + + + + dotnet tool install paket.bootstrapper --tool-path "$(RepoRoot)" + $(InstallBootstrapperCommand) --version "[$(PaketBootstrapperVersion)]" + $(InstallBootstrapperCommand) --add-source "$(PaketBootstrapperFeed)" + $(InstallBootstrapperCommand) $(InstallBootstrapperOtherArgs)" + + + + + + + + $(PaketBootstrapperExe) --as-tool --output-dir=$(RepoRoot) + $(RunBootstrapperCommand) --config-file=$(RepoRoot)/paket.bootstrapper.exe.config + $(RunBootstrapperCommand) $(RunBootstrapperOtherArgs) + + + + + + + + + + + + diff --git a/.paket/paket.bootstrapper.props b/.paket/paket.bootstrapper.props new file mode 100644 index 000000000..2c7f362af --- /dev/null +++ b/.paket/paket.bootstrapper.props @@ -0,0 +1,8 @@ + + + + 5.180.414 + https://www.myget.org/F/paket-netcore-as-tool/api/v2 + + + diff --git a/.paket/paket.exe b/.paket/paket.exe deleted file mode 100644 index 7fd4bf0f2..000000000 Binary files a/.paket/paket.exe and /dev/null differ diff --git a/.travis.yml b/.travis.yml index f33232104..281529b19 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: csharp -dist: trusty +dist: xenial sudo: false -dotnet: 2.1.101 +dotnet: 2.1.500 matrix: fast_finish: true @@ -27,10 +27,10 @@ matrix: - mono: weekly - mono: latest + addons: apt: packages: - - dotnet-sharedframework-microsoft.netcore.app-1.1.2 - libzmq3-dev env: @@ -40,7 +40,7 @@ env: - TMPDIR=/tmp script: - - travis_wait ./build.sh + - travis_wait ./fake.sh build notifications: - email: false + email: false \ No newline at end of file diff --git a/appveyor.yml b/appveyor.yml index c1587f227..c14db5ca5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,8 +1,7 @@ image: - - Visual Studio 2015 - Visual Studio 2017 build_script: - - cmd: build.cmd + - cmd: fake.cmd build test: off \ No newline at end of file diff --git a/build.cmd b/build.cmd deleted file mode 100644 index e0bb79810..000000000 --- a/build.cmd +++ /dev/null @@ -1,3 +0,0 @@ -@echo off -.\.paket\paket.exe restore -packages\build\FAKE\tools\FAKE.exe build.fsx %* diff --git a/build.fsx b/build.fsx index 1f6f7011c..63513bfbc 100644 --- a/build.fsx +++ b/build.fsx @@ -1,11 +1,28 @@ -#r @"packages/build/FAKE/tools/FakeLib.dll" -open Fake +#r "paket: groupref Build //" + +#load "./.fake/build.fsx/intellisense.fsx" + +// https://github.com/ionide/ionide-vscode-fsharp/issues/839#issuecomment-396296095 +#if !FAKE + #r "Facades/netstandard" +#endif + open System open System.IO +open Fake.Core +open Fake.DotNet +open Fake.IO +open Fake.Tools +open Fake.IO.Globbing.Operators +open Fake.Core.TargetOperators +open Fake.Api +open Fake.BuildServer +open Fake.SystemHelper Environment.CurrentDirectory <- __SOURCE_DIRECTORY__ -let configuration = environVarOrDefault "CONFIGURATION" "Release" -let release = IO.File.ReadAllLines "RELEASE_NOTES.md" |> ReleaseNotesHelper.parseReleaseNotes + +let configuration = Environment.environVarOrDefault "CONFIGURATION" "Release" +let release = ReleaseNotes.load "RELEASE_NOTES.md" let description = "Logary is a high performance, multi-target logging, metric and health-check library for mono and .Net." let tags = "structured logging f# logs logging performance metrics semantic" let authors = "Henrik Feldt" @@ -15,13 +32,14 @@ let iconUrl = "https://raw.githubusercontent.com/logary/logary-assets/master/gra let licenceUrl = "https://raw.githubusercontent.com/logary/logary/master/LICENSE.md" let copyright = sprintf "Copyright \169 %i Henrik Feldt" DateTime.Now.Year -Target "Clean" (fun _ -> - !!"./src/**/bin/" ++ "./src/**/obj/" ++ "./artifacts" - |> CleanDirs) +Target.create "Clean" (fun _ -> + // This line actually ensures we get the correct version checked in + // instead of the one previously bundled with 'fake` + Git.CommandHelper.gitCommand "" "checkout .paket/Paket.Restore.targets" + !!"./**/bin/" ++ "./**/obj/" ++ "./artifacts" + |> Shell.cleanDirs) -open AssemblyInfoFile - -Target "AssemblyInfo" (fun _ -> +Target.create "AssemblyInfo" (fun _ -> [ yield "Logary", None yield "Logary.Tests", None yield "Logary.Facade", None @@ -33,14 +51,14 @@ Target "AssemblyInfo" (fun _ -> yield "Logary.Services.Rutta", Some "services" ] |> Seq.iter (fun (proj, subPath) -> - [ Attribute.Title proj - Attribute.Product proj - Attribute.Copyright copyright - Attribute.Description description - Attribute.Version release.AssemblyVersion - Attribute.FileVersion release.AssemblyVersion + [ AssemblyInfo.Title proj + AssemblyInfo.Product proj + AssemblyInfo.Copyright copyright + AssemblyInfo.Description description + AssemblyInfo.Version release.AssemblyVersion + AssemblyInfo.FileVersion release.AssemblyVersion ] - |> CreateFSharpAssemblyInfo ( + |> AssemblyInfoFile.createFSharp ( match subPath with | None -> sprintf "src/%s/AssemblyInfo.fs" proj | Some path -> sprintf "src/%s/%s/AssemblyInfo.fs" path proj) @@ -48,9 +66,9 @@ Target "AssemblyInfo" (fun _ -> ) let replace fromStr toStr path = - FileHelper.ReplaceInFiles [fromStr, toStr] [path] + Shell.replaceInFiles [fromStr, toStr] [path] -Target "PaketFiles" (fun _ -> +Target.create "PaketFiles" (fun _ -> replace "module FsMtParserFull" "module Logary.Internals.FsMtParserFull" "paket-files/messagetemplates/messagetemplates-fsharp/src/FsMtParser/FsMtParserFull.fs" @@ -79,38 +97,33 @@ Target "PaketFiles" (fun _ -> "paket-files/logary/logary/src/Logary.CSharp.Facade/Facade.cs" ) -Target "ProjectVersion" (fun _ -> +Target.create "ProjectVersion" (fun _ -> !! "src/*/*.fsproj" |> Seq.iter (fun file -> printfn "Changing file %s" file - XMLHelper.XmlPoke file "Project/PropertyGroup/Version/text()" release.NugetVersion) + Xml.poke file "Project/PropertyGroup/Version/text()" release.NugetVersion) ) -Target "TCReportVersion" (fun _ -> +Target.create "TCReportVersion" (fun _ -> [ yield "version", release.SemVer.ToString() yield "major", string release.SemVer.Major yield "minor", string release.SemVer.Minor - yield "build", release.SemVer.Build + yield "build", string release.SemVer.Build yield "special", release.SemVer.PreRelease |> Option.map (sprintf "%O") |> function None -> "" | Some x -> x ] |> Seq.filter (snd >> String.IsNullOrWhiteSpace >> not) - |> Seq.iter (fun (name, value) -> TeamCityHelper.SetTeamCityParameter (sprintf "ver.%s" name) value) -) - -Target "Restore" (fun _ -> - DotNetCli.Restore (fun p -> { p with WorkingDir = "src" }) + |> Seq.iter (fun (name, value) -> TeamCity.setParameter (sprintf "ver.%s" name) value) ) /// This also restores. -Target "Build" (fun _ -> - DotNetCli.Build (fun p -> +Target.create "Build" (fun _ -> + DotNet.build (fun p -> { p with - Configuration = configuration - Project = "src/Logary.sln" - }) + Configuration = DotNet.BuildConfiguration.Custom configuration + }) "src/Logary.sln" ) -Target "Tests" (fun _ -> +Target.create "Tests" (fun _ -> let commandLine (file: string) = let projectName = file.Substring(0, file.Length - ".fsproj".Length) |> Path.GetFileName let path = Path.GetDirectoryName file @@ -119,7 +132,7 @@ Target "Tests" (fun _ -> !! "src/tests/**/*.fsproj" !! "src/*.Tests/*.fsproj" ] - |> Seq.iter (commandLine >> DotNetCli.RunCommand id)) + |> Seq.iter (commandLine >> DotNet.exec id "" >> ignore)) let packParameters name = [ "--no-build" @@ -130,7 +143,7 @@ let packParameters name = sprintf "/p:Owners=\"%s\"" owners "/p:PackageRequireLicenseAcceptance=false" sprintf "/p:Description=\"%s\"" (description.Replace(",","")) - sprintf "/p:PackageReleaseNotes=\"%O\"" ((toLines release.Notes).Replace(",","").Replace(";", "—")) + sprintf "/p:PackageReleaseNotes=\"%O\"" ((release.Notes |> String.toLines).Replace(",","").Replace(";", "—")) sprintf "/p:Copyright=\"%s\"" copyright sprintf "/p:PackageTags=\"%s\"" tags sprintf "/p:PackageProjectUrl=\"%s\"" projectUrl @@ -139,7 +152,7 @@ let packParameters name = ] |> String.concat " " -Target "Pack" (fun _ -> +Target.create "Pack" (fun _ -> !! "src/targets/**/*.fsproj" ++ "src/adapters/**/*.fsproj" ++ "src/ingestion/**/*.fsproj" @@ -148,31 +161,31 @@ Target "Pack" (fun _ -> |> Seq.iter (fun proj -> let path = proj.Substring(0, proj.Length - ".fsproj".Length) let name = System.IO.Path.GetFileName path - DotNetCli.RunCommand id ( + DotNet.exec id "" ( sprintf "pack %s -c %s -o ./bin %s" - proj configuration (packParameters name)) + proj configuration (packParameters name)) |> ignore ) ) -Target "Push" (fun _ -> - Paket.Push (fun p -> { p with WorkingDir = "src" })) +Target.create "Push" (fun _ -> + Paket.push (fun p -> { p with WorkingDir = "src" })) let ruttaBinFolder = "src/services/Logary.Services.Rutta/bin/Release/net461/" -Target "PackageRutta" (fun _ -> +Target.create "PackageRutta" (fun _ -> ignore (Directory.CreateDirectory "artifacts") "packages/libzmq_vc120/build/native/bin/libzmq-x64-v120-mt-4_2_30_0.dll" - |> FileHelper.CopyFile (Path.Combine(ruttaBinFolder, "libzmq.dll")) + |> Shell.copyFile(Path.Combine(ruttaBinFolder, "libzmq.dll")) - ZipHelper.CreateZip + Zip.createZip // work dir ruttaBinFolder // file name (sprintf "artifacts/Rutta-v%s.zip" (release.SemVer.ToString())) "A zip of the Rutta router/shipping service" - ZipHelper.DefaultZipLevel + Zip.DefaultZipLevel false (!! (sprintf "%s/**/*" ruttaBinFolder))) @@ -184,11 +197,9 @@ let envRequired k = if isNull v then failwithf "Missing environment key '%s'." k v -Target "CheckEnv" (fun _ -> ignore (envRequired "GITHUB_TOKEN")) +Target.create "CheckEnv" (fun _ -> ignore (envRequired "GITHUB_TOKEN")) -// https://github.com/fsharp/FAKE/blob/master/modules/Octokit/Octokit.fsx#L87 -#load "paket-files/build/fsharp/FAKE/modules/Octokit/Octokit.fsx" -Target "Release" (fun _ -> +Target.create "Release" (fun _ -> let gitOwner, gitName = "logary", "logary" let gitOwnerName = gitOwner + "/" + gitName let remote = @@ -197,21 +208,20 @@ Target "Release" (fun _ -> |> function None -> "git@github.com:logary/logary.git" | Some s -> s.Split().[0] - Git.Staging.StageAll "" - Git.Commit.Commit "" (sprintf "Bump version to %s" release.NugetVersion) + Git.Staging.stageAll "" + Git.CommitMessage.setMessage "" (sprintf "Bump version to %s" release.NugetVersion) Git.Branches.pushBranch "" remote (Git.Information.getBranchName "") Git.Branches.tag "" release.NugetVersion Git.Branches.pushTag "" remote release.NugetVersion - Octokit.createClientWithToken (envRequired "GITHUB_TOKEN") - |> Octokit.createDraft gitOwner gitName release.NugetVersion + GitHub.createClientWithToken (envRequired "GITHUB_TOKEN") + |> GitHub.draftNewRelease gitOwner gitName release.NugetVersion (Option.isSome release.SemVer.PreRelease) release.Notes - |> Octokit.releaseDraft + |> GitHub.publishDraft |> Async.RunSynchronously ) -Target "All" ignore "CheckEnv" ==> "Release" @@ -220,12 +230,11 @@ Target "All" ignore ==> "AssemblyInfo" ==> "PaketFiles" ==> "ProjectVersion" - =?> ("TCReportVersion", TeamCityHelper.TeamCityVersion |> Option.isSome) + =?> ("TCReportVersion", TeamCity.Environment.Version |> Option.isSome) ==> "Build" ==> "Tests" ==> "Pack" - ==> "All" ==> "Push" ==> "Release" -RunTargetOrDefault "All" +Target.runOrDefault "Pack" diff --git a/build.sh b/build.sh deleted file mode 100755 index fcb3b1cf4..000000000 --- a/build.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -source .env -mono .paket/paket.exe restore -mono packages/build/FAKE/tools/FAKE.exe $@ --fsiargs -d:MONO build.fsx \ No newline at end of file diff --git a/fake.cmd b/fake.cmd new file mode 100644 index 000000000..5168f64d7 --- /dev/null +++ b/fake.cmd @@ -0,0 +1,7 @@ +SET TOOL_PATH=.fake + +IF NOT EXIST "%TOOL_PATH%\fake.exe" ( + dotnet tool install fake-cli --tool-path ./%TOOL_PATH% +) + +"%TOOL_PATH%/fake.exe" %* \ No newline at end of file diff --git a/fake.sh b/fake.sh new file mode 100755 index 000000000..349c94aa4 --- /dev/null +++ b/fake.sh @@ -0,0 +1,27 @@ +#!/usr/bin/env bash +source .env +set -eu +set -o pipefail + +# liberated from https://stackoverflow.com/a/18443300/433393 +realpath() { + OURPWD=$PWD + cd "$(dirname "$1")" + LINK=$(readlink "$(basename "$1")") + while [ "$LINK" ]; do + cd "$(dirname "$LINK")" + LINK=$(readlink "$(basename "$1")") + done + REALPATH="$PWD/$(basename "$1")" + cd "$OURPWD" + echo "$REALPATH" +} + +TOOL_PATH=$(realpath .fake) +FAKE="$TOOL_PATH"/fake + +if ! [ -e "$FAKE" ] +then + dotnet tool install fake-cli --tool-path "$TOOL_PATH" +fi +"$FAKE" "$@" diff --git a/paket.dependencies b/paket.dependencies index 00ba077df..88716d4f9 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -1,6 +1,7 @@ generate_load_scripts: true source https://api.nuget.org/v3/index.json -framework net461, netcoreapp2.0, netstandard2.0 +storage none +framework auto-detect nuget Argu nuget Castle.Core @@ -11,7 +12,6 @@ nuget Expecto.FsCheck nuget Expecto.Hopac nuget Machine.Specifications nuget Machine.Specifications.Should -nuget Machine.Specifications.Runner.Console nuget Machine.Specifications.Runner.VisualStudio nuget Microsoft.NET.Test.Sdk nuget FParsec @@ -61,13 +61,26 @@ github neoeinstein/chiron:38e9d979fbab792904be19350f5fac9ebfaf9fd8 src/Chiron/Ch group Build source https://api.nuget.org/v3/index.json - framework net461, netcoreapp2.0, netstandard2.0 - nuget FAKE - github fsharp/FAKE modules/Octokit/Octokit.fsx + storage none + framework auto-detect + + nuget Fake.DotNet.AssemblyInfoFile + nuget Fake.DotNet.Cli + nuget Fake.Core.Target + nuget Fake.Core.ReleaseNotes + nuget Fake.IO.FileSystem + nuget Fake.Tools.Octo + nuget Fake.Tools.Git + nuget Fake.DotNet.Paket + nuget Fake.Core.Xml + nuget Fake.Api.GitHub + nuget Fake.BuildServer.TeamCity + nuget Fake.IO.Zip group Examples source https://api.nuget.org/v3/index.json - framework net461, netcoreapp2.0, netstandard2.0 + storage none + framework auto-detect redirects on nuget Argu @@ -81,8 +94,10 @@ group Examples group Benchmarks source https://api.nuget.org/v3/index.json - framework net471, netcoreapp2.0 + storage none + framework auto-detect redirects on + nuget FParsec nuget FSharp.Core nuget Hopac diff --git a/paket.lock b/paket.lock index bacfd1940..9e6b50920 100644 --- a/paket.lock +++ b/paket.lock @@ -1,4 +1,5 @@ GENERATE-LOAD-SCRIPTS: ON +STORAGE: NONE RESTRICTION: || (== net461) (== netcoreapp2.0) (== netstandard2.0) NUGET remote: https://api.nuget.org/v3/index.json @@ -13,25 +14,22 @@ NUGET Autofac (4.8.1) NETStandard.Library (>= 1.6) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.ComponentModel (>= 4.0.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - BenchmarkDotNet (0.10.14) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) - BenchmarkDotNet.Core (>= 0.10.14) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - BenchmarkDotNet.Toolchains.Roslyn (>= 0.10.14) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) - BenchmarkDotNet.Core (0.10.14) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) - Microsoft.DotNet.InternalAbstractions (>= 1.0) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Microsoft.DotNet.PlatformAbstractions (>= 1.1.1) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Microsoft.Win32.Registry (>= 4.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) - System.ValueTuple (>= 4.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Xml.XmlSerializer (>= 4.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.1)) - BenchmarkDotNet.Toolchains.Roslyn (0.10.14) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46) (>= netcoreapp2.0)) (&& (== netstandard2.0) (>= net461)) - BenchmarkDotNet.Core (>= 0.10.14) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) - Microsoft.CodeAnalysis.CSharp (>= 2.6.1) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) - System.Threading.Tasks (>= 4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) - Castle.Core (4.2.1) + BenchmarkDotNet (0.11.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + CommandLineParser (>= 2.3) + Microsoft.CodeAnalysis.CSharp (>= 2.9) + Microsoft.DotNet.PlatformAbstractions (>= 2.1) + Microsoft.Win32.Registry (>= 4.5) + System.Collections.Immutable (>= 1.5) + System.Diagnostics.FileVersionInfo (>= 4.3) + System.Management (>= 4.5) + System.Reflection.Emit.Lightweight (>= 4.3) + System.Reflection.Metadata (>= 1.6) + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) + System.Threading.Tasks.Extensions (>= 4.5.1) + System.ValueTuple (>= 4.4) + System.Xml.XmlSerializer (>= 4.3) + System.Xml.XPath.XmlDocument (>= 4.3) + Castle.Core (4.3.1) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) System.Collections.Specialized (>= 4.3) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) System.ComponentModel (>= 4.3) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) @@ -42,10 +40,24 @@ NUGET System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) + CommandLineParser (2.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Collections (>= 4.0.11-rc2-24027) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) + System.Console (>= 4.0.0-rc2-24027) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.0.11-rc2-24027) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.0.11-rc2-24027) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.1.0-rc2-24027) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) + System.Linq (>= 4.1.0-rc2-24027) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) + System.Linq.Expressions (>= 4.0.11-rc2-24027) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection (>= 4.1.0-rc2-24027) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Extensions (>= 4.0.1-rc2-24027) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.TypeExtensions (>= 4.1.0-rc2-24027) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.0.1-rc2-24027) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.1.0-rc2-24027) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.1.0-rc2-24027) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) elmah.corelibrary (1.2.2) - elmah.io.client (3.2.52) + elmah.io.client (3.3.58) Microsoft.Rest.ClientRuntime (>= 2.3.6) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netstandard2.0) (>= net45)) (&& (== netstandard2.0) (< netstandard1.4)) - Microsoft.Rest.ClientRuntime (>= 2.3.10) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Rest.ClientRuntime (>= 2.3.18) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) elmah.io.core (2.0.29) elmah.corelibrary (>= 1.2.2) @@ -54,19 +66,18 @@ NUGET EventStore.ClientAPI.NetCore (4.1.0.23) Newtonsoft.Json (>= 10.0.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) protobuf-net (>= 2.3.2) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) - Expecto (8.0) + Expecto (8.6.5) Argu (>= 5.1) Mono.Cecil (>= 0.10) System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) - Expecto.BenchmarkDotNet (8.0) - BenchmarkDotNet (>= 0.10.13) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + Expecto.BenchmarkDotNet (8.6.5) + BenchmarkDotNet (>= 0.10.14) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) FSharp.Core (>= 4.3.4) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) - System.ValueTuple (>= 4.4) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net461)) (&& (== netstandard2.0) (>= net461)) - Expecto.FsCheck (8.0) - Expecto (>= 8.0) + Expecto.FsCheck (8.6.5) + Expecto (>= 8.6.5) FsCheck (>= 2.10.4) - Expecto.Hopac (8.0) - Expecto (>= 8.0) + Expecto.Hopac (8.6.5) + Expecto (>= 8.6.5) Hopac (>= 0.3.23) FluentMigrator (1.6.2) FluentMigrator.Runner (1.6.2) @@ -75,12 +86,9 @@ NUGET FSharp.Core (>= 4.0.0.1) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net40)) (&& (== netstandard2.0) (>= net40)) FSharp.Core (>= 4.2.3) - restriction: || (&& (== net461) (< net40) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net40) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - FsCheck (2.10.10) - FSharp.Core (>= 4.0.0.1) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net452)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< portable-net45+win8+wp8)) (&& (== netstandard2.0) (>= net452)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wp8)) - FSharp.Core (>= 4.3.4) - restriction: || (&& (== net461) (< net452) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net452) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - System.ValueTuple (>= 4.4) - restriction: || (&& (== net461) (< net452) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - FSharp.Core (4.5.2) + FsCheck (2.13) + FSharp.Core (>= 4.2.3) + FSharp.Core (4.5.4) FsPickler (5.2) FSharp.Core (>= 3.1.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard2.0) (>= net45)) FSharp.Core (>= 4.3.2) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) @@ -94,8 +102,8 @@ NUGET FSharp.Core (>= 3.1.2.1) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net40)) (&& (== netstandard2.0) (>= net40)) fszmq (12.3.2) FSharp.Core (>= 4.3.4) - Google.Api.CommonProtos (1.3) - Google.Protobuf (>= 3.5.1) + Google.Api.CommonProtos (1.4) + Google.Protobuf (>= 3.6.1) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Google.Api.Gax (2.5) Microsoft.Extensions.PlatformAbstractions (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) @@ -114,13 +122,13 @@ NUGET Google.Api.Gax (>= 2.5) Google.Apis.Auth (>= 1.35.1) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - Google.Apis (1.35.2) - Google.Apis.Core (>= 1.35.2) + Google.Apis (1.36.1) + Google.Apis.Core (>= 1.36.1) Newtonsoft.Json (>= 10.0.2) - Google.Apis.Auth (1.35.2) - Google.Apis (>= 1.35.2) - Google.Apis.Core (>= 1.35.2) - Google.Apis.Core (1.35.2) + Google.Apis.Auth (1.36.1) + Google.Apis (>= 1.36.1) + Google.Apis.Core (>= 1.36.1) + Google.Apis.Core (1.36.1) Newtonsoft.Json (>= 10.0.2) Google.Cloud.Logging.Type (2.0) Google.Api.CommonProtos (>= 1.1) @@ -131,13 +139,13 @@ NUGET Google.Cloud.Logging.Type (>= 2.0) Grpc.Core (>= 1.12) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net45) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) - Google.Protobuf (3.5.1) + Google.Protobuf (3.6.1) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - Grpc.Auth (1.15) + Grpc.Auth (1.17.1) Google.Apis.Auth (>= 1.21) - Grpc.Core (>= 1.15) + Grpc.Core (>= 1.17.1) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net45) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) - Grpc.Core (1.15) + Grpc.Core (1.17.1) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net45) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) System.Interactive.Async (>= 3.1.1) System.Runtime.Loader (>= 4.0) - restriction: || (&& (== net461) (< net45) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) @@ -145,10 +153,10 @@ NUGET System.Threading.ThreadPool (>= 4.0.10) - restriction: || (&& (== net461) (< net45) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) Hopac (0.4.1) FSharp.Core (>= 4.5 < 5.0) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) - Http.fs (5.1.1) - FSharp.Core (>= 4.1.18) - Hopac (>= 0.3.23) - System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) + Http.fs (5.3) + FSharp.Core (>= 4.3.4) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Hopac (>= 0.3.23) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) libzmq_vc120 (4.2.30) lz4net (1.0.15.93) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) lz4net.unsafe.netcore (1.0.15.93) - restriction: || (&& (== net461) (< net20)) (== netcoreapp2.0) (== netstandard2.0) @@ -164,35 +172,33 @@ NUGET System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) System.Xml.XPath (>= 4.0.1) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) System.Xml.XPath.XDocument (>= 4.0.1) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) - Machine.Specifications.Runner.Console (0.9.3) - Machine.Specifications.Runner.VisualStudio (2.6.1) + Machine.Specifications.Runner.VisualStudio (2.7) Microsoft.NETCore.App (>= 1.1.2) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Mono.Cecil (>= 0.9.6.1) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) - Mono.Cecil (>= 0.10.0-beta7) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.1)) + Mono.Cecil (>= 0.10) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) Machine.Specifications.Should (0.11) Machine.Specifications (>= 0.11) NETStandard.Library (>= 1.6) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) - Microsoft.ApplicationInsights (2.6.1) + Microsoft.ApplicationInsights (2.8.1) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Diagnostics.DiagnosticSource (>= 4.4) + System.Diagnostics.DiagnosticSource (>= 4.5) System.Diagnostics.StackTrace (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Net.Requests (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.ApplicationInsights.Agent.Intercept (2.4) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard2.0) (>= net45)) - Microsoft.ApplicationInsights.DependencyCollector (2.6.1) - Microsoft.ApplicationInsights (2.6.1) + Microsoft.ApplicationInsights.DependencyCollector (2.8.1) + Microsoft.ApplicationInsights (2.8.1) Microsoft.ApplicationInsights.Agent.Intercept (>= 2.4) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard2.0) (>= net45)) Microsoft.Extensions.PlatformAbstractions (>= 1.1) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) System.Data.SqlClient (>= 4.3.1) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - System.Diagnostics.DiagnosticSource (>= 4.4) + System.Diagnostics.DiagnosticSource (>= 4.5) System.Diagnostics.StackTrace (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - Microsoft.CodeAnalysis.Analyzers (2.6) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46) (>= netcoreapp2.0)) (&& (== netstandard2.0) (>= net461)) - Microsoft.CodeAnalysis.Common (2.8.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46) (>= netcoreapp2.0)) (&& (== netstandard2.0) (>= net461)) - Microsoft.CodeAnalysis.Analyzers (>= 1.1) + Microsoft.CodeAnalysis.Analyzers (2.6.2) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + Microsoft.CodeAnalysis.Common (2.10) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + Microsoft.CodeAnalysis.Analyzers (>= 2.6.1) System.AppContext (>= 4.3) System.Collections (>= 4.3) System.Collections.Concurrent (>= 4.3) - System.Collections.Immutable (>= 1.3.1) + System.Collections.Immutable (>= 1.5) System.Console (>= 4.3) System.Diagnostics.Debug (>= 4.3) System.Diagnostics.FileVersionInfo (>= 4.3) @@ -206,7 +212,7 @@ NUGET System.Linq (>= 4.3) System.Linq.Expressions (>= 4.3) System.Reflection (>= 4.3) - System.Reflection.Metadata (>= 1.4.2) + System.Reflection.Metadata (>= 1.6) System.Resources.ResourceManager (>= 4.3) System.Runtime (>= 4.3) System.Runtime.Extensions (>= 4.3) @@ -220,6 +226,7 @@ NUGET System.Text.Encoding.Extensions (>= 4.3) System.Threading (>= 4.3) System.Threading.Tasks (>= 4.3) + System.Threading.Tasks.Extensions (>= 4.3) System.Threading.Tasks.Parallel (>= 4.3) System.Threading.Thread (>= 4.3) System.ValueTuple (>= 4.3) @@ -227,20 +234,11 @@ NUGET System.Xml.XDocument (>= 4.3) System.Xml.XmlDocument (>= 4.3) System.Xml.XPath.XDocument (>= 4.3) - Microsoft.CodeAnalysis.CSharp (2.8.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46) (>= netcoreapp2.0)) (&& (== netstandard2.0) (>= net461)) - Microsoft.CodeAnalysis.Common (2.8.2) - Microsoft.CodeCoverage (1.0.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net45)) (&& (== netstandard2.0) (>= netcoreapp1.0)) - Microsoft.Diagnostics.Tracing.EventSource.Redist (2.0) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net451)) (&& (== netstandard2.0) (>= net451)) - Microsoft.DotNet.InternalAbstractions (1.0) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) - System.AppContext (>= 4.1) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) - System.Collections (>= 4.0.11) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) - System.IO (>= 4.1) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) - System.IO.FileSystem (>= 4.0.1) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime.Extensions (>= 4.1) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime.InteropServices (>= 4.1) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) - Microsoft.DotNet.PlatformAbstractions (2.0.4) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + Microsoft.CodeAnalysis.CSharp (2.10) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + Microsoft.CodeAnalysis.Common (2.10) + Microsoft.CodeCoverage (15.9) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net45)) (&& (== netstandard2.0) (>= netcoreapp1.0)) + Microsoft.Diagnostics.Tracing.EventSource.Redist (2.0.1) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net451)) (&& (== netstandard2.0) (>= net451)) + Microsoft.DotNet.PlatformAbstractions (2.1) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.AppContext (>= 4.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Collections (>= 4.0.11) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.IO (>= 4.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) @@ -248,9 +246,9 @@ NUGET System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime.Extensions (>= 4.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime.InteropServices (>= 4.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - Microsoft.Extensions.DependencyModel (2.0.4) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.0)) - Microsoft.DotNet.PlatformAbstractions (>= 2.0.4) + System.Runtime.InteropServices.RuntimeInformation (>= 4.0) + Microsoft.Extensions.DependencyModel (2.1) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.0)) + Microsoft.DotNet.PlatformAbstractions (>= 2.1) Newtonsoft.Json (>= 9.0.1) System.Diagnostics.Debug (>= 4.0.11) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) System.Dynamic.Runtime (>= 4.0.11) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) @@ -258,25 +256,17 @@ NUGET Microsoft.Extensions.PlatformAbstractions (1.1) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) NETStandard.Library (>= 1.6.1) System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) - Microsoft.NET.Test.Sdk (15.7.2) - Microsoft.CodeCoverage (>= 1.0.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net45)) (&& (== netstandard2.0) (>= netcoreapp1.0)) - Microsoft.TestPlatform.TestHost (>= 15.7.2) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.0)) - Microsoft.NETCore.App (2.0.7) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Microsoft.NETCore.DotNetHostPolicy (>= 2.0.7) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 2.0.2) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) - NETStandard.Library (>= 2.0.1) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) - Microsoft.NETCore.DotNetAppHost (2.0.7) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) - Microsoft.NETCore.DotNetHostPolicy (2.0.7) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) - Microsoft.NETCore.DotNetHostResolver (>= 2.0.7) - Microsoft.NETCore.DotNetHostResolver (2.0.7) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) - Microsoft.NETCore.DotNetAppHost (>= 2.0.7) - Microsoft.NETCore.Platforms (2.0.2) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) - Microsoft.NETCore.Targets (2.0) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) - Microsoft.Rest.ClientRuntime (2.3.11) + Microsoft.NET.Test.Sdk (15.9) + Microsoft.CodeCoverage (>= 15.9) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net45)) (&& (== netstandard2.0) (>= netcoreapp1.0)) + Microsoft.TestPlatform.TestHost (>= 15.9) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.0)) + Microsoft.NETCore.App (2.0) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.1)) + Microsoft.NETCore.Platforms (2.2) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net20) (>= netstandard2.0)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= netstandard2.0) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (2.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Rest.ClientRuntime (2.3.18) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net452)) (== netcoreapp2.0) (== netstandard2.0) Newtonsoft.Json (>= 6.0.8) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net452)) (&& (== netstandard2.0) (>= net452)) - Newtonsoft.Json (>= 9.0.1) - restriction: || (&& (== net461) (< net452)) (== netcoreapp2.0) (== netstandard2.0) - Microsoft.TestPlatform.ObjectModel (15.7.2) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.0)) + Newtonsoft.Json (>= 10.0.3) - restriction: || (&& (== net461) (< net452)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.TestPlatform.ObjectModel (15.9) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.0)) NETStandard.Library (>= 1.6) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) System.ComponentModel.EventBasedAsync (>= 4.0.11) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) System.ComponentModel.TypeConverter (>= 4.1) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) @@ -291,20 +281,65 @@ NUGET System.Runtime.Serialization.Primitives (>= 4.1.1) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) System.Threading.Thread (>= 4.0) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) System.Xml.XPath.XmlDocument (>= 4.0.1) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) - Microsoft.TestPlatform.TestHost (15.7.2) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.0)) + Microsoft.TestPlatform.TestHost (15.9) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.0)) Microsoft.Extensions.DependencyModel (>= 1.0.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.0)) - Microsoft.TestPlatform.ObjectModel (>= 15.7.2) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (&& (== net461) (>= uap10.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) + Microsoft.TestPlatform.ObjectModel (>= 15.9) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (&& (== net461) (>= uap10.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) Newtonsoft.Json (>= 9.0.1) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (&& (== net461) (>= uap10.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= uap10.0)) Microsoft.Win32.Primitives (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (&& (== net461) (< net451) (>= netstandard1.6)) (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - Microsoft.Win32.Registry (4.5.0-rc1) - System.Buffers (>= 4.4) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (>= monoandroid)) (&& (== net461) (>= monotouch)) (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= xamarinios)) (&& (== net461) (>= xamarinmac)) (&& (== net461) (>= xamarintvos)) (&& (== net461) (>= xamarinwatchos)) (&& (== netcoreapp2.0) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (== netstandard2.0) - System.Memory (>= 4.5.0-rc1) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) - System.Security.AccessControl (>= 4.5.0-rc1) - System.Security.Principal.Windows (>= 4.5.0-rc1) - Mono.Cecil (0.10) + Microsoft.Win32.Registry (4.5) + System.Buffers (>= 4.4) - restriction: || (&& (== net461) (>= monoandroid)) (&& (== net461) (>= monotouch)) (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= xamarinios)) (&& (== net461) (>= xamarinmac)) (&& (== net461) (>= xamarintvos)) (&& (== net461) (>= xamarinwatchos)) (&& (== netcoreapp2.0) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (== netstandard2.0) + System.Memory (>= 4.5) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.AccessControl (>= 4.5) + System.Security.Principal.Windows (>= 4.5) + Microsoft.Win32.Registry.AccessControl (4.5) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Win32.Registry (>= 4.5) + System.Security.AccessControl (>= 4.5) + Microsoft.Win32.SystemEvents (4.5) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + Microsoft.Windows.Compatibility (2.0.1) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Win32.Registry (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Win32.Registry.AccessControl (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Win32.SystemEvents (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Windows.Compatibility.Shims (>= 2.0.1) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.CodeDom (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.ComponentModel.Composition (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Configuration.ConfigurationManager (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Data.DataSetExtensions (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Data.Odbc (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Data.SqlClient (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.EventLog (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.PerformanceCounter (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.DirectoryServices (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.DirectoryServices.AccountManagement (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.DirectoryServices.Protocols (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Drawing.Common (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem.AccessControl (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.Packaging (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.Pipes.AccessControl (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.Ports (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Management (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Caching (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.AccessControl (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Cng (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Pkcs (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.ProtectedData (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Xml (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Permissions (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.ServiceModel.Duplex (>= 4.4.1) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.ServiceModel.Http (>= 4.4.1) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.ServiceModel.NetTcp (>= 4.4.1) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.ServiceModel.Primitives (>= 4.4.1) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.ServiceModel.Security (>= 4.4.1) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.ServiceModel.Syndication (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.ServiceProcess.ServiceController (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding.CodePages (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.AccessControl (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Windows.Compatibility.Shims (2.0.1) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + Mono.Cecil (0.10.1) System.Collections (>= 4.0.11) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) System.IO.FileSystem (>= 4.0.1) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) System.IO.FileSystem.Primitives (>= 4.0.1) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) @@ -313,22 +348,19 @@ NUGET System.Security.Cryptography.Algorithms (>= 4.2) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) System.Security.Cryptography.Csp (>= 4.0) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) System.Threading (>= 4.0.11) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) - NETStandard.Library (2.0.3) - restriction: || (&& (== net461) (< net35)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + NETStandard.Library (2.0.3) - restriction: || (&& (== net461) (< net35)) (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - Newtonsoft.Json (11.0.2) + Newtonsoft.Json (12.0.1) NitoAsyncEx.Context.StrongName (1.1) - NLog (4.5.4) - NodaTime (2.3) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime.Serialization.Xml (>= 4.1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - protobuf-net (2.3.7) - System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net461) (< net20)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net461) (< net20)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (== net461) (< net20)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net461) (< net20)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net20)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) - System.Xml.XmlSerializer (>= 4.3) - restriction: || (&& (== net461) (< net20)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) - RabbitMQ.Client (5.0.1) + NLog (4.5.11) + NodaTime (2.4.2) + protobuf-net (2.4) + System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net461) (< net20)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (== net461) (< net20)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.TypeExtensions (>= 4.4) - restriction: || (&& (== net461) (< net20)) (== netcoreapp2.0) (== netstandard2.0) + System.ServiceModel.Primitives (>= 4.5.3) - restriction: || (&& (== net461) (< net20) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.XmlSerializer (>= 4.3) - restriction: || (&& (== net461) (< net20)) (== netcoreapp2.0) (== netstandard2.0) + RabbitMQ.Client (5.1) Microsoft.Diagnostics.Tracing.EventSource.Redist (>= 1.1.28) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net451)) (&& (== netstandard2.0) (>= net451)) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) @@ -348,53 +380,67 @@ NUGET System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) System.Threading.Thread (>= 4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) System.Threading.Timer (>= 4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - runtime.native.System (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (== net461) (< net451)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System (4.3.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1.1) + Microsoft.NETCore.Targets (>= 1.1.3) + runtime.native.System.Data.SqlClient.sni (4.5) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (>= 4.4) runtime.win-x64.runtime.native.System.Data.SqlClient.sni (>= 4.4) runtime.win-x86.runtime.native.System.Data.SqlClient.sni (>= 4.4) - runtime.native.System.Net.Http (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Net.Security (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - Microsoft.NETCore.Targets (>= 1.1) + runtime.native.System.IO.Compression (4.3.2) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + Microsoft.NETCore.Platforms (>= 1.1.1) + Microsoft.NETCore.Targets (>= 1.1.3) + runtime.native.System.Net.Http (4.3.1) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1.1) + Microsoft.NETCore.Targets (>= 1.1.3) + runtime.native.System.Net.Security (4.3.1) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1.1) + Microsoft.NETCore.Targets (>= 1.1.3) runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (== net461) (< net451)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) - runtime.win-x64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (== net461) (< net451)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) - runtime.win-x86.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (== net461) (< net451)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + runtime.win-x64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + runtime.win-x86.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) SQLite.Interop (1.0) SQLite.Interop.dll (1.0.103) - Suave (2.4) + Suave (2.4.3) FSharp.Core (>= 4.0 < 5.0) System.AppContext (4.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Buffers (4.4) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (< net451) (>= netstandard2.0)) (== netstandard2.0) + System.Buffers (4.5) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (< net451) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.CodeDom (4.5) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (< net452) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) System.Collections (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) @@ -410,7 +456,7 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Collections.Immutable (1.4) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (< netstandard1.1)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (== netstandard2.0) + System.Collections.Immutable (1.5) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Collections.NonGeneric (4.3) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) @@ -428,6 +474,8 @@ NUGET System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.ComponentModel (4.3) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.ComponentModel.Composition (4.5) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Permissions (>= 4.5) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.ComponentModel.EventBasedAsync (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.0)) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) @@ -453,29 +501,37 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Configuration.ConfigurationManager (4.5.0-rc1) - System.Security.Cryptography.ProtectedData (>= 4.5.0-rc1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) - System.Security.Permissions (>= 4.5.0-rc1) + System.Configuration.ConfigurationManager (4.5) + System.Security.Cryptography.ProtectedData (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) + System.Security.Permissions (>= 4.5) System.Console (4.3.1) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1.2) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Data.SqlClient (4.5.0-rc1) - Microsoft.Win32.Registry (>= 4.5.0-rc1) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) - runtime.native.System.Data.SqlClient.sni (>= 4.4) - restriction: || (&& (== net461) (< net451)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) - System.Buffers (>= 4.4) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (< net451) (>= netstandard2.0)) (== netstandard2.0) - System.Diagnostics.DiagnosticSource (>= 4.5.0-rc1) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) - System.Memory (>= 4.5.0-rc1) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) - System.Security.Principal.Windows (>= 4.5.0-rc1) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) - System.Text.Encoding.CodePages (>= 4.5.0-rc1) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) - System.Data.SQLite.Core (1.0.108) + System.Data.DataSetExtensions (4.5) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Data.Odbc (4.5) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Data.SqlClient (4.6) + Microsoft.Win32.Registry (>= 4.5) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System.Data.SqlClient.sni (>= 4.5) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Buffers (>= 4.4) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (== netstandard2.0) + System.Diagnostics.DiagnosticSource (>= 4.5) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Memory (>= 4.5.1) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding.CodePages (>= 4.5) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Data.SQLite.Core (1.0.109.2) System.Diagnostics.Debug (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Diagnostics.DiagnosticSource (4.5) + System.Diagnostics.DiagnosticSource (4.5.1) + System.Diagnostics.EventLog (4.5) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + Microsoft.Win32.Registry (>= 4.5) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Security.Permissions (>= 4.5) + System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Threading.AccessControl (>= 4.5) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Diagnostics.FileVersionInfo (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) @@ -486,6 +542,12 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.PerformanceCounter (4.5) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + Microsoft.Win32.Registry (>= 4.5) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Configuration.ConfigurationManager (>= 4.5) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Memory (>= 4.5) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Diagnostics.Process (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) @@ -534,10 +596,29 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Diagnostics.Tracing (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Tracing (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.DirectoryServices (4.5) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.IO.FileSystem.AccessControl (>= 4.5) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.AccessControl (>= 4.5) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.DirectoryServices.AccountManagement (4.5) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Configuration.ConfigurationManager (>= 4.5) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.DirectoryServices (>= 4.5) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.DirectoryServices.Protocols (>= 4.5) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.IO.FileSystem.AccessControl (>= 4.5) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Security.AccessControl (>= 4.5) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.DirectoryServices.Protocols (4.5) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Drawing.Common (4.5.1) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + Microsoft.Win32.SystemEvents (>= 4.5) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Dynamic.Runtime (4.3) System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) @@ -569,15 +650,29 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Interactive.Async (3.1.1) - NETStandard.Library (>= 1.6) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.IO (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (&& (== net461) (>= netcoreapp1.0)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Interactive.Async (3.2) + System.IO (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (&& (== net461) (< net46)) (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.IO.Compression (4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46) (>= netcoreapp2.0)) (&& (== netstandard2.0) (>= net461)) + System.IO.Compression (4.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System.IO.Compression (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Buffers (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.IO.FileSystem (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) @@ -587,8 +682,17 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem.AccessControl (4.5) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.AccessControl (>= 4.5) + System.Security.Principal.Windows (>= 4.5) System.IO.FileSystem.Primitives (4.3) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.Packaging (4.5) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.Pipes.AccessControl (4.5.1) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.AccessControl (>= 4.5) + System.Security.Principal.Windows (>= 4.5) + System.IO.Ports (4.5) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Win32.Registry (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) System.Linq (4.3) System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) @@ -613,12 +717,16 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - System.Memory (4.5.0-rc1) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) - System.Buffers (>= 4.4) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.0) (< netstandard1.1)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard2.0) + System.Management (4.5) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + Microsoft.Win32.Registry (>= 4.5) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.CodeDom (>= 4.5) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Memory (4.5.1) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Buffers (>= 4.4) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.0) (< netstandard1.1)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (== netstandard2.0) System.Numerics.Vectors (>= 4.4) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net461)) (== netstandard2.0) - System.Runtime.CompilerServices.Unsafe (>= 4.5.0-rc1) - System.Net.Http (4.3.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.CompilerServices.Unsafe (>= 4.5) + System.Net.Http (4.3.4) + Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) runtime.native.System.Net.Http (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) @@ -719,14 +827,14 @@ NUGET System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Numerics.Vectors (4.4) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (&& (== netcoreapp2.0) (>= net461)) (== netstandard2.0) + System.Numerics.Vectors (4.5) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (&& (== netcoreapp2.0) (>= net461)) (== netstandard2.0) System.ObjectModel (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Private.DataContractSerialization (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Private.DataContractSerialization (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.0)) System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) @@ -752,39 +860,44 @@ NUGET System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Xml.XmlDocument (>= 4.3) System.Xml.XmlSerializer (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Private.ServiceModel (4.5.3) - restriction: || (&& (== net461) (>= dnxcore50) (>= netstandard2.0)) (&& (== net461) (< net20) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= netstandard2.0) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.1) + System.Reflection.DispatchProxy (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) System.Reflection (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.DispatchProxy (4.5.1) - restriction: || (&& (== net461) (>= dnxcore50) (>= netstandard2.0)) (&& (== net461) (< net20) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= netstandard2.0) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) System.Reflection.Emit (4.3) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (== net461) (< net20)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (== net461) (< net35)) (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Emit.Lightweight (4.3) System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection.Extensions (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Extensions (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (< net451) (>= netstandard1.5)) (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection.Metadata (1.5) - System.Collections.Immutable (>= 1.4) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (< netstandard1.1)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (== netstandard2.0) - System.Reflection.Primitives (4.3) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Metadata (1.6) + System.Collections.Immutable (>= 1.5) + System.Reflection.Primitives (4.3) - restriction: || (&& (== net461) (< net35)) (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection.TypeExtensions (4.4) + System.Reflection.TypeExtensions (4.5.1) System.Resources.ResourceManager (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) @@ -794,12 +907,15 @@ NUGET System.Runtime (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime.CompilerServices.Unsafe (4.5.0-rc1) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (< netstandard1.1) (>= netstandard2.0)) (&& (== net461) (>= netstandard2.0) (>= wpa81)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Caching (4.5) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Configuration.ConfigurationManager (>= 4.5) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Runtime.CompilerServices.Unsafe (4.5.2) System.Runtime.Extensions (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime.Handles (4.3) - restriction: || (&& (== net461) (< net35)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net35)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) @@ -810,7 +926,7 @@ NUGET System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= net462)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) @@ -831,19 +947,12 @@ NUGET System.IO (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Private.DataContractSerialization (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (== net461) (< net20)) (&& (== net461) (>= netcoreapp1.0)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.0)) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime.Serialization.Xml (4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Private.DataContractSerialization (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime.Serialization.Primitives (>= 4.3) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Security.AccessControl (4.5.0-rc1) + System.Security.AccessControl (4.5) Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) - System.Security.Principal.Windows (>= 4.5.0-rc1) + System.Security.Principal.Windows (>= 4.5) System.Security.Claims (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) @@ -867,7 +976,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (>= net463)) (== netcoreapp2.0) (== netstandard2.0) System.Security.Cryptography.Primitives (>= 4.3) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - System.Security.Cryptography.Cng (4.4) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Cng (4.5) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Security.Cryptography.Csp (4.3) - restriction: || (&& (== net461) (< net35)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) @@ -896,8 +1005,12 @@ NUGET System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Security.Cryptography.OpenSsl (4.4) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.OpenSsl (4.5) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Security.Cryptography.Pkcs (4.5.1) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Buffers (>= 4.4) - restriction: || (&& (== net461) (>= monoandroid)) (&& (== net461) (>= monotouch)) (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= xamarinios)) (&& (== net461) (>= xamarinmac)) (&& (== net461) (>= xamarintvos)) (&& (== net461) (>= xamarinwatchos)) (&& (== netcoreapp2.0) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (== netstandard2.0) + System.Memory (>= 4.5.1) - restriction: || (&& (== net461) (>= monoandroid)) (&& (== net461) (>= monotouch)) (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (&& (== net461) (>= xamarinios)) (&& (== net461) (>= xamarinmac)) (&& (== net461) (>= xamarintvos)) (&& (== net461) (>= xamarinwatchos)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Cng (>= 4.4) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (== net461) (< net35)) (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) @@ -906,8 +1019,8 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Security.Cryptography.ProtectedData (4.5.0-rc1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) - System.Memory (>= 4.5.0-rc1) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.ProtectedData (4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) + System.Memory (>= 4.5) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) System.Security.Cryptography.X509Certificates (4.3.2) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) @@ -934,43 +1047,72 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - System.Security.Permissions (4.5.0-rc1) - System.Security.AccessControl (>= 4.5.0-rc1) + System.Security.Cryptography.Xml (4.5) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Pkcs (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) + System.Security.Permissions (>= 4.5) + System.Security.Permissions (4.5) + System.Security.AccessControl (>= 4.5) System.Security.Principal (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Security.Principal.Windows (4.5.0-rc1) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Principal.Windows (4.5.1) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.ServiceModel.Duplex (4.5.3) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Private.ServiceModel (>= 4.5.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) + System.ServiceModel.Primitives (>= 4.5.3) + System.ServiceModel.Http (4.5.3) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Private.ServiceModel (>= 4.5.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) + System.ServiceModel.Primitives (>= 4.5.3) + System.ServiceModel.NetTcp (4.5.3) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Private.ServiceModel (>= 4.5.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) + System.ServiceModel.Primitives (>= 4.5.3) + System.ServiceModel.Primitives (4.5.3) - restriction: || (&& (== net461) (< net20) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Private.ServiceModel (>= 4.5.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) + System.ServiceModel.Security (4.5.3) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Private.ServiceModel (>= 4.5.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) + System.ServiceModel.Primitives (>= 4.5.3) + System.ServiceModel.Syndication (4.5) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.ServiceProcess.ServiceController (4.5) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.EventLog (>= 4.5) System.Text.Encoding (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Text.Encoding.CodePages (4.5.0-rc1) + System.Text.Encoding.CodePages (4.5) Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) - System.Runtime.CompilerServices.Unsafe (>= 4.5.0-rc1) + System.Runtime.CompilerServices.Unsafe (>= 4.5) System.Text.Encoding.Extensions (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Text.RegularExpressions (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) + System.Text.RegularExpressions (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) System.Threading (4.3) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.AccessControl (4.5) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.AccessControl (>= 4.5) + System.Security.Principal.Windows (>= 4.5) System.Threading.Tasks (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Threading.Tasks.Extensions (4.4) - System.Collections (>= 4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Runtime (>= 4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Threading.Tasks (>= 4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (< netstandard2.0)) - System.Threading.Tasks.Parallel (4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46) (>= netcoreapp2.0)) (&& (== netstandard2.0) (>= net461)) + System.Threading.Tasks.Extensions (4.5.1) + System.Runtime.CompilerServices.Unsafe (>= 4.5) + System.Threading.Tasks.Parallel (4.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Threading.Thread (4.3) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Threading.ThreadPool (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (&& (== net461) (< net451) (>= netstandard1.6)) (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) (== netstandard2.0) @@ -980,7 +1122,7 @@ NUGET Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) - System.ValueTuple (4.4) + System.ValueTuple (4.5) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Xml.ReaderWriter (4.3.1) System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) @@ -1039,7 +1181,7 @@ NUGET System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Xml.XPath (4.3) - restriction: || (&& (== net461) (< net35)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.XPath (4.3) System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) @@ -1059,7 +1201,7 @@ NUGET System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Xml.XPath (>= 4.3) - System.Xml.XPath.XmlDocument (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461) (>= netcoreapp1.1)) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Xml.XPath.XmlDocument (4.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp1.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) @@ -1070,8 +1212,12 @@ NUGET System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Xml.XmlDocument (>= 4.3) System.Xml.XPath (>= 4.3) - Topshelf (4.1.0.117-develop) - TweetinviAPI (3.0) + Topshelf (4.1.0.180-develop) + Microsoft.Windows.Compatibility (>= 2.0.1) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + TopShelf.ServiceInstaller (>= 4.1.0.180-develop) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + TopShelf.ServiceInstaller (4.1.0.180-develop) - restriction: || (&& (== net461) (< net452) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Windows.Compatibility (>= 2.0.1) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + TweetinviAPI (4.0) Autofac (>= 4.6.2) Newtonsoft.Json (>= 10.0.3) NitoAsyncEx.Context.StrongName (>= 1.1) @@ -1081,8 +1227,8 @@ NUGET FSharp.Core (>= 4.2.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) GITHUB remote: eiriktsarpalis/TypeShape - src/TypeShape/TypeShape.fs (012a05840cecf7c3fdfab10e5f740af1b547bf4b) - src/TypeShape/Utils.fs (012a05840cecf7c3fdfab10e5f740af1b547bf4b) + src/TypeShape/TypeShape.fs (ba3ae331ac9246253a0bccc4fab6cb44d7e667fa) + src/TypeShape/Utils.fs (ba3ae331ac9246253a0bccc4fab6cb44d7e667fa) remote: haf/YoLo YoLo.fs (bd91bbe94a183aa9dc9c13e885c73b20516b01e7) remote: logary/RingBuffer @@ -1093,57 +1239,58 @@ GITHUB Expecto.Hopac Hopac remote: logary/logary - src/Logary.CSharp.Facade/Facade.cs (a50ed21ce6615a26ee17d4aecbad6496f46687df) - src/Logary.Facade/Facade.fs (a50ed21ce6615a26ee17d4aecbad6496f46687df) + src/Logary.CSharp.Facade/Facade.cs (86401e91f6c07b205ea94e0c5f2259847ec2579a) + src/Logary.Facade/Facade.fs (86401e91f6c07b205ea94e0c5f2259847ec2579a) remote: messagetemplates/messagetemplates-fsharp src/FsMtParser/FsMtParserFull.fs (17bdfdcc237d7d725c23ebe0ef24c438c4ff7530) remote: xyncro/aether - src/Aether/Aether.fs (9fccb475cc4aa35789390be340a0a810a979eb78) + src/Aether/Aether.fs (8dcbdc50190ac05851f4ccf57b356afbae5821a5) remote: neoeinstein/chiron src/Chiron/Chiron.fs (38e9d979fbab792904be19350f5fac9ebfaf9fd8) GROUP Benchmarks REDIRECTS: ON -RESTRICTION: || (== net471) (== netcoreapp2.0) +STORAGE: NONE +RESTRICTION: || (== net461) (== netcoreapp2.0) (== netstandard2.0) NUGET remote: https://api.nuget.org/v3/index.json Argu (5.1) - FSharp.Core (>= 4.0.0.1) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net45)) - FSharp.Core (>= 4.3.2) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Configuration.ConfigurationManager (>= 4.4) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) + FSharp.Core (>= 4.0.0.1) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard2.0) (>= net45)) + FSharp.Core (>= 4.3.2) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Configuration.ConfigurationManager (>= 4.4) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) BenchmarkDotNet (0.10.14) - BenchmarkDotNet.Core (>= 0.10.14) - BenchmarkDotNet.Toolchains.Roslyn (>= 0.10.14) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net46)) - BenchmarkDotNet.Core (0.10.14) - Microsoft.DotNet.InternalAbstractions (>= 1.0) - Microsoft.DotNet.PlatformAbstractions (>= 1.1.1) - Microsoft.Win32.Registry (>= 4.3) - System.Diagnostics.FileVersionInfo (>= 4.3) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (== net471) (>= netcoreapp1.1)) (== netcoreapp2.0) - System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (== net471) (>= netcoreapp1.1)) (== netcoreapp2.0) - System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net46)) - System.ValueTuple (>= 4.3) - System.Xml.XmlSerializer (>= 4.3) - System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (&& (== net471) (>= netcoreapp1.1)) (== netcoreapp2.0) - BenchmarkDotNet.Toolchains.Roslyn (0.10.14) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net46)) - BenchmarkDotNet.Core (>= 0.10.14) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net46)) - Microsoft.CodeAnalysis.CSharp (>= 2.6.1) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net46)) - System.Threading.Tasks (>= 4.3) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net46)) + BenchmarkDotNet.Core (>= 0.10.14) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + BenchmarkDotNet.Toolchains.Roslyn (>= 0.10.14) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) + BenchmarkDotNet.Core (0.10.14) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + Microsoft.DotNet.InternalAbstractions (>= 1.0) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + Microsoft.DotNet.PlatformAbstractions (>= 1.1.1) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + Microsoft.Win32.Registry (>= 4.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.ValueTuple (>= 4.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Xml.XmlSerializer (>= 4.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.1)) + BenchmarkDotNet.Toolchains.Roslyn (0.10.14) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) + BenchmarkDotNet.Core (>= 0.10.14) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) + Microsoft.CodeAnalysis.CSharp (>= 2.6.1) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.Threading.Tasks (>= 4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) Expecto (8.6.5) Argu (>= 5.1) Mono.Cecil (>= 0.10) - System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (&& (== net471) (< net461)) (== netcoreapp2.0) + System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) Expecto.BenchmarkDotNet (8.6.5) - BenchmarkDotNet (>= 0.10.14) - FSharp.Core (>= 4.3.4) + BenchmarkDotNet (>= 0.10.14) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + FSharp.Core (>= 4.3.4) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) FParsec (1.0.3) - FSharp.Core (>= 4.0.0.1) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net40)) - FSharp.Core (>= 4.2.3) - restriction: || (&& (== net471) (< net40)) (== netcoreapp2.0) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net471) (< net40)) (== netcoreapp2.0) + FSharp.Core (>= 4.0.0.1) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net40)) (&& (== netstandard2.0) (>= net40)) + FSharp.Core (>= 4.2.3) - restriction: || (&& (== net461) (< net40) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net40) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) FSharp.Core (4.5.4) Hopac (0.4.1) - FSharp.Core (>= 4.5 < 5.0) - Microsoft.CodeAnalysis.Analyzers (2.6.2) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net46)) - Microsoft.CodeAnalysis.Common (2.10) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net46)) + FSharp.Core (>= 4.5 < 5.0) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.CodeAnalysis.Analyzers (2.6.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) + Microsoft.CodeAnalysis.Common (2.10) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) Microsoft.CodeAnalysis.Analyzers (>= 2.6.1) System.AppContext (>= 4.3) System.Collections (>= 4.3) @@ -1184,56 +1331,56 @@ NUGET System.Xml.XDocument (>= 4.3) System.Xml.XmlDocument (>= 4.3) System.Xml.XPath.XDocument (>= 4.3) - Microsoft.CodeAnalysis.CSharp (2.10) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net46)) + Microsoft.CodeAnalysis.CSharp (2.10) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) Microsoft.CodeAnalysis.Common (2.10) - Microsoft.DotNet.InternalAbstractions (1.0) - System.AppContext (>= 4.1) - restriction: || (&& (== net471) (< net451)) (== netcoreapp2.0) - System.Collections (>= 4.0.11) - restriction: || (&& (== net471) (< net451)) (== netcoreapp2.0) - System.IO (>= 4.1) - restriction: || (&& (== net471) (< net451)) (== netcoreapp2.0) - System.IO.FileSystem (>= 4.0.1) - restriction: || (&& (== net471) (< net451)) (== netcoreapp2.0) - System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== net471) (< net451)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.1) - restriction: || (&& (== net471) (< net451)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.1) - restriction: || (&& (== net471) (< net451)) (== netcoreapp2.0) - System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: || (&& (== net471) (< net451)) (== netcoreapp2.0) - Microsoft.DotNet.PlatformAbstractions (2.1) - System.AppContext (>= 4.1) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Collections (>= 4.0.11) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.IO (>= 4.1) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.IO.FileSystem (>= 4.0.1) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.1) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.1) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) + Microsoft.DotNet.InternalAbstractions (1.0) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.AppContext (>= 4.1) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections (>= 4.0.11) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.1) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem (>= 4.0.1) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.1) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.1) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.DotNet.PlatformAbstractions (2.1) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.AppContext (>= 4.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections (>= 4.0.11) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem (>= 4.0.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - Microsoft.NETCore.Platforms (2.2) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net46)) (&& (== net471) (>= netcoreapp2.0)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (2.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - Microsoft.Win32.Registry (4.5) - System.Memory (>= 4.5) - restriction: || (&& (== net471) (< net46)) (&& (== net471) (>= netcoreapp2.0)) (&& (== net471) (>= uap10.1)) (== netcoreapp2.0) + Microsoft.NETCore.Platforms (2.2) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (2.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Win32.Registry (4.5) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Memory (>= 4.5) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) System.Security.AccessControl (>= 4.5) System.Security.Principal.Windows (>= 4.5) Mono.Cecil (0.10.1) - System.Collections (>= 4.0.11) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - System.IO.FileSystem (>= 4.0.1) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - System.IO.FileSystem.Primitives (>= 4.0.1) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - System.Reflection (>= 4.1) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.1) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - System.Security.Cryptography.Algorithms (>= 4.2) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - System.Security.Cryptography.Csp (>= 4.0) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - System.Threading (>= 4.0.11) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - NETStandard.Library (2.0.3) - restriction: || (&& (== net471) (< net40)) (== netcoreapp2.0) + System.Collections (>= 4.0.11) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem (>= 4.0.1) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.0.1) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection (>= 4.1) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.1) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Algorithms (>= 4.2) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Csp (>= 4.0) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.0.11) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) + NETStandard.Library (2.0.3) - restriction: || (&& (== net461) (< net40) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) NodaTime (2.4.2) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - runtime.native.System (4.3.1) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System (4.3.1) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net45)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) Microsoft.NETCore.Platforms (>= 1.1.1) Microsoft.NETCore.Targets (>= 1.1.3) - runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) + runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (== net461) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) @@ -1249,313 +1396,1054 @@ NUGET runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - System.AppContext (4.3) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net46)) (== netcoreapp2.0) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (== net461) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net35) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.AppContext (4.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Collections (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Collections.Concurrent (4.3) System.Collections.Immutable (1.5) - System.Configuration.ConfigurationManager (4.5) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Security.Cryptography.ProtectedData (>= 4.5) - restriction: || (&& (== net471) (< net461)) (== netcoreapp2.0) + System.Configuration.ConfigurationManager (4.5) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.ProtectedData (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) System.Security.Permissions (>= 4.5) - System.Console (4.3.1) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net46)) + System.Console (4.3.1) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) System.Diagnostics.Debug (4.3) System.Diagnostics.FileVersionInfo (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net46)) (== netcoreapp2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net46)) (== netcoreapp2.0) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Reflection.Metadata (>= 1.4.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Diagnostics.StackTrace (4.3) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net46)) - System.Diagnostics.Tools (4.3) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net46)) - System.Dynamic.Runtime (4.3) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net46)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Metadata (>= 1.4.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.StackTrace (4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.Diagnostics.Tools (4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.Dynamic.Runtime (4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) System.Globalization (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.IO (4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net46)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.IO.Compression (4.3) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net46)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.Compression (4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) System.IO.FileSystem (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.IO.FileSystem.Primitives (>= 4.3) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.IO.FileSystem.Primitives (4.3) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Linq (4.3) - System.Collections (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Linq.Expressions (4.3) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net46)) - System.Memory (4.5.1) - restriction: || (&& (== net471) (< net46)) (&& (== net471) (>= netcoreapp2.0)) (&& (== net471) (>= uap10.1)) (== netcoreapp2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Linq.Expressions (4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.Memory (4.5.1) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime.CompilerServices.Unsafe (>= 4.5) System.Reflection (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection.Emit (4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (== net471) (>= netcoreapp1.1)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (== net471) (>= netcoreapp1.1)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection.Extensions (4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Emit (4.3) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Extensions (4.3) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Reflection.Metadata (1.6) System.Collections.Immutable (>= 1.5) - System.Reflection.Primitives (4.3) - restriction: || (&& (== net471) (>= netcoreapp1.1)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection.TypeExtensions (4.5.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) + System.Reflection.Primitives (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.TypeExtensions (4.5.1) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) System.Resources.ResourceManager (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime.CompilerServices.Unsafe (4.5.2) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.CompilerServices.Unsafe (4.5.2) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp1.1)) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Runtime.Extensions (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime.Handles (4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net46)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime.InteropServices (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (&& (== net471) (>= netcoreapp1.1)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (&& (== net471) (>= netcoreapp1.1)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (&& (== net471) (>= netcoreapp1.1)) (== netcoreapp2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (&& (== net471) (>= netcoreapp1.1)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (&& (== net471) (>= netcoreapp1.1)) (== netcoreapp2.0) - System.Runtime.InteropServices.RuntimeInformation (4.3) - runtime.native.System (>= 4.3) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= net462)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime.Numerics (4.3) - System.Globalization (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (== net471) (>= netcoreapp1.1)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Security.AccessControl (4.5) - Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net471) (>= netcoreapp2.0)) (== netcoreapp2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Security.Principal.Windows (>= 4.5) System.Security.Cryptography.Algorithms (4.3.1) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net46)) (== netcoreapp2.0) - runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.IO (>= 4.3) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (&& (== net461) (>= net463)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (&& (== net461) (>= net463)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (>= net463)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Primitives (>= 4.3) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Csp (4.3) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Algorithms (>= 4.3) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Primitives (>= 4.3) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Encoding (4.3) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Linq (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.ProtectedData (4.5) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Memory (>= 4.5) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.X509Certificates (4.3.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.Security.Cryptography.Algorithms (>= 4.3) System.Security.Cryptography.Encoding (>= 4.3) + System.Security.Permissions (4.5) - restriction: || (&& (== net461) (>= monoandroid) (>= netstandard2.0)) (&& (== net461) (>= monotouch) (>= netstandard2.0)) (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netstandard2.0) (>= xamarinmac)) (&& (== net461) (>= netstandard2.0) (>= xamarintvos)) (&& (== net461) (>= netstandard2.0) (>= xamarinwatchos)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.AccessControl (>= 4.5) + System.Security.Principal.Windows (4.5.1) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp1.1)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Text.Encoding (4.3) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding.CodePages (4.5) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.Runtime.CompilerServices.Unsafe (>= 4.5) + System.Text.Encoding.Extensions (4.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Text.RegularExpressions (4.3) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (4.3) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks (4.3) + System.Threading.Tasks.Extensions (4.5.1) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Runtime.CompilerServices.Unsafe (>= 4.5) + System.Threading.Tasks.Parallel (4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.Threading.Thread (4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.ValueTuple (4.5) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Xml.ReaderWriter (4.3.1) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.XDocument (4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.Xml.XmlDocument (4.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.XmlSerializer (4.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Linq (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.XPath (4.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.XPath.XDocument (4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.Xml.XPath (>= 4.3) + System.Xml.XPath.XmlDocument (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.XmlDocument (>= 4.3) + System.Xml.XPath (>= 4.3) + +GROUP Build +STORAGE: NONE +RESTRICTION: || (== net461) (== netcoreapp2.0) (== netstandard2.0) +NUGET + remote: https://api.nuget.org/v3/index.json + BlackFox.VsWhere (1.0) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + FSharp.Core (>= 4.2.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Fake.Api.GitHub (5.11.1) + FSharp.Core (>= 4.3.4) + Octokit (>= 0.32) + Fake.BuildServer.TeamCity (5.11.1) + Fake.Core.Environment (>= 5.11.1) + Fake.Core.String (>= 5.11.1) + Fake.Core.Trace (>= 5.11.1) + Fake.Core.Xml (>= 5.11.1) + Fake.IO.FileSystem (>= 5.11.1) + Fake.Net.Http (>= 5.11.1) + FSharp.Core (>= 4.3.4) + System.Diagnostics.FileVersionInfo (>= 4.3) + System.Diagnostics.Process (>= 4.3) + System.IO.FileSystem.Watcher (>= 4.3) + System.Net.Http (>= 4.3.4) + System.Xml.ReaderWriter (>= 4.3.1) + System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.XmlDocument (>= 4.3) + System.Xml.XPath (>= 4.3) + System.Xml.XPath.XDocument (>= 4.3) + System.Xml.XPath.XmlDocument (>= 4.3) + Fake.Core.CommandLineParsing (5.11.1) + FParsec (>= 1.0.3) + FSharp.Core (>= 4.3.4) + Fake.Core.Context (5.11.1) + FSharp.Core (>= 4.3.4) + Fake.Core.Environment (5.11.1) + FSharp.Core (>= 4.3.4) + Fake.Core.FakeVar (5.11.1) + Fake.Core.Context (>= 5.11.1) + FSharp.Core (>= 4.3.4) + Fake.Core.Process (5.11.1) + Fake.Core.Environment (>= 5.11.1) + Fake.Core.FakeVar (>= 5.11.1) + Fake.Core.String (>= 5.11.1) + Fake.Core.Trace (>= 5.11.1) + Fake.IO.FileSystem (>= 5.11.1) + FSharp.Core (>= 4.3.4) + System.Diagnostics.Process (>= 4.3) + Fake.Core.ReleaseNotes (5.11.1) + Fake.Core.SemVer (>= 5.11.1) + Fake.Core.String (>= 5.11.1) + FSharp.Core (>= 4.3.4) + Fake.Core.SemVer (5.11.1) + FSharp.Core (>= 4.3.4) + System.Runtime.Numerics (>= 4.3) + Fake.Core.String (5.11.1) + FSharp.Core (>= 4.3.4) + Fake.Core.Target (5.11.1) + Fake.Core.CommandLineParsing (>= 5.11.1) + Fake.Core.Context (>= 5.11.1) + Fake.Core.Environment (>= 5.11.1) + Fake.Core.FakeVar (>= 5.11.1) + Fake.Core.Process (>= 5.11.1) + Fake.Core.String (>= 5.11.1) + Fake.Core.Trace (>= 5.11.1) + FSharp.Control.Reactive (>= 4.1) + FSharp.Core (>= 4.3.4) + System.Reactive.Compatibility (>= 4.1.2) + Fake.Core.Trace (5.11.1) + Fake.Core.Environment (>= 5.11.1) + Fake.Core.FakeVar (>= 5.11.1) + FSharp.Core (>= 4.3.4) + Fake.Core.Xml (5.11.1) + Fake.Core.String (>= 5.11.1) + FSharp.Core (>= 4.3.4) + System.Xml.ReaderWriter (>= 4.3.1) + System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.XPath (>= 4.3) + System.Xml.XPath.XDocument (>= 4.3) + System.Xml.XPath.XmlDocument (>= 4.3) + Fake.DotNet.AssemblyInfoFile (5.11.1) + Fake.Core.Environment (>= 5.11.1) + Fake.Core.String (>= 5.11.1) + Fake.Core.Trace (>= 5.11.1) + Fake.IO.FileSystem (>= 5.11.1) + FSharp.Core (>= 4.3.4) + Fake.DotNet.Cli (5.11.1) + Fake.Core.Environment (>= 5.11.1) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Fake.Core.Process (>= 5.11.1) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Fake.Core.String (>= 5.11.1) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Fake.Core.Trace (>= 5.11.1) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Fake.DotNet.MSBuild (>= 5.11.1) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Fake.IO.FileSystem (>= 5.11.1) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + FSharp.Core (>= 4.3.4) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Newtonsoft.Json (>= 12.0.1) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Fake.DotNet.MSBuild (5.11.1) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + BlackFox.VsWhere (>= 1.0) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Fake.Core.Environment (>= 5.11.1) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Fake.Core.Process (>= 5.11.1) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Fake.Core.String (>= 5.11.1) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Fake.Core.Trace (>= 5.11.1) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Fake.IO.FileSystem (>= 5.11.1) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + FSharp.Core (>= 4.3.4) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + MSBuild.StructuredLogger (>= 2.0.61) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Fake.DotNet.Paket (5.11.1) + Fake.Core.Process (>= 5.11.1) + Fake.Core.String (>= 5.11.1) + Fake.Core.Trace (>= 5.11.1) + Fake.IO.FileSystem (>= 5.11.1) + FSharp.Core (>= 4.3.4) + Fake.IO.FileSystem (5.11.1) + Fake.Core.String (>= 5.11.1) + FSharp.Core (>= 4.3.4) + System.Diagnostics.FileVersionInfo (>= 4.3) + System.IO.FileSystem.Watcher (>= 4.3) + Fake.IO.Zip (5.11.1) + Fake.Core.String (>= 5.11.1) + Fake.IO.FileSystem (>= 5.11.1) + FSharp.Core (>= 4.3.4) + System.IO.Compression (>= 4.3) + System.IO.Compression.ZipFile (>= 4.3) + Fake.Net.Http (5.11.1) + Fake.Core.Trace (>= 5.11.1) + FSharp.Core (>= 4.3.4) + System.Net.Http (>= 4.3.4) + Fake.Tools.Git (5.11.1) + Fake.Core.Environment (>= 5.11.1) + Fake.Core.Process (>= 5.11.1) + Fake.Core.SemVer (>= 5.11.1) + Fake.Core.String (>= 5.11.1) + Fake.Core.Trace (>= 5.11.1) + Fake.IO.FileSystem (>= 5.11.1) + FSharp.Core (>= 4.3.4) + Fake.Tools.Octo (5.11.1) + Fake.Core.Environment (>= 5.11.1) + Fake.Core.Process (>= 5.11.1) + Fake.IO.FileSystem (>= 5.11.1) + FSharp.Core (>= 4.3.4) + FParsec (1.0.3) + FSharp.Core (>= 4.0.0.1) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net40)) (&& (== netstandard2.0) (>= net40)) + FSharp.Core (>= 4.2.3) - restriction: || (&& (== net461) (< net40) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net40) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + FSharp.Control.Reactive (4.1) + FSharp.Core (>= 4.2.3) + System.Reactive (>= 4.0) + FSharp.Core (4.5.4) + Microsoft.Build (15.9.20) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Build.Framework (>= 15.9.20) + Microsoft.Win32.Registry (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections.Immutable (>= 1.5) + System.Diagnostics.TraceSource (>= 4.0) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.Compression (>= 4.3) + System.Reflection.Metadata (>= 1.6) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) + System.Runtime.Loader (>= 4.0) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding.CodePages (>= 4.0.1) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks.Dataflow (>= 4.6) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Build.Framework (15.9.20) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Serialization.Primitives (>= 4.1.1) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Thread (>= 4.0) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Build.Tasks.Core (15.9.20) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Build.Framework (>= 15.9.20) + Microsoft.Build.Utilities.Core (>= 15.9.20) + Microsoft.Win32.Registry (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.CodeDom (>= 4.4) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections.Immutable (>= 1.5) + System.Linq.Parallel (>= 4.0.1) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Net.Http (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Metadata (>= 1.6) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.Writer (>= 4.0) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks.Dataflow (>= 4.6) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Build.Utilities.Core (15.9.20) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Build.Framework (>= 15.9.20) + Microsoft.Win32.Registry (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections.Immutable (>= 1.5) + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) + System.Text.Encoding.CodePages (>= 4.4) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (2.2) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (2.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Win32.Primitives (4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Win32.Registry (4.5) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Buffers (>= 4.4) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (>= monoandroid)) (&& (== net461) (>= monotouch)) (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= xamarinios)) (&& (== net461) (>= xamarinmac)) (&& (== net461) (>= xamarintvos)) (&& (== net461) (>= xamarinwatchos)) (&& (== netcoreapp2.0) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (== netstandard2.0) + System.Memory (>= 4.5) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.AccessControl (>= 4.5) + System.Security.Principal.Windows (>= 4.5) + MSBuild.StructuredLogger (2.0.64) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Build (>= 15.8.166) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Build.Framework (>= 15.8.166) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Build.Tasks.Core (>= 15.8.166) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Build.Utilities.Core (>= 15.8.166) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + NETStandard.Library (2.0.3) - restriction: || (&& (== net461) (< net40) (>= netstandard1.6)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) + Newtonsoft.Json (12.0.1) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Octokit (0.32) + NETStandard.Library (>= 1.6) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System (4.3.1) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1.1) + Microsoft.NETCore.Targets (>= 1.1.3) + runtime.native.System.IO.Compression (4.3.2) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1.1) + Microsoft.NETCore.Targets (>= 1.1.3) + runtime.native.System.Net.Http (4.3.1) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1.1) + Microsoft.NETCore.Targets (>= 1.1.3) + runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Buffers (4.5) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (>= monoandroid)) (&& (== net461) (>= monotouch)) (&& (== net461) (< net45)) (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= xamarinios)) (&& (== net461) (>= xamarinmac)) (&& (== net461) (>= xamarintvos)) (&& (== net461) (>= xamarinwatchos)) (== netcoreapp2.0) (== netstandard2.0) + System.CodeDom (4.5) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections.Concurrent (4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections.Immutable (1.5) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.1)) (&& (== net461) (>= wpa81)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.DiagnosticSource (4.5.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.FileVersionInfo (4.3) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Metadata (>= 1.4.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Process (4.3) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Win32.Registry (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Thread (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.ThreadPool (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Tools (4.3) - restriction: || (&& (== net461) (>= dnxcore50) (>= netstandard1.6)) (&& (== net461) (>= dnxcore50) (>= netstandard2.0)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.TraceSource (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Tracing (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization.Calendars (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization.Extensions (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.Compression (4.3) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System.IO.Compression (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Buffers (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.Compression.ZipFile (4.3) + System.Buffers (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.Compression (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem.Watcher (4.3) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Overlapped (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Thread (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Linq (4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Linq.Parallel (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Linq (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Memory (4.5.1) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Buffers (>= 4.4) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.0) (< netstandard1.1)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (== netstandard2.0) + System.Numerics.Vectors (>= 4.4) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net461)) (== netstandard2.0) + System.Runtime.CompilerServices.Unsafe (>= 4.5) + System.Net.Http (4.3.4) + Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System.Net.Http (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Net.Primitives (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.X509Certificates (>= 4.3) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Net.Primitives (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Numerics.Vectors (4.5) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (&& (== netcoreapp2.0) (>= net461)) (== netstandard2.0) + System.Reactive (4.1.2) + System.Runtime.InteropServices.WindowsRuntime (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks.Extensions (>= 4.5.1) + System.ValueTuple (>= 4.4) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (< netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (>= net46)) + System.Reactive.Compatibility (4.1.2) + System.Reactive.Core (>= 4.1.2) + System.Reactive.Experimental (>= 4.1.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard2.0) (>= net45)) + System.Reactive.Interfaces (>= 4.1.2) + System.Reactive.Linq (>= 4.1.2) + System.Reactive.PlatformServices (>= 4.1.2) + System.Reactive.Providers (>= 4.1.2) + System.Reactive.Runtime.Remoting (>= 4.1.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard2.0) (>= net45)) + System.Reactive.Windows.Forms (>= 4.1.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard2.0) (>= net45)) + System.Reactive.Windows.Threading (>= 4.1.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (>= net45)) (&& (== netstandard2.0) (>= uap10.0)) + System.Reactive.Core (4.1.2) + System.Reactive (>= 4.1.2) + System.Threading.Tasks.Extensions (>= 4.5.1) + System.Reactive.Experimental (4.1.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard2.0) (>= net45)) + System.Reactive (>= 4.1.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.Threading.Tasks.Extensions (>= 4.5.1) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.Reactive.Interfaces (4.1.2) + System.Reactive (>= 4.1.2) + System.Threading.Tasks.Extensions (>= 4.5.1) + System.Reactive.Linq (4.1.2) + System.Reactive (>= 4.1.2) + System.Threading.Tasks.Extensions (>= 4.5.1) + System.Reactive.PlatformServices (4.1.2) + System.Reactive (>= 4.1.2) + System.Threading.Tasks.Extensions (>= 4.5.1) + System.Reactive.Providers (4.1.2) + System.Reactive (>= 4.1.2) + System.Threading.Tasks.Extensions (>= 4.5.1) + System.Reactive.Runtime.Remoting (4.1.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard2.0) (>= net45)) + System.Reactive (>= 4.1.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.Threading.Tasks.Extensions (>= 4.5.1) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.Reactive.Windows.Forms (4.1.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard2.0) (>= net45)) + System.Reactive (>= 4.1.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.Threading.Tasks.Extensions (>= 4.5.1) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.Reactive.Windows.Threading (4.1.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (>= net45)) (&& (== netstandard2.0) (>= uap10.0)) + System.Reactive (>= 4.1.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= uap10.0)) + System.Threading.Tasks.Extensions (>= 4.5.1) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= uap10.0)) + System.Reflection (4.3) - restriction: || (&& (== net461) (>= dnxcore50) (>= netstandard1.6)) (&& (== net461) (>= dnxcore50) (>= netstandard2.0)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Extensions (4.3) - restriction: || (&& (== net461) (>= dnxcore50) (>= netstandard2.0)) (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Metadata (1.6) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections.Immutable (>= 1.5) + System.Reflection.Primitives (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.TypeExtensions (4.5.1) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.Writer (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.CompilerServices.Unsafe (4.5.2) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.0)) (&& (== net461) (>= wp8)) (&& (== net461) (>= wpa81)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= net462)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices.WindowsRuntime (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Loader (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Numerics (4.3) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.AccessControl (4.5) - restriction: || (&& (== net461) (>= monoandroid)) (&& (== net461) (>= monotouch)) (&& (== net461) (< net46)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= xamarinios)) (&& (== net461) (>= xamarinmac)) (&& (== net461) (>= xamarintvos)) (&& (== net461) (>= xamarinwatchos)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Security.Principal.Windows (>= 4.5) + System.Security.Cryptography.Algorithms (4.3.1) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (&& (== net461) (>= net463)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (&& (== net461) (>= net463)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (>= net463)) (== netcoreapp2.0) (== netstandard2.0) System.Security.Cryptography.Primitives (>= 4.3) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Security.Cryptography.Csp (4.3) - restriction: || (&& (== net471) (< net35)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Cng (4.5) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Security.Cryptography.Csp (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Security.Cryptography.Algorithms (>= 4.3) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Security.Cryptography.Primitives (>= 4.3) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Security.Cryptography.Encoding (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Linq (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net35)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Security.Cryptography.ProtectedData (4.5) - restriction: || (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Memory (>= 4.5) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Security.Cryptography.X509Certificates (4.3.2) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net46)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Linq (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.OpenSsl (4.5) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.X509Certificates (4.3.2) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System.Net.Http (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization.Calendars (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) System.Security.Cryptography.Algorithms (>= 4.3) + System.Security.Cryptography.Cng (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Csp (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) System.Security.Cryptography.Encoding (>= 4.3) - System.Security.Permissions (4.5) - restriction: || (&& (== net471) (>= monoandroid)) (&& (== net471) (>= monotouch)) (&& (== net471) (< net45)) (&& (== net471) (>= xamarinmac)) (&& (== net471) (>= xamarintvos)) (&& (== net471) (>= xamarinwatchos)) (== netcoreapp2.0) - System.Security.AccessControl (>= 4.5) - System.Security.Principal.Windows (4.5.1) - Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net471) (>= netcoreapp2.0)) (== netcoreapp2.0) - System.Text.Encoding (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Text.Encoding.CodePages (4.5) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net46)) + System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Principal.Windows (4.5.1) - restriction: || (&& (== net461) (>= monoandroid)) (&& (== net461) (>= monotouch)) (&& (== net461) (< net46)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= xamarinios)) (&& (== net461) (>= xamarinmac)) (&& (== net461) (>= xamarintvos)) (&& (== net461) (>= xamarinwatchos)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Text.Encoding (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding.CodePages (4.5) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Runtime.CompilerServices.Unsafe (>= 4.5) - System.Text.Encoding.Extensions (4.3) - System.Text.RegularExpressions (4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (&& (== net471) (>= netcoreapp1.1)) (== netcoreapp2.0) - System.Threading (4.3) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Threading.Tasks (4.3) + System.Text.Encoding.Extensions (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.RegularExpressions (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) + System.Threading (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Overlapped (4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks.Dataflow (4.9) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netstandard2.0) System.Threading.Tasks.Extensions (4.5.1) System.Runtime.CompilerServices.Unsafe (>= 4.5) - System.Threading.Tasks.Parallel (4.3) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net46)) - System.Threading.Thread (4.3) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net46)) - System.ValueTuple (4.5) + System.Threading.Thread (4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.ThreadPool (4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.ValueTuple (4.5) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (< netstandard2.0) (>= uap10.0)) (&& (== netstandard2.0) (>= net46)) System.Xml.ReaderWriter (4.3.1) - System.Collections (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Xml.XDocument (4.3) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net46)) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.XDocument (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Xml.XmlDocument (4.3) - System.Collections (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Xml.XmlSerializer (4.3) - System.Collections (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Linq (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (== net471) (>= dnxcore50)) (&& (== net471) (< net45)) (== netcoreapp2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Xml.XPath (4.3) - System.Collections (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Xml.XPath.XDocument (4.3) - restriction: || (== net471) (&& (== netcoreapp2.0) (>= net46)) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.XPath.XDocument (4.3) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Linq (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Xml.XPath (>= 4.3) - System.Xml.XPath.XmlDocument (4.3) - restriction: || (&& (== net471) (>= netcoreapp1.1)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net471) (< net46)) (== netcoreapp2.0) + System.Xml.XPath.XmlDocument (4.3) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Xml.XmlDocument (>= 4.3) System.Xml.XPath (>= 4.3) -GROUP Build -RESTRICTION: || (== net461) (== netcoreapp2.0) (== netstandard2.0) -NUGET - remote: https://api.nuget.org/v3/index.json - FAKE (4.64.13) - Microsoft.NETCore.Platforms (2.0.2) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (< netstandard1.0)) (&& (== net461) (< netstandard1.3) (>= wpa81)) (&& (== net461) (< portable-net45+win8+wpa81)) (&& (== net461) (>= uap10.0)) (&& (== net461) (>= uap10.1)) (&& (== net461) (>= wp8)) (== netcoreapp2.0) (== netstandard2.0) - NETStandard.Library (2.0.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - Octokit (0.29) - NETStandard.Library (>= 1.6) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) -GITHUB - remote: fsharp/FAKE - modules/Octokit/Octokit.fsx (896e227b6da98b21001a1e5940df01d442bc7a25) - Octokit (>= 0.20) GROUP Examples REDIRECTS: ON +STORAGE: NONE RESTRICTION: || (== net461) (== netcoreapp2.0) (== netstandard2.0) NUGET remote: https://api.nuget.org/v3/index.json @@ -1563,7 +2451,7 @@ NUGET FSharp.Core (>= 4.0.0.1) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard2.0) (>= net45)) FSharp.Core (>= 4.3.2) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) System.Configuration.ConfigurationManager (>= 4.4) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) - Castle.Core (4.2.1) + Castle.Core (4.3.1) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) System.Collections.Specialized (>= 4.3) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) System.ComponentModel (>= 4.3) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) @@ -1583,24 +2471,20 @@ NUGET FSharp.Core (>= 4.0.0.1) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net40)) (&& (== netstandard2.0) (>= net40)) FSharp.Core (>= 4.2.3) - restriction: || (&& (== net461) (< net40) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net40) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - FSharp.Core (4.3.4) - Hopac (0.3.23) - FSharp.Core (>= 3.1.2.5) - restriction: || (== net461) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.6)) - FSharp.Core (>= 4.0.1.7-alpha) - restriction: || (&& (== net461) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - NETStandard.Library (>= 1.6) - restriction: || (&& (== net461) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - Microsoft.Diagnostics.Tracing.EventSource.Redist (2.0) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net451)) (&& (== netstandard2.0) (>= net451)) - Microsoft.NETCore.Platforms (2.0.2) - restriction: || (&& (== net461) (< net35)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) - Microsoft.NETCore.Targets (2.0) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) + FSharp.Core (4.5.4) + Hopac (0.4.1) + FSharp.Core (>= 4.5 < 5.0) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.Diagnostics.Tracing.EventSource.Redist (2.0.1) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net451)) (&& (== netstandard2.0) (>= net451)) + Microsoft.NETCore.Platforms (2.2) - restriction: || (&& (== net461) (< net35)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Targets (2.1) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.Win32.Primitives (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) NETStandard.Library (2.0.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - NodaTime (2.3) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime.Serialization.Xml (>= 4.1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - RabbitMQ.Client (5.0.1) + NodaTime (2.4.2) + RabbitMQ.Client (5.1) Microsoft.Diagnostics.Tracing.EventSource.Redist (>= 1.1.28) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net451)) (&& (== netstandard2.0) (>= net451)) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) @@ -1620,39 +2504,50 @@ NUGET System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) System.Threading.Thread (>= 4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) System.Threading.Timer (>= 4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - runtime.native.System (4.3) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Net.Http (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Net.Security (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - Microsoft.NETCore.Targets (>= 1.1) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System (4.3.1) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1.1) + Microsoft.NETCore.Targets (>= 1.1.3) + runtime.native.System.Net.Http (4.3.1) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1.1) + Microsoft.NETCore.Targets (>= 1.1.3) + runtime.native.System.Net.Security (4.3.1) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1.1) + Microsoft.NETCore.Targets (>= 1.1.3) runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Buffers (4.5) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (>= monoandroid) (>= netstandard2.0)) (&& (== net461) (>= monotouch) (>= netstandard2.0)) (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (< netstandard1.1) (>= netstandard2.0)) (&& (== net461) (>= netstandard2.0) (>= wpa81)) (&& (== net461) (>= netstandard2.0) (>= xamarinmac)) (&& (== net461) (>= netstandard2.0) (>= xamarintvos)) (&& (== net461) (>= netstandard2.0) (>= xamarinwatchos)) (&& (== net461) (>= xamarinios)) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.0) (< netstandard1.1)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (== netstandard2.0) System.Collections (4.3) - restriction: || (&& (== net461) (>= dnxcore50) (>= netstandard1.5)) (&& (== net461) (< net35)) (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) @@ -1705,8 +2600,9 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Configuration.ConfigurationManager (4.4.1) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) - System.Security.Cryptography.ProtectedData (>= 4.4) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Configuration.ConfigurationManager (4.5) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.ProtectedData (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) + System.Security.Permissions (>= 4.5) System.Console (4.3.1) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1.2) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) @@ -1717,10 +2613,6 @@ NUGET Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Diagnostics.Tools (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Diagnostics.TraceSource (4.3) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) @@ -1807,6 +2699,10 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Memory (4.5.1) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Buffers (>= 4.4) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.0) (< netstandard1.1)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (== netstandard2.0) + System.Numerics.Vectors (>= 4.4) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net461)) (== netstandard2.0) + System.Runtime.CompilerServices.Unsafe (>= 4.5) System.Net.NameResolution (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) @@ -1863,38 +2759,13 @@ NUGET System.Net.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) + System.Numerics.Vectors (4.5) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== netcoreapp2.0) (>= net461)) (== netstandard2.0) System.ObjectModel (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Private.DataContractSerialization (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Linq (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection.TypeExtensions (>= 4.3) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime.Serialization.Primitives (>= 4.3) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Xml.XmlDocument (>= 4.3) - System.Xml.XmlSerializer (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Reflection (4.3) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) @@ -1925,7 +2796,7 @@ NUGET Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection.TypeExtensions (4.4) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) + System.Reflection.TypeExtensions (4.5.1) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) System.Resources.ResourceManager (4.3) - restriction: || (&& (== net461) (>= dnxcore50) (>= netstandard1.5)) (&& (== net461) (< net35)) (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) @@ -1935,6 +2806,7 @@ NUGET System.Runtime (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.CompilerServices.Unsafe (4.5.2) - restriction: || (&& (== net461) (>= monoandroid) (>= netstandard2.0)) (&& (== net461) (>= monotouch) (>= netstandard2.0)) (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (< netstandard1.1) (>= netstandard2.0)) (&& (== net461) (>= netstandard2.0) (>= uap10.1)) (&& (== net461) (>= netstandard2.0) (>= wpa81)) (&& (== net461) (>= netstandard2.0) (>= xamarinmac)) (&& (== net461) (>= netstandard2.0) (>= xamarintvos)) (&& (== net461) (>= netstandard2.0) (>= xamarinwatchos)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime.Extensions (4.3) - restriction: || (&& (== net461) (>= dnxcore50) (>= netstandard1.5)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) @@ -1955,16 +2827,9 @@ NUGET System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime.Serialization.Xml (4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Private.DataContractSerialization (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime.Serialization.Primitives (>= 4.3) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.AccessControl (4.5) - restriction: || (&& (== net461) (>= monoandroid) (>= netstandard2.0)) (&& (== net461) (>= monotouch) (>= netstandard2.0)) (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netstandard2.0) (>= xamarinmac)) (&& (== net461) (>= netstandard2.0) (>= xamarintvos)) (&& (== net461) (>= netstandard2.0) (>= xamarinwatchos)) (== netcoreapp2.0) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Security.Principal.Windows (>= 4.5) System.Security.Claims (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) @@ -1988,7 +2853,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (>= net463)) (== netcoreapp2.0) (== netstandard2.0) System.Security.Cryptography.Primitives (>= 4.3) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) - System.Security.Cryptography.Cng (4.4) - restriction: || (&& (== net461) (>= dnxcore50) (>= netstandard1.5)) (&& (== net461) (>= dnxcore50) (>= netstandard1.6)) (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.Cng (4.5) - restriction: || (&& (== net461) (>= dnxcore50) (>= netstandard1.5)) (&& (== net461) (>= dnxcore50) (>= netstandard1.6)) (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Security.Cryptography.Csp (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) @@ -2017,7 +2882,7 @@ NUGET System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Security.Cryptography.OpenSsl (4.4) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.OpenSsl (4.5) - restriction: || (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) @@ -2027,7 +2892,8 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Security.Cryptography.ProtectedData (4.4) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Cryptography.ProtectedData (4.5) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Memory (>= 4.5) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) System.Security.Cryptography.X509Certificates (4.3.2) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) @@ -2054,15 +2920,17 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Permissions (4.5) - restriction: || (&& (== net461) (>= monoandroid) (>= netstandard2.0)) (&& (== net461) (>= monotouch) (>= netstandard2.0)) (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netstandard2.0) (>= xamarinmac)) (&& (== net461) (>= netstandard2.0) (>= xamarintvos)) (&& (== net461) (>= netstandard2.0) (>= xamarinwatchos)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.AccessControl (>= 4.5) System.Security.Principal (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Security.Principal.Windows (4.4.1) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) + System.Security.Principal.Windows (4.5.1) - restriction: || (&& (== net461) (>= monoandroid) (>= netstandard2.0)) (&& (== net461) (>= monotouch) (>= netstandard2.0)) (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (< net451) (>= netstandard1.5)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= netstandard2.0) (>= xamarinmac)) (&& (== net461) (>= netstandard2.0) (>= xamarintvos)) (&& (== net461) (>= netstandard2.0) (>= xamarinwatchos)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Text.Encoding (4.3) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Text.Encoding.Extensions (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) + System.Text.Encoding.Extensions (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) @@ -2081,7 +2949,8 @@ NUGET Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Threading.Tasks.Extensions (4.4) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) + System.Threading.Tasks.Extensions (4.5.1) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) + System.Runtime.CompilerServices.Unsafe (>= 4.5) System.Threading.Thread (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Threading.ThreadPool (4.3) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (&& (== net461) (< net451) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard2.0) @@ -2107,19 +2976,6 @@ NUGET System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Xml.XDocument (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) System.Xml.XmlDocument (4.3) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) @@ -2131,21 +2987,3 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netstandard2.0) - System.Xml.XmlSerializer (4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Linq (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (== net461) (>= dnxcore50)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netstandard2.0) diff --git a/src/Logary.CSharp.Tests/paket.references b/src/Logary.CSharp.Tests/paket.references index 0923638c3..4a05abbe6 100644 --- a/src/Logary.CSharp.Tests/paket.references +++ b/src/Logary.CSharp.Tests/paket.references @@ -3,6 +3,5 @@ NodaTime FSharp.Core Machine.Specifications Machine.Specifications.Should -Machine.Specifications.Runner.Console Machine.Specifications.Runner.VisualStudio Microsoft.NET.Test.Sdk \ No newline at end of file