diff --git a/.paket/Paket.Restore.targets b/.paket/Paket.Restore.targets index d372e6ab..3632ffe5 100644 --- a/.paket/Paket.Restore.targets +++ b/.paket/Paket.Restore.targets @@ -27,38 +27,7 @@ $(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)" - $(MonoPath) --runtime=v4.0.30319 "$(PaketExePath)" - "$(PaketExePath)" - - + "$(PaketBootStrapperExePath)" $(MonoPath) --runtime=v4.0.30319 "$(PaketBootStrapperExePath)" @@ -74,6 +43,57 @@ $(BaseIntermediateOutputPath.TrimEnd('\').TrimEnd('\/')) + + + + + + + + + + + dotnet paket + + + + + + $(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)" + $(MonoPath) --runtime=v4.0.30319 "$(PaketExePath)" + "$(PaketExePath)" + + + + + + + + + + @@ -81,7 +101,7 @@ - + @@ -203,7 +223,7 @@ $([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) @@ -246,7 +266,7 @@ - + <_NuspecFilesNewLocation Include="$(PaketIntermediateOutputPath)\$(Configuration)\*.nuspec"/> diff --git a/Expecto.BenchmarkDotNet/Expecto.BenchmarkDotNet.fs b/Expecto.BenchmarkDotNet/Expecto.BenchmarkDotNet.fs index 647b2cab..60f4fea4 100644 --- a/Expecto.BenchmarkDotNet/Expecto.BenchmarkDotNet.fs +++ b/Expecto.BenchmarkDotNet/Expecto.BenchmarkDotNet.fs @@ -1,5 +1,6 @@ namespace Expecto +open System.Text open BenchmarkDotNet open BenchmarkDotNet.Running open BenchmarkDotNet.Configs @@ -11,6 +12,7 @@ open BenchmarkDotNet.Filters open BenchmarkDotNet.Jobs open BenchmarkDotNet.Loggers open BenchmarkDotNet.Order +open BenchmarkDotNet.Reports open BenchmarkDotNet.Validators [] @@ -24,36 +26,38 @@ module BenchmarkDotNet = type BenchmarkConfig = { columnProviders: IColumnProvider list hardwareCounters: HardwareCounter list - summaryStyle: Reports.ISummaryStyle + summaryStyle: SummaryStyle exporters : IExporter list loggers : ILogger list diagnosers : IDiagnoser list analysers : IAnalyser list jobs : Job list validators : IValidator list - orderProvider : IOrderProvider + orderer : IOrderer unionRule : ConfigUnionRule - keepFiles : bool filters : IFilter list artifactsPath : string logicalGroupRules : BenchmarkLogicalGroupRule list + encoding: Encoding + options: ConfigOptions } interface IConfig with member x.GetColumnProviders() = Seq.ofList x.columnProviders member x.GetHardwareCounters() = Seq.ofList x.hardwareCounters - member x.GetSummaryStyle() = x.summaryStyle + member x.SummaryStyle = x.summaryStyle member x.GetExporters() = Seq.ofList x.exporters member x.GetLoggers() = Seq.ofList x.loggers member x.GetDiagnosers() = Seq.ofList x.diagnosers member x.GetAnalysers() = Seq.ofList x.analysers member x.GetJobs() = Seq.ofList x.jobs member x.GetValidators() = Seq.ofList x.validators - member x.GetOrderProvider() = x.orderProvider + member x.Orderer = x.orderer member x.UnionRule = x.unionRule - member x.KeepBenchmarkFiles = x.keepFiles member x.GetFilters() = Seq.ofList x.filters member x.ArtifactsPath = x.artifactsPath member x.GetLogicalGroupRules() = Seq.ofList x.logicalGroupRules + member x.Encoding = x.encoding + member x.Options = x.options let private synchronisedLogger = let cl = ConsoleLogger.Default @@ -64,25 +68,28 @@ module BenchmarkDotNet = cl.WriteLine (kind, text) member __.WriteLine () = cl.WriteLine() + member __.Flush () = + cl.Flush() } let benchmarkConfig = let def = DefaultConfig.Instance { columnProviders = def.GetColumnProviders() |> List.ofSeq hardwareCounters = def.GetHardwareCounters() |> List.ofSeq - summaryStyle = def.GetSummaryStyle() + summaryStyle = def.SummaryStyle exporters = def.GetExporters() |> List.ofSeq loggers = [ synchronisedLogger ] diagnosers = def.GetDiagnosers() |> List.ofSeq analysers = def.GetAnalysers() |> List.ofSeq jobs = def.GetJobs() |> List.ofSeq validators = def.GetValidators() |> List.ofSeq - orderProvider = def.GetOrderProvider() + orderer = def.Orderer unionRule = def.UnionRule - keepFiles = true filters = def.GetFilters() |> List.ofSeq artifactsPath = def.ArtifactsPath logicalGroupRules = def.GetLogicalGroupRules() |> List.ofSeq + encoding = def.Encoding + options = def.Options } /// Run a performance test: pass the annotated type as a type param diff --git a/paket.dependencies b/paket.dependencies index 31ae41a1..2062742f 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -1,15 +1,15 @@ source https://api.nuget.org/v3/index.json framework net461, netstandard2.0, netcoreapp2.0, netcoreapp2.1 storage: none -clitool paket -version 5.219.0 +clitool paket 5.226.0 +version 5.226.0 nuget FSharp.Core 4.3.4 nuget FsCheck ~> 2.10 nuget Hopac ~> 0.3 nuget DiffPlex ~> 1.4.4 nuget Mono.Cecil ~> 0.10 -nuget BenchmarkDotNet 0.10.14 +nuget BenchmarkDotNet ~> 0.11 group Build source https://api.nuget.org/v3/index.json diff --git a/paket.lock b/paket.lock index dc60b3d7..80a62f8f 100644 --- a/paket.lock +++ b/paket.lock @@ -2,24 +2,25 @@ STORAGE: NONE RESTRICTION: || (== net461) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) NUGET remote: https://api.nuget.org/v3/index.json - BenchmarkDotNet (0.10.14) - BenchmarkDotNet.Core (>= 0.10.14) - restriction: || (== net461) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - BenchmarkDotNet.Toolchains.Roslyn (>= 0.10.14) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netstandard2.0) (>= net46)) - BenchmarkDotNet.Core (0.10.14) - restriction: || (== net461) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Microsoft.DotNet.InternalAbstractions (>= 1.0) - restriction: || (== net461) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Microsoft.DotNet.PlatformAbstractions (>= 1.1.1) - restriction: || (== net461) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Microsoft.Win32.Registry (>= 4.3) - restriction: || (== net461) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (== net461) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netstandard2.0) (>= net46)) - System.ValueTuple (>= 4.3) - restriction: || (== net461) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Xml.XmlSerializer (>= 4.3) - restriction: || (== net461) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.1)) - BenchmarkDotNet.Toolchains.Roslyn (0.10.14) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netstandard2.0) (>= net46)) - BenchmarkDotNet.Core (>= 0.10.14) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netstandard2.0) (>= net46)) - Microsoft.CodeAnalysis.CSharp (>= 2.6.1) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netstandard2.0) (>= net46)) - System.Threading.Tasks (>= 4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netstandard2.0) (>= net46)) + BenchmarkDotNet (0.11.5) + BenchmarkDotNet.Annotations (>= 0.11.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + CommandLineParser (>= 2.4.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.CodeAnalysis.CSharp (>= 2.10) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.DotNet.PlatformAbstractions (>= 2.1) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.Win32.Registry (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections.Immutable (>= 1.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Management (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Metadata (>= 1.6) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks.Extensions (>= 4.5.2) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.ValueTuple (>= 4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.XmlSerializer (>= 4.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + BenchmarkDotNet.Annotations (0.11.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + CommandLineParser (2.6) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) DiffPlex (1.4.4) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) FsCheck (2.14) @@ -29,64 +30,65 @@ NUGET FSharp.Core (>= 3.1.2.5) - restriction: || (== net461) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.1) (< netstandard1.6)) (&& (== netstandard2.0) (< netstandard1.6)) FSharp.Core (>= 4.0.1.7-alpha) - restriction: || (&& (== net461) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) NETStandard.Library (>= 1.6) - restriction: || (&& (== net461) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.CodeAnalysis.CSharp (3.3.1) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netstandard2.0) (>= net46)) - Microsoft.DotNet.InternalAbstractions (1.0) - restriction: || (== net461) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.AppContext (>= 4.1) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Collections (>= 4.0.11) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO (>= 4.1) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem (>= 4.0.1) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.1) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.InteropServices (>= 4.1) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.DotNet.PlatformAbstractions (3.0) - restriction: || (== net461) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= net45)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netstandard2.0) (>= net45)) - Microsoft.NETCore.Platforms (3.0) - restriction: || (&& (== net461) (< net35)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (< netstandard1.0) (>= win8)) (&& (== net461) (< netstandard1.3) (>= wpa81)) (&& (== net461) (>= uap10.0)) (&& (== net461) (>= wp8)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (3.0) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Microsoft.Win32.Registry (4.6) - restriction: || (== net461) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + Microsoft.CodeAnalysis.Analyzers (2.9.6) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.CodeAnalysis.Common (3.3.1) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.CodeAnalysis.Analyzers (>= 2.9.4) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections.Immutable (>= 1.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Memory (>= 4.5.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Metadata (>= 1.6) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.CompilerServices.Unsafe (>= 4.5.2) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding.CodePages (>= 4.5.1) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks.Extensions (>= 4.5.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.CodeAnalysis.CSharp (3.3.1) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.CodeAnalysis.Common (3.3.1) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.DotNet.PlatformAbstractions (3.0) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (3.0) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (3.0) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.Win32.Registry (4.6) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Buffers (>= 4.5) - 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)) (&& (== netcoreapp2.1) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= monotouch)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= xamarinios)) (&& (== netcoreapp2.1) (>= xamarinmac)) (&& (== netcoreapp2.1) (>= xamarintvos)) (&& (== netcoreapp2.1) (>= xamarinwatchos)) (== netstandard2.0) System.Memory (>= 4.5.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) System.Security.AccessControl (>= 4.6) System.Security.Principal.Windows (>= 4.6) Mono.Cecil (0.11) NETStandard.Library (2.0.3) - restriction: || (&& (== net461) (< net35)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - paket (5.219.5) - clitool: true - runtime.native.System (4.3.1) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + paket (5.226) - clitool: true + runtime.native.System (4.3.1) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1.1) Microsoft.NETCore.Targets (>= 1.1.3) - System.AppContext (4.3) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net451)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Collections (4.3) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Collections.Immutable (1.6) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.1)) (&& (== net461) (< netstandard1.3)) (&& (== net461) (>= wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Buffers (4.5) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (== netcoreapp2.1)) (&& (== net461) (>= monoandroid) (>= netstandard2.0)) (&& (== net461) (>= monotouch) (>= netstandard2.0)) (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netstandard2.0) (>= xamarintvos)) (&& (== net461) (>= netstandard2.0) (>= xamarinwatchos)) (&& (== net461) (>= xamarinios)) (&& (== net461) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (&& (== netcoreapp2.1) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= monotouch)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= xamarinios)) (&& (== netcoreapp2.1) (>= xamarinmac)) (&& (== netcoreapp2.1) (>= xamarintvos)) (&& (== netcoreapp2.1) (>= xamarinwatchos)) (== netstandard2.0) + System.CodeDom (4.6) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections.Immutable (1.6) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Memory (>= 4.5.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netcoreapp2.1) (>= net46)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) - System.Diagnostics.Debug (4.3) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.FileVersionInfo (4.3) - restriction: || (== net461) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Debug (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.FileVersionInfo (4.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Metadata (>= 1.4.1) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Metadata (>= 1.4.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Globalization (4.3) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO (4.3) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem (4.3) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Globalization (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO.FileSystem (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -95,113 +97,130 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Linq (4.3) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Memory (4.5.3) - restriction: || (&& (== net461) (== netcoreapp2.1)) (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (&& (== netcoreapp2.1) (== netstandard2.0)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Linq (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Management (4.6) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 3.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp2.0)) + Microsoft.Win32.Registry (>= 4.6) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.CodeDom (>= 4.6) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Memory (4.5.3) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== 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)) (&& (== netcoreapp2.1) (>= monotouch)) (&& (== netcoreapp2.1) (>= net461)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (< netstandard1.1)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= xamarinios)) (&& (== netcoreapp2.1) (>= xamarinmac)) (&& (== netcoreapp2.1) (>= xamarintvos)) (&& (== netcoreapp2.1) (>= xamarinwatchos)) (== netstandard2.0) + System.Numerics.Vectors (>= 4.4) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.1) (>= net461)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (== netstandard2.0) System.Runtime.CompilerServices.Unsafe (>= 4.5.2) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netcoreapp2.1) (>= monotouch)) (&& (== netcoreapp2.1) (>= net461)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (< netstandard1.1)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (&& (== netcoreapp2.1) (>= xamarinios)) (&& (== netcoreapp2.1) (>= xamarinmac)) (&& (== netcoreapp2.1) (>= xamarintvos)) (&& (== netcoreapp2.1) (>= xamarinwatchos)) (== netstandard2.0) - System.Reflection (4.3) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Emit (4.6) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Reflection.Emit.ILGeneration (4.6) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Reflection.Emit.Lightweight (4.6) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Reflection.Extensions (4.3) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Metadata (1.7) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Numerics.Vectors (4.5) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (== netcoreapp2.1)) (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= netstandard2.0) (>= uap10.1)) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.1) (>= net461)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) + System.Reflection (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Emit (4.6) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (>= 4.6) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (&& (== net461) (>= uap10.1)) (&& (== net461) (>= wpa81)) (&& (== netcoreapp2.0) (< netstandard1.1)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.1)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (< netstandard1.1)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (4.6) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (< netstandard1.1) (>= netstandard2.0)) (&& (== net461) (>= netstandard2.0) (>= uap10.1)) (&& (== net461) (>= netstandard2.0) (>= wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Emit.Lightweight (4.6) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (>= 4.6) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+wp8)) (&& (== net461) (>= uap10.1)) (&& (== net461) (>= wpa81)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+wp8)) (&& (== netcoreapp2.0) (>= uap10.1)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netcoreapp2.1) (< portable-net45+wp8)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) + System.Reflection.Extensions (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Metadata (1.7) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Collections.Immutable (>= 1.6) - System.Reflection.Primitives (4.3) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.TypeExtensions (4.6) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Resources.ResourceManager (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (4.3.1) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net45)) (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.CompilerServices.Unsafe (4.6) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netcoreapp2.1) (== netstandard2.0)) (&& (== netcoreapp2.1) (>= monotouch)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netcoreapp2.1) (>= net461)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (< netstandard1.1)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (&& (== netcoreapp2.1) (>= xamarinios)) (&& (== netcoreapp2.1) (>= xamarinmac)) (&& (== netcoreapp2.1) (>= xamarintvos)) (&& (== netcoreapp2.1) (>= xamarinwatchos)) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp1.1)) (&& (== netstandard2.0) (>= netcoreapp2.0)) - System.Runtime.Extensions (4.3.1) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Handles (4.3) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Reflection.Primitives (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.TypeExtensions (4.6) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (4.3.1) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.CompilerServices.Unsafe (4.6) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (4.3.1) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Handles (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.InteropServices (4.3) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= net462)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (== net461) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Runtime.InteropServices (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= net462)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Security.AccessControl (4.6) - restriction: || (== net461) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp1.1)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Security.AccessControl (4.6) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= netstandard2.0)) (&& (== net461) (>= xamarinios)) (&& (== net461) (>= xamarinmac)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 3.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Security.Principal.Windows (>= 4.6) - System.Security.Principal.Windows (4.6) - restriction: || (== net461) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp1.1)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Security.Principal.Windows (4.6) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= netstandard2.0)) (&& (== net461) (>= xamarinios)) (&& (== net461) (>= xamarinmac)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 3.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp2.0)) (&& (== netstandard2.0) (>= netcoreapp2.1)) - System.Text.Encoding (4.3) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Text.Encoding.Extensions (4.3) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Text.RegularExpressions (4.3.1) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Runtime (>= 4.3.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading (4.3) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading.Tasks (4.3) - restriction: || (== net461) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Threading.Tasks.Extensions (4.5.3) - restriction: || (== net461) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Text.Encoding (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding.CodePages (4.6) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 3.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Runtime.CompilerServices.Unsafe (>= 4.6) + System.Text.Encoding.Extensions (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.RegularExpressions (4.3.1) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (== netstandard2.0) + System.Runtime (>= 4.3.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3.1) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (== netstandard2.0) + System.Threading (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks.Extensions (4.5.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.CompilerServices.Unsafe (>= 4.5.2) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netcoreapp2.1) (>= net45)) (&& (== netcoreapp2.1) (< netstandard1.0)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= wp8)) (== netstandard2.0) - System.ValueTuple (4.5) - restriction: || (== net461) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Xml.ReaderWriter (4.3.1) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Xml.XmlDocument (4.3) - restriction: || (&& (== net461) (== netstandard2.0)) (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.ValueTuple (4.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.ReaderWriter (4.3.1) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.XmlDocument (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -212,25 +231,25 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Xml.XmlSerializer (4.3) - restriction: || (== net461) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp1.1)) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Linq (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Xml.XPath (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Xml.XmlSerializer (4.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Linq (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.XPath (4.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -240,7 +259,7 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Xml.XPath.XmlDocument (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp1.1)) + System.Xml.XPath.XmlDocument (4.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -429,46 +448,48 @@ NUGET FSharp.Core (>= 4.2.3) System.Reactive (>= 4.0) FSharp.Core (4.6.2) - Microsoft.Build (16.0.461) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.Build.Framework (>= 16.0.461) - restriction: || (&& (== net461) (>= net472)) (&& (== net461) (>= netcoreapp2.1)) (&& (== netcoreapp2.0) (>= net472)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net472)) (&& (== netstandard2.0) (>= netcoreapp2.1)) + Microsoft.Build (16.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.Build.Framework (>= 16.3) - restriction: || (&& (== net461) (>= net472)) (&& (== net461) (>= netcoreapp2.1)) (&& (== netcoreapp2.0) (>= net472)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net472)) (&& (== netstandard2.0) (>= netcoreapp2.1)) Microsoft.Win32.Registry (>= 4.3) - restriction: || (&& (== net461) (>= netcoreapp2.1)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp2.1)) System.Collections.Immutable (>= 1.5) - restriction: || (&& (== net461) (>= net472)) (&& (== net461) (>= netcoreapp2.1)) (&& (== netcoreapp2.0) (>= net472)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net472)) (&& (== netstandard2.0) (>= netcoreapp2.1)) System.Diagnostics.TraceSource (>= 4.0) - restriction: || (&& (== net461) (>= netcoreapp2.1)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp2.1)) + System.Memory (>= 4.5.3) - restriction: || (&& (== net461) (>= net472)) (&& (== net461) (>= netcoreapp2.1)) (&& (== netcoreapp2.0) (>= net472)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net472)) (&& (== netstandard2.0) (>= netcoreapp2.1)) System.Reflection.Metadata (>= 1.6) - restriction: || (&& (== net461) (>= netcoreapp2.1)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp2.1)) System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== net461) (>= netcoreapp2.1)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp2.1)) System.Runtime.Loader (>= 4.0) - restriction: || (&& (== net461) (>= netcoreapp2.1)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp2.1)) System.Security.Principal.Windows (>= 4.3) - restriction: || (&& (== net461) (>= netcoreapp2.1)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp2.1)) System.Text.Encoding.CodePages (>= 4.0.1) - restriction: || (&& (== net461) (>= netcoreapp2.1)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp2.1)) - System.Threading.Tasks.Dataflow (>= 4.6) - restriction: || (&& (== net461) (>= netcoreapp2.1)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp2.1)) - Microsoft.Build.Framework (16.0.461) - restriction: || (&& (== net461) (< net46) (>= net472)) (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks.Dataflow (>= 4.9) - restriction: || (&& (== net461) (>= net472)) (&& (== net461) (>= netcoreapp2.1)) (&& (== netcoreapp2.0) (>= net472)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (== netcoreapp2.1) (&& (== netstandard2.0) (>= net472)) (&& (== netstandard2.0) (>= netcoreapp2.1)) + Microsoft.Build.Framework (16.3) - restriction: || (&& (== net461) (< net46) (>= net472)) (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.Serialization.Primitives (>= 4.1.1) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.Thread (>= 4.0) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.Build.Tasks.Core (16.0.461) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.Build.Framework (>= 16.0.461) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.Build.Utilities.Core (>= 16.0.461) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.Build.Tasks.Core (16.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.Build.Framework (>= 16.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.Build.Utilities.Core (>= 16.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.Win32.Registry (>= 4.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.CodeDom (>= 4.4) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Collections.Immutable (>= 1.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Linq.Parallel (>= 4.0.1) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Net.Http (>= 4.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Net.Http (>= 4.3.4) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection.Metadata (>= 1.6) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.Extensions (>= 4.6) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Resources.Writer (>= 4.0) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading.Tasks.Dataflow (>= 4.6) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.Build.Utilities.Core (16.0.461) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.Build.Framework (>= 16.0.461) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks.Dataflow (>= 4.9) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.Build.Utilities.Core (16.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.Build.Framework (>= 16.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.Win32.Registry (>= 4.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Collections.Immutable (>= 1.5) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Text.Encoding.CodePages (>= 4.0.1) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (3.0) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (3.0) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (3.0) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (3.0) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.Win32.Primitives (4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.Win32.Registry (4.6) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Buffers (>= 4.5) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (== netcoreapp2.1)) (&& (== 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)) (&& (== netcoreapp2.1) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= monotouch)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= xamarinios)) (&& (== netcoreapp2.1) (>= xamarinmac)) (&& (== netcoreapp2.1) (>= xamarintvos)) (&& (== netcoreapp2.1) (>= xamarinwatchos)) (== netstandard2.0) - System.Memory (>= 4.5.3) - restriction: || (&& (== net461) (== netcoreapp2.1)) (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) + System.Buffers (>= 4.5) - 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)) (&& (== netcoreapp2.1) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= monotouch)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= xamarinios)) (&& (== netcoreapp2.1) (>= xamarinmac)) (&& (== netcoreapp2.1) (>= xamarintvos)) (&& (== netcoreapp2.1) (>= xamarinwatchos)) (== netstandard2.0) + System.Memory (>= 4.5.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) System.Security.AccessControl (>= 4.6) System.Security.Principal.Windows (>= 4.6) MSBuild.StructuredLogger (2.0.110) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -476,7 +497,7 @@ NUGET Microsoft.Build.Framework (>= 15.8.166) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.Build.Tasks.Core (>= 15.8.166) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.Build.Utilities.Core (>= 15.8.166) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - NETStandard.Library (2.0.3) - restriction: || (&& (== net461) (< net40) (>= netstandard1.6)) (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + NETStandard.Library (2.0.3) - restriction: || (&& (== net461) (< net40) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) Newtonsoft.Json (12.0.2) - restriction: || (&& (== net461) (>= net462)) (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) NuGet.Common (5.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -496,8 +517,7 @@ NUGET NuGet.Packaging (>= 5.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) NuGet.Versioning (5.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Octokit (0.34) - NETStandard.Library (>= 1.6) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Octokit (0.36) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -507,7 +527,7 @@ NUGET runtime.native.System (4.3.1) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1.1) Microsoft.NETCore.Targets (>= 1.1.3) - runtime.native.System.IO.Compression (4.3.2) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + runtime.native.System.IO.Compression (4.3.2) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== 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) (== netcoreapp2.1) (== netstandard2.0) @@ -541,40 +561,40 @@ NUGET runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Buffers (4.5) - restriction: || (&& (== net461) (>= monoandroid)) (&& (== net461) (>= monotouch)) (&& (== net461) (< net45)) (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (< portable-net45+win8+wpa81)) (&& (== net461) (>= xamarinios)) (&& (== net461) (>= xamarinmac)) (&& (== net461) (>= xamarintvos)) (&& (== net461) (>= xamarinwatchos)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Buffers (4.5) - restriction: || (&& (== net461) (>= monoandroid)) (&& (== net461) (>= monotouch)) (&& (== net461) (< net45)) (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= xamarinios)) (&& (== net461) (>= xamarinmac)) (&& (== net461) (>= xamarintvos)) (&& (== net461) (>= xamarinwatchos)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.CodeDom (4.6) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Collections (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Collections.Concurrent (4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Collections.Immutable (1.6) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (< netstandard1.1)) (&& (== net461) (< netstandard1.3)) (&& (== net461) (>= wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections.Immutable (1.6) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (< netstandard1.1)) (&& (== net461) (>= wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Memory (>= 4.5.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netcoreapp2.1) (>= net46)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) - System.Diagnostics.Debug (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.DiagnosticSource (4.6) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Debug (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.DiagnosticSource (4.6) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Memory (>= 4.5.3) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netcoreapp2.1) (>= net45) (< netstandard1.3)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) System.Diagnostics.FileVersionInfo (4.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Metadata (>= 1.4.1) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Metadata (>= 1.4.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Diagnostics.Process (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -598,10 +618,10 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.Thread (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.ThreadPool (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.Tools (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netstandard2.0) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Tools (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Diagnostics.TraceSource (4.3) - restriction: || (&& (== net461) (>= netcoreapp2.1)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp2.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -612,30 +632,30 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.Tracing (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Tracing (4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Dynamic.Runtime (4.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Linq (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.ObjectModel (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Linq (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.ObjectModel (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Globalization (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Globalization.Calendars (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization.Calendars (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -647,28 +667,28 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO.Compression (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - runtime.native.System.IO.Compression (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Buffers (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + runtime.native.System.IO.Compression (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Buffers (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO.Compression.ZipFile (4.3) System.Buffers (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -688,7 +708,7 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO.FileSystem.Watcher (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -708,153 +728,155 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.Thread (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Linq (4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Linq.Expressions (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netstandard2.0) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Linq (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Linq.Expressions (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Linq (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.ObjectModel (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Linq.Parallel (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Linq (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Memory (4.5.3) - restriction: || (&& (== net461) (== netcoreapp2.1)) (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Linq (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Memory (4.5.3) - restriction: || (&& (== net461) (< net46) (>= net472)) (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== 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)) (&& (== netcoreapp2.1) (>= monotouch)) (&& (== netcoreapp2.1) (>= net461)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (< netstandard1.1)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= xamarinios)) (&& (== netcoreapp2.1) (>= xamarinmac)) (&& (== netcoreapp2.1) (>= xamarintvos)) (&& (== netcoreapp2.1) (>= xamarinwatchos)) (== netstandard2.0) System.Numerics.Vectors (>= 4.4) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.1) (>= net461)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (== netstandard2.0) System.Runtime.CompilerServices.Unsafe (>= 4.5.2) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netcoreapp2.1) (>= monotouch)) (&& (== netcoreapp2.1) (>= net461)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (< netstandard1.1)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (&& (== netcoreapp2.1) (>= xamarinios)) (&& (== netcoreapp2.1) (>= xamarinmac)) (&& (== netcoreapp2.1) (>= xamarintvos)) (&& (== netcoreapp2.1) (>= xamarinwatchos)) (== netstandard2.0) System.Net.Http (4.3.4) - Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.native.System.Net.Http (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Globalization.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Net.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Net.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Security.Cryptography.X509Certificates (>= 4.3) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Net.Primitives (4.3.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Net.Primitives (4.3.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Numerics.Vectors (4.5) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (== netcoreapp2.1)) (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.1) (>= net461)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) - System.ObjectModel (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netstandard2.0) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reactive (4.1.6) + System.ObjectModel (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reactive (4.2) System.Runtime.InteropServices.WindowsRuntime (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading.Tasks.Extensions (>= 4.5.2) + System.Threading.Tasks.Extensions (>= 4.5.3) System.ValueTuple (>= 4.5) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netcoreapp2.1) (>= uap10.0)) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= uap10.0)) - System.Reactive.Compatibility (4.1.6) - System.Reactive.Core (>= 4.1.6) - System.Reactive.Experimental (>= 4.1.6) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netcoreapp2.1) (>= net45)) (&& (== netstandard2.0) (>= net45)) - System.Reactive.Interfaces (>= 4.1.6) - System.Reactive.Linq (>= 4.1.6) - System.Reactive.PlatformServices (>= 4.1.6) - System.Reactive.Providers (>= 4.1.6) - System.Reactive.Runtime.Remoting (>= 4.1.6) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netcoreapp2.1) (>= net45)) (&& (== netstandard2.0) (>= net45)) - System.Reactive.Windows.Forms (>= 4.1.6) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netcoreapp2.1) (>= net45)) (&& (== netstandard2.0) (>= net45)) - System.Reactive.Windows.Threading (>= 4.1.6) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.1) (>= net45)) (&& (== netcoreapp2.1) (>= uap10.0)) (&& (== netstandard2.0) (>= net45)) (&& (== netstandard2.0) (>= uap10.0)) - System.Reactive.Core (4.1.6) - System.Reactive (>= 4.1.6) - System.Threading.Tasks.Extensions (>= 4.5.2) - System.Reactive.Experimental (4.1.6) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netcoreapp2.1) (>= net45)) (&& (== netstandard2.0) (>= net45)) - System.Reactive (>= 4.1.6) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netstandard2.0) (>= net46)) - System.Threading.Tasks.Extensions (>= 4.5.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netstandard2.0) (>= net46)) - System.Reactive.Interfaces (4.1.6) - System.Reactive (>= 4.1.6) - System.Threading.Tasks.Extensions (>= 4.5.2) - System.Reactive.Linq (4.1.6) - System.Reactive (>= 4.1.6) - System.Threading.Tasks.Extensions (>= 4.5.2) - System.Reactive.PlatformServices (4.1.6) - System.Reactive (>= 4.1.6) - System.Threading.Tasks.Extensions (>= 4.5.2) - System.Reactive.Providers (4.1.6) - System.Reactive (>= 4.1.6) - System.Threading.Tasks.Extensions (>= 4.5.2) - System.Reactive.Runtime.Remoting (4.1.6) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netcoreapp2.1) (>= net45)) (&& (== netstandard2.0) (>= net45)) - System.Reactive (>= 4.1.6) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netstandard2.0) (>= net46)) - System.Threading.Tasks.Extensions (>= 4.5.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netstandard2.0) (>= net46)) - System.Reactive.Windows.Forms (4.1.6) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netcoreapp2.1) (>= net45)) (&& (== netstandard2.0) (>= net45)) - System.Reactive (>= 4.1.6) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netstandard2.0) (>= net46)) - System.Threading.Tasks.Extensions (>= 4.5.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netstandard2.0) (>= net46)) - System.Reactive.Windows.Threading (4.1.6) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.1) (>= net45)) (&& (== netcoreapp2.1) (>= uap10.0)) (&& (== netstandard2.0) (>= net45)) (&& (== netstandard2.0) (>= uap10.0)) - System.Reactive (>= 4.1.6) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netcoreapp2.1) (>= uap10.0)) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= uap10.0)) - System.Threading.Tasks.Extensions (>= 4.5.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netcoreapp2.1) (>= uap10.0)) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= uap10.0)) - System.Reflection (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= netstandard2.0) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reactive.Compatibility (4.2) + System.Reactive.Core (>= 4.2) + System.Reactive.Experimental (>= 4.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netcoreapp2.1) (>= net45)) (&& (== netstandard2.0) (>= net45)) + System.Reactive.Interfaces (>= 4.2) + System.Reactive.Linq (>= 4.2) + System.Reactive.PlatformServices (>= 4.2) + System.Reactive.Providers (>= 4.2) + System.Reactive.Runtime.Remoting (>= 4.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netcoreapp2.1) (>= net45)) (&& (== netstandard2.0) (>= net45)) + System.Reactive.Windows.Forms (>= 4.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netcoreapp2.1) (>= net45)) (&& (== netstandard2.0) (>= net45)) + System.Reactive.Windows.Threading (>= 4.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.1) (>= net45)) (&& (== netcoreapp2.1) (>= uap10.0)) (&& (== netstandard2.0) (>= net45)) (&& (== netstandard2.0) (>= uap10.0)) + System.Reactive.Core (4.2) + System.Reactive (>= 4.2) + System.Threading.Tasks.Extensions (>= 4.5.3) + System.Reactive.Experimental (4.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netcoreapp2.1) (>= net45)) (&& (== netstandard2.0) (>= net45)) + System.Reactive (>= 4.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.Threading.Tasks.Extensions (>= 4.5.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.Reactive.Interfaces (4.2) + System.Reactive (>= 4.2) + System.Threading.Tasks.Extensions (>= 4.5.3) + System.Reactive.Linq (4.2) + System.Reactive (>= 4.2) + System.Threading.Tasks.Extensions (>= 4.5.3) + System.Reactive.PlatformServices (4.2) + System.Reactive (>= 4.2) + System.Threading.Tasks.Extensions (>= 4.5.3) + System.Reactive.Providers (4.2) + System.Reactive (>= 4.2) + System.Threading.Tasks.Extensions (>= 4.5.3) + System.Reactive.Runtime.Remoting (4.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netcoreapp2.1) (>= net45)) (&& (== netstandard2.0) (>= net45)) + System.Reactive (>= 4.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.Threading.Tasks.Extensions (>= 4.5.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.Reactive.Windows.Forms (4.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netcoreapp2.1) (>= net45)) (&& (== netstandard2.0) (>= net45)) + System.Reactive (>= 4.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.Threading.Tasks.Extensions (>= 4.5.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netstandard2.0) (>= net46)) + System.Reactive.Windows.Threading (4.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net45)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.1) (>= net45)) (&& (== netcoreapp2.1) (>= uap10.0)) (&& (== netstandard2.0) (>= net45)) (&& (== netstandard2.0) (>= uap10.0)) + System.Reactive (>= 4.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netcoreapp2.1) (>= uap10.0)) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= uap10.0)) + System.Threading.Tasks.Extensions (>= 4.5.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netcoreapp2.1) (>= uap10.0)) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= uap10.0)) + System.Reflection (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection.Emit (4.6) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Emit.ILGeneration (>= 4.6) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (== netcoreapp2.1)) (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (&& (== net461) (>= uap10.1)) (&& (== net461) (>= wpa81)) (&& (== netcoreapp2.0) (< netstandard1.1)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (>= uap10.1)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (< netstandard1.1)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netcoreapp2.1) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) - System.Reflection.Emit.ILGeneration (4.6) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (< netstandard1.1) (>= netstandard2.0)) (&& (== net461) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (== net461) (>= netstandard2.0) (>= uap10.1)) (&& (== net461) (>= netstandard2.0) (>= wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Emit.Lightweight (4.6) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netstandard2.0) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Emit.ILGeneration (>= 4.6) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (== netcoreapp2.1)) (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (&& (== net461) (< portable-net45+wp8)) (&& (== net461) (>= uap10.1)) (&& (== net461) (>= wpa81)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wp8+wpa81)) (&& (== netcoreapp2.0) (< portable-net45+wp8)) (&& (== netcoreapp2.0) (>= uap10.1)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netcoreapp2.1) (< portable-net45+win8+wp8+wpa81)) (&& (== netcoreapp2.1) (< portable-net45+wp8)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) - System.Reflection.Extensions (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netstandard2.0) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Metadata (1.7) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (>= 4.6) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (&& (== net461) (>= uap10.1)) (&& (== net461) (>= wpa81)) (&& (== netcoreapp2.0) (< netstandard1.1)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.1)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (< netstandard1.1)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (4.6) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (< netstandard1.1) (>= netstandard2.0)) (&& (== net461) (>= netstandard2.0) (>= uap10.1)) (&& (== net461) (>= netstandard2.0) (>= wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Emit.Lightweight (4.6) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (>= 4.6) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+wp8)) (&& (== net461) (>= uap10.1)) (&& (== net461) (>= wpa81)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+wp8)) (&& (== netcoreapp2.0) (>= uap10.1)) (&& (== netcoreapp2.1) (< netcoreapp2.0)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netcoreapp2.1) (< portable-net45+wp8)) (&& (== netcoreapp2.1) (>= uap10.1)) (== netstandard2.0) + System.Reflection.Extensions (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Metadata (1.7) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Collections.Immutable (>= 1.6) - System.Reflection.Primitives (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.TypeExtensions (4.6) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= netstandard2.0) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Primitives (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.TypeExtensions (4.6) - restriction: || (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.Extensions (4.6) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Memory (>= 4.5.3) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Resources.ResourceManager (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Resources.Writer (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -862,59 +884,59 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (4.3.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (< netstandard1.1)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.CompilerServices.Unsafe (4.6) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (< netstandard1.0)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (&& (== net461) (>= wp8)) (&& (== net461) (>= wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (4.3.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (4.3.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (< netstandard1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.CompilerServices.Unsafe (4.6) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (< netstandard1.0)) (&& (== net461) (>= wp8)) (&& (== net461) (>= wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (4.3.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.Handles (4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.InteropServices (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= net462)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.InteropServices (4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= net462)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.InteropServices.WindowsRuntime (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.Loader (4.3) - restriction: || (&& (== net461) (>= netcoreapp2.1)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp2.1)) System.IO (>= 4.3) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.Numerics (4.3) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Security.AccessControl (4.6) - restriction: || (&& (== net461) (>= monoandroid)) (&& (== net461) (>= monotouch)) (&& (== net461) (< net46)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= xamarinios)) (&& (== net461) (>= xamarinmac)) (&& (== net461) (>= xamarintvos)) (&& (== net461) (>= xamarinwatchos)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 3.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Security.Principal.Windows (>= 4.6) System.Security.Cryptography.Algorithms (4.3.1) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (>= net463)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (>= net463)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (>= net463)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (>= net463)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (>= net463)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (>= net463)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Security.Cryptography.Primitives (>= 4.3) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Security.Cryptography.Cng (4.6) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 3.0) - restriction: || (&& (== net461) (== netcoreapp2.1)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netcoreapp2.1) (== netstandard2.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Security.Cryptography.Cng (4.6) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 3.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Security.Cryptography.Csp (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -943,7 +965,7 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Security.Cryptography.OpenSsl (4.6) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 3.0) - restriction: || (&& (== net461) (== netcoreapp2.1)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netcoreapp2.1) (== netstandard2.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + Microsoft.NETCore.Platforms (>= 3.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -953,67 +975,67 @@ NUGET System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Security.Cryptography.ProtectedData (4.6) - restriction: || (&& (== net461) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Memory (>= 4.5.3) - restriction: || (&& (== net461) (== netcoreapp2.1)) (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) + System.Memory (>= 4.5.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netstandard2.0) System.Security.Cryptography.X509Certificates (4.3.2) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.native.System.Net.Http (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Globalization.Calendars (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization.Calendars (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Security.Cryptography.Algorithms (>= 4.3) - System.Security.Cryptography.Cng (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Security.Cryptography.Cng (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Security.Cryptography.Csp (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Security.Cryptography.Encoding (>= 4.3) System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Security.Principal.Windows (4.6) - restriction: || (&& (== net461) (>= monoandroid)) (&& (== net461) (>= monotouch)) (&& (== net461) (< net46)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= xamarinios)) (&& (== net461) (>= xamarinmac)) (&& (== net461) (>= xamarintvos)) (&& (== net461) (>= xamarinwatchos)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 3.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp2.0)) (&& (== netstandard2.0) (>= netcoreapp2.1)) - System.Text.Encoding (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding (4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Text.Encoding.CodePages (4.6) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 3.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Runtime.CompilerServices.Unsafe (>= 4.6) - System.Text.Encoding.Extensions (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Text.RegularExpressions (4.3.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (== netcoreapp2.1)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.0) (< portable-net45+win8+wp8+wpa81)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< portable-net45+win8+wp8+wpa81)) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (== netcoreapp2.1)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.0) (< portable-net45+win8+wp8+wpa81)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< portable-net45+win8+wp8+wpa81)) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (== netcoreapp2.1)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.0) (< portable-net45+win8+wp8+wpa81)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< portable-net45+win8+wp8+wpa81)) (== netstandard2.0) - System.Runtime (>= 4.3.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3.1) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (== netcoreapp2.1)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.0) (< portable-net45+win8+wp8+wpa81)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< portable-net45+win8+wp8+wpa81)) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (== netcoreapp2.0)) (&& (== net461) (== netcoreapp2.1)) (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.0) (< portable-net45+win8+wp8+wpa81)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< portable-net45+win8+wp8+wpa81)) (== netstandard2.0) - System.Threading (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding.Extensions (4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.RegularExpressions (4.3.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (== netstandard2.0) + System.Runtime (>= 4.3.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3.1) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (&& (== netcoreapp2.1) (< netcoreapp1.1)) (== netstandard2.0) + System.Threading (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.Overlapped (4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading.Tasks (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading.Tasks.Dataflow (4.10) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks (4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks.Dataflow (4.10) - restriction: || (&& (== net461) (< net46) (>= net472)) (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Threading.Tasks.Extensions (4.5.3) System.Runtime.CompilerServices.Unsafe (>= 4.5.2) - restriction: || (== net461) (== netcoreapp2.0) (&& (== netcoreapp2.1) (>= net45)) (&& (== netcoreapp2.1) (< netstandard1.0)) (&& (== netcoreapp2.1) (< netstandard2.0)) (&& (== netcoreapp2.1) (>= wp8)) (== netstandard2.0) System.Threading.Thread (4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) @@ -1023,34 +1045,34 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.ValueTuple (4.5) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= uap10.0)) (&& (== netcoreapp2.1) (>= net46)) (&& (== netcoreapp2.1) (>= uap10.0)) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= uap10.0)) System.Xml.ReaderWriter (4.3.1) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Xml.XDocument (4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Xml.XmlDocument (4.3) System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) (== netcoreapp2.1) (== netstandard2.0)