From 4e9a935d013760203b84fb79e50665f9cfe81d7a Mon Sep 17 00:00:00 2001 From: Kevin Schneider Date: Thu, 24 Oct 2019 00:24:12 +0200 Subject: [PATCH 1/8] Refactor Sailent - increase speed by bootstrapping every binsize only once - drop optional verbosity to a bearable level --- ...rprisalAnalysisEmpiricalPermutationTest.fs | 99 ++++++++++++------- 1 file changed, 63 insertions(+), 36 deletions(-) diff --git a/src/BioFSharp.Stats/SurprisalAnalysisEmpiricalPermutationTest.fs b/src/BioFSharp.Stats/SurprisalAnalysisEmpiricalPermutationTest.fs index 4949f020..371509b2 100644 --- a/src/BioFSharp.Stats/SurprisalAnalysisEmpiricalPermutationTest.fs +++ b/src/BioFSharp.Stats/SurprisalAnalysisEmpiricalPermutationTest.fs @@ -32,7 +32,7 @@ module Sailent = |> List.distinct //create distribution of iter weight sums for a bin of size binSize - let private bootstrapBin (verbose:bool) (binSize: int) (weightArray:float[]) (iter: int) = + let private bootstrapBin (binSize: int) (weightArray:float[]) (iter: int) = let steps = iter / 10 let startTime = System.DateTime.Now @@ -43,8 +43,6 @@ module Sailent = sum let rec loop currentIter resultList = - if verbose && (currentIter % steps = 0) then - printfn "[%i/%i] iterations @%i min" currentIter iter (System.DateTime.Now.Subtract(startTime).Minutes) if currentIter < iter then let tmp = sumRandomEntriesBy 0 0. loop (currentIter+1) (tmp::resultList) @@ -125,7 +123,7 @@ module Sailent = ///Absolute descriptor: test distributions and tests are performed on the positive values of the dataset only let compute (verbose:bool) (bootstrapIterations:int) (data: OntologyItem array) = - printfn "starting SAILENT characterization" + if verbose then printfn "starting SAILENT characterization" // get distinct ontology terms in the dataset let distinctGroups = getDistinctGroups data @@ -152,42 +150,72 @@ module Sailent = termName,tmp.Length,tmp |> List.sumBy (fun x -> x.Item)) |> List.filter (fun (termName,binSize,weightSum) -> binSize>0) - let absoluteBinsizes = [for (_,binSize,_) in absoluteTestTargets do yield binSize] - let positiveBinsizes = [for (_,binSize,_) in positiveTestTargets do yield binSize] - let negativeBinsizes = [for (_,binSize,_) in negativeTestTargets do yield binSize] + let absoluteBinsizes = absoluteTestTargets |> List.map (fun (_,binSize,_) -> binSize) |> List.distinct + let positiveBinsizes = positiveTestTargets |> List.map (fun (_,binSize,_) -> binSize) |> List.distinct + let negativeBinsizes = negativeTestTargets |> List.map (fun (_,binSize,_) -> binSize) |> List.distinct - let weightArr = [|for ann in data do yield ann.Item|] - let posWeightArr = [|for ann in data do yield ann.Item|] |> Array.filter(fun x -> x>0.) - let negWeightArr = [|for ann in data do yield ann.Item|] |> Array.filter(fun x -> x<0.) + let weightArr = data |> Array.map (fun ann -> ann.Item) + let absWeightArr = weightArr |> Array.map abs + let posWeightArr = weightArr |> Array.filter(fun x -> x>0.) + let negWeightArr = weightArr |> Array.filter(fun x -> x<0.) // create bootstrapped test distributions for all test targets - printfn "bootstrapping absolute test distributions..." + if verbose then printfn "bootstrapping absolute test distributions for %i bins" absoluteBinsizes.Length let absoluteTestDistributions = - [| - for binSize in absoluteBinsizes do - let tmp = bootstrapBin verbose binSize weightArr bootstrapIterations - yield (binSize,Distributions.Frequency.create (Distributions.Bandwidth.nrd0 tmp) tmp) - |] - |> Map.ofArray - - printfn "bootstrapping positive test distributions..." + + let startTime = System.DateTime.Now + + absoluteBinsizes + |> List.mapi + (fun i binSize -> + + if verbose && (i % (absoluteBinsizes.Length / 10) = 0 ) then + let elapsed = System.DateTime.Now.Subtract(startTime) + printfn "[%i/%i] bins @ %imin %is" i absoluteBinsizes.Length elapsed.Minutes elapsed.Seconds + + let tmp = bootstrapBin binSize absWeightArr bootstrapIterations + (binSize,Distributions.Frequency.create (Distributions.Bandwidth.nrd0 tmp) tmp) + ) + |> Map.ofList + + if verbose then printfn "bootstrapping positive test distributions for %i bins" positiveBinsizes.Length let positiveTestDistributions = - [| - for binSize in positiveBinsizes do - let tmp = bootstrapBin verbose binSize posWeightArr bootstrapIterations - yield (binSize,Distributions.Frequency.create (Distributions.Bandwidth.nrd0 tmp) tmp) - |] - |> Map.ofArray - - printfn "bootstrapping negative test distributions..." + + let startTime = System.DateTime.Now + + positiveBinsizes + |> List.mapi + (fun i binSize -> + + if verbose && (i % (positiveBinsizes.Length / 10) = 0 ) then + let elapsed = System.DateTime.Now.Subtract(startTime) + printfn "[%i/%i] bins @ %imin %is" i positiveBinsizes.Length elapsed.Minutes elapsed.Seconds + + let tmp = bootstrapBin binSize posWeightArr bootstrapIterations + (binSize,Distributions.Frequency.create (Distributions.Bandwidth.nrd0 tmp) tmp) + ) + |> Map.ofList + + if verbose then printfn "bootstrapping negative test distributions for %i bins" negativeBinsizes.Length let negativeTestDistributions = - [| - for binSize in negativeBinsizes do - let tmp = bootstrapBin verbose binSize negWeightArr bootstrapIterations - yield (binSize,Distributions.Frequency.create (Distributions.Bandwidth.nrd0 tmp) tmp) - |] - |> Map.ofArray + + let startTime = System.DateTime.Now + + negativeBinsizes + |> List.mapi + (fun i binSize -> + + if verbose && (i % (negativeBinsizes.Length / 10) = 0 ) then + let elapsed = System.DateTime.Now.Subtract(startTime) + printfn "[%i/%i] bins @ %imin %is" i negativeBinsizes.Length elapsed.Minutes elapsed.Seconds + + let tmp = bootstrapBin binSize negWeightArr bootstrapIterations + (binSize,Distributions.Frequency.create (Distributions.Bandwidth.nrd0 tmp) tmp) + ) + |> Map.ofList + + if verbose then printfn "assigning empirical pValues for all bins..." //assign Pvalues for all test targets let absResults = assignPValues absoluteTestDistributions absoluteTestTargets @@ -198,7 +226,7 @@ module Sailent = ///Compute SAILENT (Surprisal AnalysIs EmpiricaL pErmutatioN Test) for the given Surprisal Analysis result. This empirical test was - ///is designed for the biological application of Surprisal Analysis to test the weight distribution of a given bin of annotations is significantly different than a random distribution + ///designed for the biological application of Surprisal Analysis to test the weight distribution of a given bin of annotations is significantly different than a random distribution ///of the same size given the whole dataset. /// ///Input: @@ -226,7 +254,7 @@ module Sailent = |> prepareDataset ontologyMap identifiers |> Array.mapi (fun i p -> - printfn "Sailent of constraint %i" i + if verbose then printfn "Sailent of constraint %i" i compute verbose bootstrapIterations p ) @@ -240,7 +268,6 @@ module Sailent = |> Array.mapi (fun i p -> async { - do printfn "Sailent of constraint %i" i return compute verbose bootstrapIterations p } ) From 56034758c4e437a515be43580e899bffc09e94d5 Mon Sep 17 00:00:00 2001 From: kMutagene Date: Thu, 24 Oct 2019 09:22:06 +0200 Subject: [PATCH 2/8] Bump version to 1.0.01 --- RELEASE_NOTES.md | 4 ++++ docsrc/content/release-notes.md | 4 ++++ src/BioFSharp.BioContainers/AssemblyInfo.fs | 8 ++++---- src/BioFSharp.BioDB/AssemblyInfo.fs | 8 ++++---- src/BioFSharp.IO/AssemblyInfo.fs | 8 ++++---- src/BioFSharp.ImgP/AssemblyInfo.fs | 8 ++++---- src/BioFSharp.ML/AssemblyInfo.fs | 8 ++++---- src/BioFSharp.Parallel/AssemblyInfo.fs | 8 ++++---- src/BioFSharp.Stats/AssemblyInfo.fs | 8 ++++---- src/BioFSharp.Vis/AssemblyInfo.fs | 8 ++++---- src/BioFSharp/AssemblyInfo.fs | 8 ++++---- 11 files changed, 44 insertions(+), 36 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index b5fb19ee..94807876 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,7 @@ +#### 1.0.01 - Thursday, October 24, 2019 + * **BioFSharp.Stats:** + * Major speed improvements for Sailent + #### 1.0.0 - Wednesday, October 23, 2019 Renaming of BioFSharp.Biotools makes this a major version increase, as it is not backwards compatible. Several bugfixes and additions to multiple sub projects: diff --git a/docsrc/content/release-notes.md b/docsrc/content/release-notes.md index b5fb19ee..94807876 100644 --- a/docsrc/content/release-notes.md +++ b/docsrc/content/release-notes.md @@ -1,3 +1,7 @@ +#### 1.0.01 - Thursday, October 24, 2019 + * **BioFSharp.Stats:** + * Major speed improvements for Sailent + #### 1.0.0 - Wednesday, October 23, 2019 Renaming of BioFSharp.Biotools makes this a major version increase, as it is not backwards compatible. Several bugfixes and additions to multiple sub projects: diff --git a/src/BioFSharp.BioContainers/AssemblyInfo.fs b/src/BioFSharp.BioContainers/AssemblyInfo.fs index 9fc0e358..dbcef396 100644 --- a/src/BioFSharp.BioContainers/AssemblyInfo.fs +++ b/src/BioFSharp.BioContainers/AssemblyInfo.fs @@ -5,8 +5,8 @@ open System.Reflection [] [] [")>] -[] -[] +[] +[] [] do () @@ -14,6 +14,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "BioFSharp.BioContainers" let [] AssemblyProduct = "BioFSharp" let [] AssemblyDescription = "An open source bioinformatics toolbox written in F#. " - let [] AssemblyVersion = "1.0.0" - let [] AssemblyFileVersion = "1.0.0" + let [] AssemblyVersion = "1.0.01" + let [] AssemblyFileVersion = "1.0.01" let [] AssemblyConfiguration = "Release" diff --git a/src/BioFSharp.BioDB/AssemblyInfo.fs b/src/BioFSharp.BioDB/AssemblyInfo.fs index 4d641a61..4f585a73 100644 --- a/src/BioFSharp.BioDB/AssemblyInfo.fs +++ b/src/BioFSharp.BioDB/AssemblyInfo.fs @@ -5,8 +5,8 @@ open System.Reflection [] [] [")>] -[] -[] +[] +[] [] do () @@ -14,6 +14,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "BioFSharp.BioDB" let [] AssemblyProduct = "BioFSharp" let [] AssemblyDescription = "An open source bioinformatics toolbox written in F#. " - let [] AssemblyVersion = "1.0.0" - let [] AssemblyFileVersion = "1.0.0" + let [] AssemblyVersion = "1.0.01" + let [] AssemblyFileVersion = "1.0.01" let [] AssemblyConfiguration = "Release" diff --git a/src/BioFSharp.IO/AssemblyInfo.fs b/src/BioFSharp.IO/AssemblyInfo.fs index 11404e5d..7cea4abe 100644 --- a/src/BioFSharp.IO/AssemblyInfo.fs +++ b/src/BioFSharp.IO/AssemblyInfo.fs @@ -5,8 +5,8 @@ open System.Reflection [] [] [")>] -[] -[] +[] +[] [] do () @@ -14,6 +14,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "BioFSharp.IO" let [] AssemblyProduct = "BioFSharp" let [] AssemblyDescription = "An open source bioinformatics toolbox written in F#. " - let [] AssemblyVersion = "1.0.0" - let [] AssemblyFileVersion = "1.0.0" + let [] AssemblyVersion = "1.0.01" + let [] AssemblyFileVersion = "1.0.01" let [] AssemblyConfiguration = "Release" diff --git a/src/BioFSharp.ImgP/AssemblyInfo.fs b/src/BioFSharp.ImgP/AssemblyInfo.fs index 6d58d95a..e744dc8c 100644 --- a/src/BioFSharp.ImgP/AssemblyInfo.fs +++ b/src/BioFSharp.ImgP/AssemblyInfo.fs @@ -5,8 +5,8 @@ open System.Reflection [] [] [")>] -[] -[] +[] +[] [] do () @@ -14,6 +14,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "BioFSharp.ImgP" let [] AssemblyProduct = "BioFSharp" let [] AssemblyDescription = "An open source bioinformatics toolbox written in F#. " - let [] AssemblyVersion = "1.0.0" - let [] AssemblyFileVersion = "1.0.0" + let [] AssemblyVersion = "1.0.01" + let [] AssemblyFileVersion = "1.0.01" let [] AssemblyConfiguration = "Release" diff --git a/src/BioFSharp.ML/AssemblyInfo.fs b/src/BioFSharp.ML/AssemblyInfo.fs index 28b11792..c83739d6 100644 --- a/src/BioFSharp.ML/AssemblyInfo.fs +++ b/src/BioFSharp.ML/AssemblyInfo.fs @@ -5,8 +5,8 @@ open System.Reflection [] [] [")>] -[] -[] +[] +[] [] do () @@ -14,6 +14,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "BioFSharp.ML" let [] AssemblyProduct = "BioFSharp" let [] AssemblyDescription = "An open source bioinformatics toolbox written in F#. " - let [] AssemblyVersion = "1.0.0" - let [] AssemblyFileVersion = "1.0.0" + let [] AssemblyVersion = "1.0.01" + let [] AssemblyFileVersion = "1.0.01" let [] AssemblyConfiguration = "Release" diff --git a/src/BioFSharp.Parallel/AssemblyInfo.fs b/src/BioFSharp.Parallel/AssemblyInfo.fs index 021f9301..55460465 100644 --- a/src/BioFSharp.Parallel/AssemblyInfo.fs +++ b/src/BioFSharp.Parallel/AssemblyInfo.fs @@ -5,8 +5,8 @@ open System.Reflection [] [] [")>] -[] -[] +[] +[] [] do () @@ -14,6 +14,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "BioFSharp.Parallel" let [] AssemblyProduct = "BioFSharp" let [] AssemblyDescription = "An open source bioinformatics toolbox written in F#. " - let [] AssemblyVersion = "1.0.0" - let [] AssemblyFileVersion = "1.0.0" + let [] AssemblyVersion = "1.0.01" + let [] AssemblyFileVersion = "1.0.01" let [] AssemblyConfiguration = "Release" diff --git a/src/BioFSharp.Stats/AssemblyInfo.fs b/src/BioFSharp.Stats/AssemblyInfo.fs index afb5531f..4100cb34 100644 --- a/src/BioFSharp.Stats/AssemblyInfo.fs +++ b/src/BioFSharp.Stats/AssemblyInfo.fs @@ -5,8 +5,8 @@ open System.Reflection [] [] [")>] -[] -[] +[] +[] [] do () @@ -14,6 +14,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "BioFSharp.Stats" let [] AssemblyProduct = "BioFSharp" let [] AssemblyDescription = "An open source bioinformatics toolbox written in F#. " - let [] AssemblyVersion = "1.0.0" - let [] AssemblyFileVersion = "1.0.0" + let [] AssemblyVersion = "1.0.01" + let [] AssemblyFileVersion = "1.0.01" let [] AssemblyConfiguration = "Release" diff --git a/src/BioFSharp.Vis/AssemblyInfo.fs b/src/BioFSharp.Vis/AssemblyInfo.fs index 738386f2..04ea4118 100644 --- a/src/BioFSharp.Vis/AssemblyInfo.fs +++ b/src/BioFSharp.Vis/AssemblyInfo.fs @@ -5,8 +5,8 @@ open System.Reflection [] [] [")>] -[] -[] +[] +[] [] do () @@ -14,6 +14,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "BioFSharp.Vis" let [] AssemblyProduct = "BioFSharp" let [] AssemblyDescription = "An open source bioinformatics toolbox written in F#. " - let [] AssemblyVersion = "1.0.0" - let [] AssemblyFileVersion = "1.0.0" + let [] AssemblyVersion = "1.0.01" + let [] AssemblyFileVersion = "1.0.01" let [] AssemblyConfiguration = "Release" diff --git a/src/BioFSharp/AssemblyInfo.fs b/src/BioFSharp/AssemblyInfo.fs index 16c350d1..88f44fa5 100644 --- a/src/BioFSharp/AssemblyInfo.fs +++ b/src/BioFSharp/AssemblyInfo.fs @@ -5,8 +5,8 @@ open System.Reflection [] [] [")>] -[] -[] +[] +[] [] do () @@ -14,6 +14,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "BioFSharp" let [] AssemblyProduct = "BioFSharp" let [] AssemblyDescription = "An open source bioinformatics toolbox written in F#. " - let [] AssemblyVersion = "1.0.0" - let [] AssemblyFileVersion = "1.0.0" + let [] AssemblyVersion = "1.0.01" + let [] AssemblyFileVersion = "1.0.01" let [] AssemblyConfiguration = "Release" From e3aad7ad916162857cbd78359e423a7a869294bd Mon Sep 17 00:00:00 2001 From: kMutagene Date: Wed, 4 Dec 2019 09:21:47 +0100 Subject: [PATCH 3/8] Set up BioContainer Docs --- BioFSharp.sln | 1 + docsrc/content/BioContainers.fsx | 184 ++++++++++++++++++++ docsrc/content/index.fsx | 10 +- docsrc/files/img/BioContainers_Overview.png | Bin 0 -> 46570 bytes docsrc/tools/templates/template.cshtml | 4 + 5 files changed, 198 insertions(+), 1 deletion(-) create mode 100644 docsrc/content/BioContainers.fsx create mode 100644 docsrc/files/img/BioContainers_Overview.png diff --git a/BioFSharp.sln b/BioFSharp.sln index 15cc8614..702bd136 100644 --- a/BioFSharp.sln +++ b/BioFSharp.sln @@ -30,6 +30,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "content", "content", "{8E6D docsrc\content\Alignment.fsx = docsrc\content\Alignment.fsx docsrc\content\AminoProperties.fsx = docsrc\content\AminoProperties.fsx docsrc\content\BioCollections.fsx = docsrc\content\BioCollections.fsx + docsrc\content\BioContainers.fsx = docsrc\content\BioContainers.fsx docsrc\content\BioDB.fsx = docsrc\content\BioDB.fsx docsrc\content\BioID.fsx = docsrc\content\BioID.fsx docsrc\content\BioItem.fsx = docsrc\content\BioItem.fsx diff --git a/docsrc/content/BioContainers.fsx b/docsrc/content/BioContainers.fsx new file mode 100644 index 00000000..29844d94 --- /dev/null +++ b/docsrc/content/BioContainers.fsx @@ -0,0 +1,184 @@ +(*** hide ***) +#I @"../../bin/BioFSharp/net47/" +#I @"../../bin/BioFSharp.BioDB/net45/" +#I @"../../bin/BioFSharp.ImgP/net47" +#I @"../../bin/BioFSharp.IO/net47/" +#I @"../../bin/BioFSharp.Parallel/net47/" +#I @"../../bin/BioFSharp.Stats/net47/" +#I @"../../bin/BioFSharp.Vis/net47/" +#r @"../../lib/Formatting/FSharp.Plotly.dll" +#I @"../../bin/BioFSharp.BioContainers/net47/" +#r @"C:\Users\kevin\source\repos\CSBiology\BioFSharp\packages\Docker.DotNet\lib\netstandard2.0\Docker.DotNet.dll" +#r "BioFSharp.dll" +#r "BioFSharp.BioContainers.dll" + +(** + +BioFSharp.BioContainers +======================= + +BioFSharp.BioContainers is all about connecting BioFSharp and F# itself with the Bioinformatics community and integrating +common bioinformatic workflows.There are many established tools and software suites in bioinformatics, and most of the time +there is no point in rewriting them for a specific programming language. Containerized applications make it possible to use +all these tools while being OS and programming language agnostic - meaning you can use containerized linux tools in your +windows based pipeline, python applications in containers followed by a containerized C++ application and so on. Take a look +at this graphic to get an overview of how BioFSharp.BioContainers works in principle: + +![BioContainers_Overview](img/BioContainers_Overview.png) + +BioFSharp.BioContainers gives you the possibility to leverage containerized applications without leaving you F# environment. +We build on the fondation of [Docker.DotNet][dockerdotnet] to programmatically access the the REST API on top of the docker daemon +**(1 + 2)**. The daemon then does its thing, executing the commands given, for example creating containers, executing computations +in a container, etc **(3)**. We provide special functions to use with [biocontainers][biocontainers], which is a standardized way to create +containerized bioinformatic software **(4)**. The results are then returned via the daemon and REST API back to you F# interactive **(5)** + +[biocontainers]: https://biocontainers-edu.readthedocs.io/en/latest/what_is_biocontainers.html +[dockerdotnet]: https://github.com/microsoft/Docker.DotNet + +The project is in its early stages and many features provided by the REST API are not fully implemented yet, so if you would like +to help out, this is a great place to do so! + +Prerequisites +------------- + +**Windows** + + - Install [Docker Desktop for windows][docker-win] + +[docker-win]: https://docs.docker.com/docker-for-windows/install/ + +**Linux** + + - Not tested yet, but If there is a way to use a named pipe as in windows, everything should work as it does on windows. + +General Usage +------------- + +lets say we have Docker for Windows set up and pulled an ubuntu image (docker pull ubuntu). To connect with the Rest API, first use the +`Docker.connect` function to initialize a Docker Client. + +*) + +(*** do-not-eval ***) +open BioFSharp.BioContainers + +///npipe://./pipe/docker_engine is the named pipe for the docker engine under windows. +let client = Docker.connect "npipe://./pipe/docker_engine" + +(** +Some vanilla docker commands are already implemented. here is an example of listing information about all images from F# interactive +(equivalent to `docker images ls -a` in docker cli) +*) + +(*** do-not-eval ***) + +client +|> Docker.Image.listImages +|> fun images -> + printfn "Repository/Tags\tImageId\tCreated\t Size" + images + |> Seq.iter (fun img -> printfn "%A\t%s\t%A\t %A" img.RepoTags img.ID img.Created img.Size) + +(** +Output: + +``` + Repository/Tags ImageId Created Size + seq ["ubuntu:latest"] sha256:cf0f3ca922e08045795f67138b394c7287fbc0f4842ee39244a1a1aaca8c5e1c 10/18/2019 6:48:51 PM 64192156L + +``` + +Creating containers and executing commands in them +-------------------------------------------------- + +To create a container from an existing image, initialite a `BioContainer.BcContext`. That way, a new +container will not only be spawned, but kept running to receive your commands. + +*) +(***do-not-eval***) + +///Create a representation of your image on the F# side +let ubuntuImage = Docker.DockerId.ImageId "ubuntu:latest" + +///Create a container from the image and keep it running (the container context for all future commands) +let bcContext = + BioContainer.initBcContextAsync client ubuntuImage + |> Async.RunSynchronously + + +(** +To run a command in the container, use either `BioContainer.execAsync` to run the command, only printing +stdout/stderr to the F# interactive, or `BioCOntainer.execReturnAsync` to get stdout/stderr as a string that +you can bind to a name +*) + +(***do-not-eval***) + +//just run the command and print the results +BioContainer.execAsync bcContext ["echo";"hello world"] +|> Async.RunSynchronously + +///bind the results of the command to a value +let returnValue = + BioContainer.execReturnAsync bcContext ["echo";"hello world"] + |> Async.RunSynchronously + +(** +Don't forget, the container will be kept running, so dispose it if you do not need it anymore to +prevent it from eating up ressources +*) + +(***do-not-eval***) +bcContext +|> BioContainer.disposeAsync +|> Async.RunSynchronously + + +(** + + +Using actual biocontainers +-------------------------- + +To leverage the advantages of F#, namingly its type safety, passing commands as strings is not enough. +The tools in BioContainers come with extensive documentation of input commands and allowed/parsed types. +We here propose a type safe modelling of the commands, with a little bit of overhead to ensure correct +paths (going from windows to linux paths in the containers). We already provide API wrappers for some tools, +such as BLAST, TMHMM, or intaRNA. If you want to create your own, please refer to the [design guide](). + +Here is a short example for BLAST (indepth information about this the type modelling of this tool can be found [here](): + +First you have to either pull the BLAST BioContainer image either via docker cli or by building them from the docker file +A way to do this from F# is in the making. + +The protein fasta used here can be found [here]() +*) + +(***do-not-eval***) +open BioFSharp.BioContainers.Blast + +let ImageBlast = Docker.DockerId.ImageId "blast" + +///this time, we set the container up using a mount, making sure that it can access data from the file system we want to use. +let blastContext = + BioContainer.initBcContextWithMountAsync + client + ImageBlast + @"C:\Users\Kevin\source\repos\CsbScaffold\Docker\data" + |> Async.RunSynchronously + +///parameters for search DB creation +let makeDBParams = + [ + MakeDbParams.DbType Protein + MakeDbParams.Input @"C:\Users\Kevin\source\repos\CsbScaffold\Docker\data\Chlamy_Cp.fastA" + MakeDbParams.Output@"C:\Users\Kevin\source\repos\CsbScaffold\Docker\data\Chlamy_Cp.fastA" + ] + +///parameters for blastP +let blastPParams = [ + BlastParams.SearchDB @"C:\Users\Kevin\source\repos\CsbScaffold\Docker\data\Chlamy_Cp.fastA" + BlastParams.Query @"C:\Users\Kevin\source\repos\CsbScaffold\Docker\data\testQuery.fastA" + BlastParams.Output @"C:\Users\Kevin\source\repos\CsbScaffold\Docker\data\Output.txt" + BlastParams.OutputType OutputType.TabularWithComments +] diff --git a/docsrc/content/index.fsx b/docsrc/content/index.fsx index 9426970f..b4fa980b 100644 --- a/docsrc/content/index.fsx +++ b/docsrc/content/index.fsx @@ -43,7 +43,7 @@ The core datamodel implements in ascending hierarchical order: Installation ------------ -BioFSharp is currently on the way to its 1.0.0 release. When this process is done, we will provide a nuget package at [nuget.org](https://www.nuget.org/). However, currently the way to get BioFSharp running on +BioFSharp is currently on the way to its 1.x release. When this process is done, we will provide a nuget package at [nuget.org](https://www.nuget.org/). However, currently the way to get BioFSharp running on your machine is to either clone the repository and build the binaries yourself or download the prerelease packages from our [nuget branch](https://github.com/CSBiology/BioFSharp/tree/nuget). **Using prerelease packages from the nuget branch:** @@ -56,27 +56,35 @@ you can then access the individual packages: `nuget BioFSharp` +`nuget BioFSharp.BioContainers` + `nuget BioFSharp.IO` `nuget BioFSharp.Stats` +`nuget BioFSharp.ML` + `nuget BioFSharp.BioDB` `nuget BioFSharp.Vis` + **To build the binaries yourself:** **Windows**: - Install [.Net Core SDK](https://www.microsoft.com/net/download) - Install the dotnet tool fake cli by `dotnet tool install fake-cli -g` for global installation or `dotnet tool install fake-cli --tool-path yourtoolpath` +- Install the dotnet tool paket by `dotnet tool install paket -g` for global installation or `dotnet tool install paket --tool-path yourtoolpath` - go to the project folder - use the console command `fake build` **Linux(Ubuntu, using Mono)**: - Install [.Net Core SDK](https://www.microsoft.com/net/download/linux-package-manager/ubuntu14-04/sdk-current) +- Install the dotnet tool fake cli by `dotnet tool install fake-cli -g` for global installation or `dotnet tool install fake-cli --tool-path yourtoolpath` +- Install the dotnet tool paket by `dotnet tool install paket -g` for global installation or `dotnet tool install paket --tool-path yourtoolpath` - go to the project folder - use the console command `dotnet fake build --target Linux` diff --git a/docsrc/files/img/BioContainers_Overview.png b/docsrc/files/img/BioContainers_Overview.png new file mode 100644 index 0000000000000000000000000000000000000000..21e14a61bc059799bfc678313c531d02b2b7587e GIT binary patch literal 46570 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 X$qCkQB&oUte7$_8_7wia
  • BioCollections
  • Peptide Properties
  • + +
  • Introduction
  • +
  • Container API Design Guide
  • +
  • Blast Container
  • Alignment
  • Clustal Omega
  • From ef40aae66d1085682e276f0bd8a9d8c7210391d9 Mon Sep 17 00:00:00 2001 From: kMutagene Date: Wed, 15 Jan 2020 12:09:24 +0100 Subject: [PATCH 4/8] Migrate FaTool Type Provider base url to new server --- src/BioFSharp.BioDB/FaToolDb.fs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/BioFSharp.BioDB/FaToolDb.fs b/src/BioFSharp.BioDB/FaToolDb.fs index 3ba78741..93a88709 100644 --- a/src/BioFSharp.BioDB/FaToolDb.fs +++ b/src/BioFSharp.BioDB/FaToolDb.fs @@ -6,7 +6,10 @@ open System.Data.Services.Client //all credit for the database goes to https://github.com/goedels and https://github.com/luede module FaToolDb = - let[]url = "http://iomiqsweb1.bio.uni-kl.de/Services/FaToolDbDataService.svc" + //let[]url = "http://iomiqsweb1.bio.uni-kl.de/Services/FaToolDbDataService.svc" + + //server adress the service migrated to + let []url = "http://hyperweb.bio.uni-kl.de:8015/Services/FaToolDbDataService.svc" type FaToolData = ODataService From 887e504235a2279291a15512a800c4c408d59dad Mon Sep 17 00:00:00 2001 From: Kevin Schneider Date: Wed, 19 Feb 2020 16:04:40 +0100 Subject: [PATCH 5/8] Migrate to new dotnet build chain (#78) Additional build configuration: Dotnet, only build the netstandard2.0 targeting projects. Additional CI target for Dotnet configuration on a Linux image on appveyor Projects now target frameworks depending on OS We now use local tools via dotnet tool manifest. No more mandatory global tools. Only Dotnet Core SDK needs to be installed. Move FAKE dependencies directly into the build script und remove dotnet-clitool dependency completely. Standard build command now is again ./build.cmd -t ... contrary to the name of the branch this was not simple and i now need a break. Squashed Commits: * Migrate to simple build * Add saveHtmlAs function for chord plots Chord * Try fix for CI * Update dependencies for BioDB (SwaggerProvider now supprts netcore, but EBI still limits the project to .NET Framework.) * travis: Move to dotnet core 3 compatible linux dist * Fix travis second attempt * Try Linux on appveyor * Try CI Fix Part 3 :( * Using sudo will sure fix CI permission problem * Try permission set on init for appveyor linux build * Try fix CI, the 4th * CI: seems like progress to me * CI: add ending slashes in build.fsx references (https://github.com/fsharp/FAKE/issues/1780) * Try CI fix #5 * Try dotnet build for linux CI? * Revamp build configurations, add conditional target frameworks to projects * Remove restore from fake chain as it gets called in the cmd/sh scripts * typofix * Remove test project from dotnet build configuration * Correct path for copying binaries built with dotnetcore configuration * Fix excluded paths for dotnet configuration again * Fix bin path for dotnet configuration again * Mono seems to need dotnet restore * MSBuild needs dotnet restore * Mono build target: only restore projects in this configuration * fix mono projects to restore * Change conditional target frameworks to be dependent on build configuration * Add test project to mono restore target * Try fic CI another time * Add test execution to mono build * Fix Mono buildChain for tests --- .config/dotnet-tools.json | 18 + .gitignore | 1 + .paket/Paket.Restore.targets | 119 +- .travis.yml | 11 +- BioFSharp.sln | 17 +- appveyor.yml | 27 +- build.cmd | 8 +- build.fsx | 137 ++- build.fsx.lock | 770 +++++++++++++ build.sh | 9 +- paket.dependencies | 82 +- paket.lock | 1012 ++++++----------- paket.references | 2 - .../BioFSharp.BioContainers.fsproj | 14 +- src/BioFSharp.BioDB/BioFSharp.BioDB.fsproj | 4 +- src/BioFSharp.BioDB/EbiAPI.fs | 398 +++---- src/BioFSharp.BioDB/FaToolDb.fs | 1 - src/BioFSharp.BioDB/paket.references | 3 +- src/BioFSharp.IO/BioFSharp.IO.fsproj | 12 +- src/BioFSharp.ImgP/BioFSharp.ImgP.fsproj | 2 +- src/BioFSharp.ML/BioFSharp.ML.fsproj | 2 +- .../BioFSharp.Parallel.fsproj | 2 +- src/BioFSharp.Stats/BioFSharp.Stats.fsproj | 12 +- src/BioFSharp.Vis/Chord.fs | 8 +- src/BioFSharp/BioFSharp.fsproj | 12 +- tests/BioFSharp.Tests/BioFSharp.Tests.fsproj | 2 +- tests/BioFSharp.Tests/paket.references | 3 +- 27 files changed, 1671 insertions(+), 1017 deletions(-) create mode 100644 .config/dotnet-tools.json create mode 100644 build.fsx.lock delete mode 100644 paket.references diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json new file mode 100644 index 00000000..8ed3671c --- /dev/null +++ b/.config/dotnet-tools.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "isRoot": true, + "tools": { + "fake-cli": { + "version": "5.19.1", + "commands": [ + "fake" + ] + }, + "paket": { + "version": "5.242.1", + "commands": [ + "paket" + ] + } + } +} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 7cdfff0d..c900db57 100644 --- a/.gitignore +++ b/.gitignore @@ -185,3 +185,4 @@ paket-files docsrc/tools/FSharp.Formatting.svclog docs /temp +/pkg diff --git a/.paket/Paket.Restore.targets b/.paket/Paket.Restore.targets index aed3c3fd..8d37e28b 100644 --- a/.paket/Paket.Restore.targets +++ b/.paket/Paket.Restore.targets @@ -7,7 +7,7 @@ $(MSBuildAllProjects);$(MSBuildThisFileFullPath) $(MSBuildVersion) - 15.0.0 + 15.0.0 false true @@ -20,7 +20,7 @@ proj assembly native - /Library/Frameworks/Mono.framework/Commands/mono + /Library/Frameworks/Mono.framework/Commands/mono mono @@ -28,52 +28,85 @@ $(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)" + "$(PaketBootStrapperExePath)" $(MonoPath) --runtime=v4.0.30319 "$(PaketBootStrapperExePath)" - + - + true true True + + False + $(BaseIntermediateOutputPath.TrimEnd('\').TrimEnd('\/')) + + + + + + + $(PaketRootPath)paket + $(PaketToolsPath)paket + + + + + + $(PaketRootPath)paket.exe + $(PaketToolsPath)paket.exe + + + + + + <_DotnetToolsJson Condition="Exists('$(PaketRootPath)/.config/dotnet-tools.json')">$([System.IO.File]::ReadAllText("$(PaketRootPath)/.config/dotnet-tools.json")) + <_ConfigContainsPaket Condition=" '$(_DotnetToolsJson)' != ''">$(_DotnetToolsJson.Contains('"paket"')) + <_ConfigContainsPaket Condition=" '$(_ConfigContainsPaket)' == ''">false + + + + + + + + + + + <_PaketCommand>dotnet paket + + + + + + $(PaketToolsPath)paket + $(PaketBootStrapperExeDir)paket + + + paket + + + + + <_PaketExeExtension>$([System.IO.Path]::GetExtension("$(PaketExePath)")) + <_PaketCommand Condition=" '$(_PaketCommand)' == '' AND '$(_PaketExeExtension)' == '.dll' ">dotnet "$(PaketExePath)" + <_PaketCommand Condition=" '$(_PaketCommand)' == '' AND '$(OS)' != 'Windows_NT' AND '$(_PaketExeExtension)' == '.exe' ">$(MonoPath) --runtime=v4.0.30319 "$(PaketExePath)" + <_PaketCommand Condition=" '$(_PaketCommand)' == '' ">"$(PaketExePath)" + + + + + + + + + @@ -81,7 +114,7 @@ - + @@ -103,7 +136,7 @@ - $([System.Text.RegularExpressions.Regex]::Split(`%(Identity)`, `": "`)[0].Replace(`"`, ``).Replace(` `, ``)) $([System.Text.RegularExpressions.Regex]::Split(`%(Identity)`, `": "`)[1].Replace(`"`, ``).Replace(` `, ``)) @@ -136,7 +169,7 @@ - + @@ -203,7 +236,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 +279,7 @@ - + <_NuspecFilesNewLocation Include="$(PaketIntermediateOutputPath)\$(Configuration)\*.nuspec"/> @@ -300,7 +333,7 @@ DevelopmentDependency="$(DevelopmentDependency)" BuildOutputInPackage="@(_BuildOutputInPackage)" TargetPathsToSymbols="@(_TargetPathsToSymbols)" - SymbolPackageFormat="symbols.nupkg" + SymbolPackageFormat="$(SymbolPackageFormat)" TargetFrameworks="@(_TargetFrameworks)" AssemblyName="$(AssemblyName)" PackageOutputPath="$(PackageOutputAbsolutePath)" @@ -347,7 +380,7 @@ DevelopmentDependency="$(DevelopmentDependency)" BuildOutputInPackage="@(_BuildOutputInPackage)" TargetPathsToSymbols="@(_TargetPathsToSymbols)" - SymbolPackageFormat="symbols.nupkg" + SymbolPackageFormat="$(SymbolPackageFormat)" TargetFrameworks="@(_TargetFrameworks)" AssemblyName="$(AssemblyName)" PackageOutputPath="$(PackageOutputAbsolutePath)" diff --git a/.travis.yml b/.travis.yml index fbcbab12..cef2e8f6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,17 +1,12 @@ language: csharp #sudo: required sudo: false -dist: trusty # Ubuntu 14.04 mono: latest -dotnet : 2.1.403 - -before_install: - - export PATH=$PATH:/home/travis/.dotnet/tools - - dotnet tool install paket -g - - dotnet restore build.proj +dotnet : 3.1.101 script: - - dotnet fake build --target Linux + - chmod +x ./build.sh + - ./build.sh -t Mono branches: only: diff --git a/BioFSharp.sln b/BioFSharp.sln index 702bd136..be71ff14 100644 --- a/BioFSharp.sln +++ b/BioFSharp.sln @@ -7,7 +7,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{63297B ProjectSection(SolutionItems) = preProject paket.dependencies = paket.dependencies paket.lock = paket.lock - paket.references = paket.references EndProjectSection EndProject Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "BioFSharp", "src\BioFSharp\BioFSharp.fsproj", "{DC20B62F-9F8B-4128-898D-9436B1CE8B8D}" @@ -106,65 +105,81 @@ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU + DotnetCore|Any CPU = DotnetCore|Any CPU Mono|Any CPU = Mono|Any CPU Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {DC20B62F-9F8B-4128-898D-9436B1CE8B8D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {DC20B62F-9F8B-4128-898D-9436B1CE8B8D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DC20B62F-9F8B-4128-898D-9436B1CE8B8D}.DotnetCore|Any CPU.ActiveCfg = DotnetCore|Any CPU + {DC20B62F-9F8B-4128-898D-9436B1CE8B8D}.DotnetCore|Any CPU.Build.0 = DotnetCore|Any CPU {DC20B62F-9F8B-4128-898D-9436B1CE8B8D}.Mono|Any CPU.ActiveCfg = Mono|Any CPU {DC20B62F-9F8B-4128-898D-9436B1CE8B8D}.Mono|Any CPU.Build.0 = Mono|Any CPU {DC20B62F-9F8B-4128-898D-9436B1CE8B8D}.Release|Any CPU.ActiveCfg = Release|Any CPU {DC20B62F-9F8B-4128-898D-9436B1CE8B8D}.Release|Any CPU.Build.0 = Release|Any CPU {EC120240-3BD9-4026-BA39-FEBEF5B7D41B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {EC120240-3BD9-4026-BA39-FEBEF5B7D41B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EC120240-3BD9-4026-BA39-FEBEF5B7D41B}.DotnetCore|Any CPU.ActiveCfg = DotnetCore|Any CPU {EC120240-3BD9-4026-BA39-FEBEF5B7D41B}.Mono|Any CPU.ActiveCfg = Mono|Any CPU {EC120240-3BD9-4026-BA39-FEBEF5B7D41B}.Mono|Any CPU.Build.0 = Mono|Any CPU {EC120240-3BD9-4026-BA39-FEBEF5B7D41B}.Release|Any CPU.ActiveCfg = Release|Any CPU {EC120240-3BD9-4026-BA39-FEBEF5B7D41B}.Release|Any CPU.Build.0 = Release|Any CPU {36183ED7-462B-45DF-8FD5-6BD45084985B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {36183ED7-462B-45DF-8FD5-6BD45084985B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {36183ED7-462B-45DF-8FD5-6BD45084985B}.DotnetCore|Any CPU.ActiveCfg = DotnetCore|Any CPU {36183ED7-462B-45DF-8FD5-6BD45084985B}.Mono|Any CPU.ActiveCfg = Mono|Any CPU {36183ED7-462B-45DF-8FD5-6BD45084985B}.Release|Any CPU.ActiveCfg = Release|Any CPU {36183ED7-462B-45DF-8FD5-6BD45084985B}.Release|Any CPU.Build.0 = Release|Any CPU {4EBA7C43-6726-4AFE-9EF2-3607CA038A62}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {4EBA7C43-6726-4AFE-9EF2-3607CA038A62}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4EBA7C43-6726-4AFE-9EF2-3607CA038A62}.DotnetCore|Any CPU.ActiveCfg = DotnetCore|Any CPU + {4EBA7C43-6726-4AFE-9EF2-3607CA038A62}.DotnetCore|Any CPU.Build.0 = DotnetCore|Any CPU {4EBA7C43-6726-4AFE-9EF2-3607CA038A62}.Mono|Any CPU.ActiveCfg = Mono|Any CPU {4EBA7C43-6726-4AFE-9EF2-3607CA038A62}.Mono|Any CPU.Build.0 = Mono|Any CPU {4EBA7C43-6726-4AFE-9EF2-3607CA038A62}.Release|Any CPU.ActiveCfg = Release|Any CPU {4EBA7C43-6726-4AFE-9EF2-3607CA038A62}.Release|Any CPU.Build.0 = Release|Any CPU {12A8066D-B779-425C-A2D2-491693EC6B42}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {12A8066D-B779-425C-A2D2-491693EC6B42}.Debug|Any CPU.Build.0 = Debug|Any CPU + {12A8066D-B779-425C-A2D2-491693EC6B42}.DotnetCore|Any CPU.ActiveCfg = DotnetCore|Any CPU {12A8066D-B779-425C-A2D2-491693EC6B42}.Mono|Any CPU.ActiveCfg = Mono|Any CPU {12A8066D-B779-425C-A2D2-491693EC6B42}.Mono|Any CPU.Build.0 = Mono|Any CPU {12A8066D-B779-425C-A2D2-491693EC6B42}.Release|Any CPU.ActiveCfg = Release|Any CPU {12A8066D-B779-425C-A2D2-491693EC6B42}.Release|Any CPU.Build.0 = Release|Any CPU {9562FADF-F2E9-4998-BEF7-B252C55F7A38}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {9562FADF-F2E9-4998-BEF7-B252C55F7A38}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9562FADF-F2E9-4998-BEF7-B252C55F7A38}.DotnetCore|Any CPU.ActiveCfg = DotnetCore|Any CPU + {9562FADF-F2E9-4998-BEF7-B252C55F7A38}.DotnetCore|Any CPU.Build.0 = DotnetCore|Any CPU {9562FADF-F2E9-4998-BEF7-B252C55F7A38}.Mono|Any CPU.ActiveCfg = Mono|Any CPU {9562FADF-F2E9-4998-BEF7-B252C55F7A38}.Mono|Any CPU.Build.0 = Mono|Any CPU {9562FADF-F2E9-4998-BEF7-B252C55F7A38}.Release|Any CPU.ActiveCfg = Release|Any CPU {9562FADF-F2E9-4998-BEF7-B252C55F7A38}.Release|Any CPU.Build.0 = Release|Any CPU {DBD17E56-E3A2-4A19-AEAB-0E758FEBCD84}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {DBD17E56-E3A2-4A19-AEAB-0E758FEBCD84}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DBD17E56-E3A2-4A19-AEAB-0E758FEBCD84}.DotnetCore|Any CPU.ActiveCfg = Debug|Any CPU {DBD17E56-E3A2-4A19-AEAB-0E758FEBCD84}.Mono|Any CPU.ActiveCfg = Mono|Any CPU {DBD17E56-E3A2-4A19-AEAB-0E758FEBCD84}.Mono|Any CPU.Build.0 = Mono|Any CPU {DBD17E56-E3A2-4A19-AEAB-0E758FEBCD84}.Release|Any CPU.ActiveCfg = Release|Any CPU {DBD17E56-E3A2-4A19-AEAB-0E758FEBCD84}.Release|Any CPU.Build.0 = Release|Any CPU {1EB6FB44-6B1E-4939-BF49-267D163959FF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {1EB6FB44-6B1E-4939-BF49-267D163959FF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1EB6FB44-6B1E-4939-BF49-267D163959FF}.DotnetCore|Any CPU.ActiveCfg = DotnetCore|Any CPU {1EB6FB44-6B1E-4939-BF49-267D163959FF}.Mono|Any CPU.ActiveCfg = Mono|Any CPU {1EB6FB44-6B1E-4939-BF49-267D163959FF}.Mono|Any CPU.Build.0 = Mono|Any CPU {1EB6FB44-6B1E-4939-BF49-267D163959FF}.Release|Any CPU.ActiveCfg = Release|Any CPU {1EB6FB44-6B1E-4939-BF49-267D163959FF}.Release|Any CPU.Build.0 = Release|Any CPU {B46C2CB5-8EC2-425B-9B15-D0BAEF30C08F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {B46C2CB5-8EC2-425B-9B15-D0BAEF30C08F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B46C2CB5-8EC2-425B-9B15-D0BAEF30C08F}.DotnetCore|Any CPU.ActiveCfg = DotnetCore|Any CPU + {B46C2CB5-8EC2-425B-9B15-D0BAEF30C08F}.DotnetCore|Any CPU.Build.0 = DotnetCore|Any CPU {B46C2CB5-8EC2-425B-9B15-D0BAEF30C08F}.Mono|Any CPU.ActiveCfg = Mono|Any CPU {B46C2CB5-8EC2-425B-9B15-D0BAEF30C08F}.Mono|Any CPU.Build.0 = Mono|Any CPU {B46C2CB5-8EC2-425B-9B15-D0BAEF30C08F}.Release|Any CPU.ActiveCfg = Release|Any CPU {B46C2CB5-8EC2-425B-9B15-D0BAEF30C08F}.Release|Any CPU.Build.0 = Release|Any CPU {6055D81F-D817-44B3-B82B-F35E9ACB4802}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {6055D81F-D817-44B3-B82B-F35E9ACB4802}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6055D81F-D817-44B3-B82B-F35E9ACB4802}.DotnetCore|Any CPU.ActiveCfg = DotnetCore|Any CPU + {6055D81F-D817-44B3-B82B-F35E9ACB4802}.DotnetCore|Any CPU.Build.0 = DotnetCore|Any CPU {6055D81F-D817-44B3-B82B-F35E9ACB4802}.Mono|Any CPU.ActiveCfg = Mono|Any CPU {6055D81F-D817-44B3-B82B-F35E9ACB4802}.Mono|Any CPU.Build.0 = Mono|Any CPU {6055D81F-D817-44B3-B82B-F35E9ACB4802}.Release|Any CPU.ActiveCfg = Release|Any CPU diff --git a/appveyor.yml b/appveyor.yml index ba8455bb..2b002c6e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,12 +1,29 @@ -image: Visual Studio 2019 +image: + - Ubuntu + - Visual Studio 2019 init: - git config --global core.autocrlf input - - dotnet tool install fake-cli -g - - dotnet tool install paket -g -build_script: - - cmd: build.cmd All +matrix: + fast_finish: true + +for: +- + matrix: + only: + - image: Visual Studio 2019 + + build_script: + - cmd: build.cmd +- + matrix: + only: + - image: Ubuntu + + build_script: + - chmod +x ./build.sh + - sh: ./build.sh -t Dotnet test: off version: 0.0.1.{build} diff --git a/build.cmd b/build.cmd index 8ff2f3e0..f6297e02 100644 --- a/build.cmd +++ b/build.cmd @@ -1,9 +1,7 @@ @echo off cls +dotnet tool restore +dotnet paket restore dotnet restore build.proj - -IF NOT EXIST build.fsx ( - fake run init.fsx -) -fake build %* \ No newline at end of file +dotnet fake build %* \ No newline at end of file diff --git a/build.fsx b/build.fsx index fa3faae0..30055f84 100644 --- a/build.fsx +++ b/build.fsx @@ -2,10 +2,22 @@ // FAKE build script // -------------------------------------------------------------------------------------- -#r "paket: groupref FakeBuild //" - -#load "./.fake/build.fsx/intellisense.fsx" - +#r "paket: +nuget Fake.Core.Target +nuget Fake.Core.Process +nuget Fake.Core.ReleaseNotes +nuget Fake.IO.FileSystem +nuget Fake.DotNet.Cli +nuget Fake.DotNet.MSBuild +nuget Fake.DotNet.AssemblyInfoFile +nuget Fake.DotNet.Paket +nuget Fake.DotNet.FSFormatting +nuget Fake.DotNet.Fsi +nuget Fake.DotNet.NuGet +nuget Fake.Api.Github +nuget Fake.DotNet.Testing.Expecto //" + +#load ".fake/build.fsx/intellisense.fsx" open System.IO open Fake.Core open Fake.Core.TargetOperators @@ -19,6 +31,8 @@ open Fake.Tools open Fake.Api open Fake.Tools.Git +Target.initEnvironment () + [] module TemporaryDocumentationHelpers = @@ -157,6 +171,11 @@ let gitRaw = Environment.environVarOrDefault "gitRaw" "https://raw.githubusercon let website = "/BioFSharp" +let pkgDir = "pkg" + +let monoConfiguration = DotNet.Custom "Mono" +let dotnetCoreConfiguration = DotNet.Custom "DotnetCore" +let buildConfiguration = DotNet.Custom <| Environment.environVarOrDefault "configuration" configuration // -------------------------------------------------------------------------------------- // END TODO: The rest of the file includes standard build steps // -------------------------------------------------------------------------------------- @@ -224,7 +243,7 @@ Target.create "CopyBinaries" (fun _ -> |> Seq.iter (fun (fromDir, toDir) -> Shell.copyDir toDir fromDir (fun _ -> true)) ) -Target.create "CopyBinariesLinux" (fun _ -> +Target.create "CopyBinariesMono" (fun _ -> printfn "excluding the biodb project for mono builds" printfn "paths to copy : %A" (!! "src/**/*.??proj"-- "src/**/*.shproj" -- "src/BioFSharp.BioDb.fsproj") let targets = @@ -238,12 +257,26 @@ Target.create "CopyBinariesLinux" (fun _ -> Shell.copyDir toDir fromDir (fun _ -> true)) ) +Target.create "CopyBinariesDotnet" (fun _ -> + printfn "excluding the biodb project for dotnet builds" + printfn "paths to copy : %A" (!! "src/**/*.??proj"-- "src/**/*.shproj" -- "src/BioFSharp.BioDb.fsproj" -- "src/BioFSharp.Parallel.fsproj" -- "src/BioFSharp.ImgP.fsproj" -- "src/BioFSharp.Vis.fsproj") + let targets = + !! "src/**/*.??proj" + -- "src/BioFSharp.BioDB/BioFSharp.BioDB.fsproj" + -- "src/BioFSharp.Parallel/BioFSharp.Parallel.fsproj" + -- "src/BioFSharp.ImgP/BioFSharp.ImgP.fsproj" + -- "src/BioFSharp.Vis/BioFSharp.Vis.fsproj" + -- "src/**/*.shproj" + |> Seq.map (fun f -> ((Path.getDirectory f) "bin" "DotnetCore", "bin" (Path.GetFileNameWithoutExtension f))) + for i in targets do printfn "%A" i + targets + |> Seq.iter (fun (fromDir, toDir) -> printfn "copy from %s to %s" fromDir toDir + Shell.copyDir toDir fromDir (fun _ -> true)) +) // -------------------------------------------------------------------------------------- // Clean build results -let buildConfiguration = DotNet.Custom <| Environment.environVarOrDefault "configuration" configuration - Target.create "Clean" (fun _ -> Shell.cleanDirs ["bin"; "temp"] ) @@ -260,11 +293,15 @@ Target.create "Restore" (fun _ -> |> DotNet.restore id ) +Target.create "RestoreMono" (fun _ -> + !! "src/**/*.??proj" + ++ "tests/**/*.??proj" + -- "src/BioFSharp.BioDB/BioFSharp.BioDB.fsproj" + -- "src/**/*.shproj" + |> Seq.iter (fun f -> f |> DotNet.restore id) +) + Target.create "Build" (fun _ -> - (*solutionFile - |> DotNet.build (fun p -> - { p with - Configuration = buildConfiguration })*) let setParams (defaults:MSBuildParams) = { defaults with Verbosity = Some(Quiet) @@ -279,11 +316,7 @@ Target.create "Build" (fun _ -> MSBuild.build setParams solutionFile ) -Target.create "BuildLinux" (fun _ -> - (*solutionFile - |> DotNet.build (fun p -> - { p with - Configuration = buildConfiguration })*) +Target.create "BuildMono" (fun _ -> let setParams (defaults:MSBuildParams) = { defaults with Verbosity = Some(Quiet) @@ -296,9 +329,15 @@ Target.create "BuildLinux" (fun _ -> ] } MSBuild.build setParams solutionFile -) - + ) +Target.create "BuildDotnet" (fun _ -> + solutionFile + |> DotNet.build (fun p -> + { p with + Configuration = dotnetCoreConfiguration } + ) +) // -------------------------------------------------------------------------------------- // Run the unit tests using test runner @@ -319,27 +358,45 @@ Target.create "RunTests" (fun _ -> ) ) +Target.create "RunTestsMono" (fun _ -> + let assemblies = !! testAssemblies + + assemblies + |> Seq.iter (fun f -> + Command.RawCommand ( + f, + Arguments.OfArgs [] + ) + |> CreateProcess.fromCommand + |> CreateProcess.withFramework + |> CreateProcess.ensureExitCode + |> Proc.run + |> ignore + ) +) + // -------------------------------------------------------------------------------------- // Build a NuGet package + Target.create "NuGet" (fun _ -> Paket.pack(fun p -> - { p with - ToolPath="paket" - OutputPath = "bin" + BuildPlatform = "net45;net47;netstandard2.0" + ToolType = ToolType.CreateLocalTool() + OutputPath = pkgDir Version = release.NugetVersion - ReleaseNotes = String.toLines release.Notes}) -) + ReleaseNotes = release.Notes |> String.toLines }) + ) Target.create "PublishNuget" (fun _ -> Paket.push(fun p -> { p with - PublishUrl = "https://www.nuget.org" - WorkingDir = "bin" }) + WorkingDir = pkgDir + ToolType = ToolType.CreateLocalTool() + ApiKey = Environment.environVarOrDefault "NuGet-key" "" }) ) - // -------------------------------------------------------------------------------------- // Generate the documentation @@ -556,18 +613,32 @@ Target.create "ReleaseDocsConfirmation" (fun _ -> match promptYesNo releaseDocsM Target.create "All" ignore -Target.create "Linux" ignore +Target.create "Dotnet" ignore + +Target.create "Mono" ignore + +Target.create "CIBuild" ignore +Target.create "CIBuildLinux" ignore + +//Dotnet core build, excludes all .net framework only projects "Clean" - //==> "InstallPaket" ==> "AssemblyInfo" - ==> "Restore" - ==> "BuildLinux" - ==> "CopyBinariesLinux" - ==> "Linux" + //==> "Restore" + ==> "BuildDotnet" + ==> "CopyBinariesDotnet" + ==> "Dotnet" + +//Builds on mono, biodb is excluded as i simply cannot get it to work +"Clean" + ==> "AssemblyInfo" + ==> "RestoreMono" + ==> "BuildMono" + ==> "CopyBinariesMono" + ==> "RunTestsMono" + ==> "Mono" "Clean" - //==> "InstallPaket" ==> "AssemblyInfo" ==> "Restore" ==> "Build" diff --git a/build.fsx.lock b/build.fsx.lock new file mode 100644 index 00000000..2ac34e8e --- /dev/null +++ b/build.fsx.lock @@ -0,0 +1,770 @@ +STORAGE: NONE +RESTRICTION: == netstandard2.0 +NUGET + remote: https://api.nuget.org/v3/index.json + BlackFox.VsWhere (1.0) + FSharp.Core (>= 4.2.3) + Fake.Api.Github (5.19.1) + FSharp.Core (>= 4.7) + Octokit (>= 0.36) + Fake.Core.CommandLineParsing (5.19.1) + FParsec (>= 1.0.3) + FSharp.Core (>= 4.7) + Fake.Core.Context (5.19.1) + FSharp.Core (>= 4.7) + Fake.Core.Environment (5.19.1) + FSharp.Core (>= 4.7) + Fake.Core.FakeVar (5.19.1) + Fake.Core.Context (>= 5.19.1) + FSharp.Core (>= 4.7) + Fake.Core.Process (5.19.1) + Fake.Core.Environment (>= 5.19.1) + Fake.Core.FakeVar (>= 5.19.1) + Fake.Core.String (>= 5.19.1) + Fake.Core.Trace (>= 5.19.1) + Fake.IO.FileSystem (>= 5.19.1) + FSharp.Core (>= 4.7) + System.Diagnostics.Process (>= 4.3) + Fake.Core.ReleaseNotes (5.19.1) + Fake.Core.SemVer (>= 5.19.1) + Fake.Core.String (>= 5.19.1) + FSharp.Core (>= 4.7) + Fake.Core.SemVer (5.19.1) + FSharp.Core (>= 4.7) + System.Runtime.Numerics (>= 4.3) + Fake.Core.String (5.19.1) + FSharp.Core (>= 4.7) + Fake.Core.Target (5.19.1) + Fake.Core.CommandLineParsing (>= 5.19.1) + Fake.Core.Context (>= 5.19.1) + Fake.Core.Environment (>= 5.19.1) + Fake.Core.FakeVar (>= 5.19.1) + Fake.Core.Process (>= 5.19.1) + Fake.Core.String (>= 5.19.1) + Fake.Core.Trace (>= 5.19.1) + FSharp.Control.Reactive (>= 4.2) + FSharp.Core (>= 4.7) + System.Reactive.Compatibility (>= 4.3.1) + Fake.Core.Tasks (5.19.1) + Fake.Core.Trace (>= 5.19.1) + FSharp.Core (>= 4.7) + Fake.Core.Trace (5.19.1) + Fake.Core.Environment (>= 5.19.1) + Fake.Core.FakeVar (>= 5.19.1) + FSharp.Core (>= 4.7) + Fake.Core.Xml (5.19.1) + Fake.Core.String (>= 5.19.1) + FSharp.Core (>= 4.7) + System.Xml.ReaderWriter (>= 4.3.1) + System.Xml.XDocument (>= 4.3) + System.Xml.XPath (>= 4.3) + System.Xml.XPath.XDocument (>= 4.3) + System.Xml.XPath.XmlDocument (>= 4.3) + Fake.DotNet.AssemblyInfoFile (5.19.1) + Fake.Core.Environment (>= 5.19.1) + Fake.Core.String (>= 5.19.1) + Fake.Core.Trace (>= 5.19.1) + Fake.IO.FileSystem (>= 5.19.1) + FSharp.Core (>= 4.7) + Fake.DotNet.Cli (5.19.1) + Fake.Core.Environment (>= 5.19.1) + Fake.Core.Process (>= 5.19.1) + Fake.Core.String (>= 5.19.1) + Fake.Core.Trace (>= 5.19.1) + Fake.DotNet.MSBuild (>= 5.19.1) + Fake.DotNet.NuGet (>= 5.19.1) + Fake.IO.FileSystem (>= 5.19.1) + FSharp.Core (>= 4.7) + Mono.Posix.NETStandard (>= 1.0) + Newtonsoft.Json (>= 12.0.3) + Fake.DotNet.FSFormatting (5.19.1) + Fake.Core.Process (>= 5.19.1) + Fake.IO.FileSystem (>= 5.19.1) + FSharp.Core (>= 4.7) + Fake.DotNet.Fsi (5.19.1) + Fake.Core.Environment (>= 5.19.1) + Fake.Core.Process (>= 5.19.1) + Fake.Core.String (>= 5.19.1) + Fake.Core.Trace (>= 5.19.1) + Fake.DotNet.MSBuild (>= 5.19.1) + Fake.IO.FileSystem (>= 5.19.1) + Fake.Tools.Git (>= 5.19.1) + FSharp.Compiler.Service (>= 33.0.1) + FSharp.Core (>= 4.7) + Fake.DotNet.MSBuild (5.19.1) + BlackFox.VsWhere (>= 1.0) + Fake.Core.Environment (>= 5.19.1) + Fake.Core.Process (>= 5.19.1) + Fake.Core.String (>= 5.19.1) + Fake.Core.Trace (>= 5.19.1) + Fake.IO.FileSystem (>= 5.19.1) + FSharp.Core (>= 4.7) + MSBuild.StructuredLogger (>= 2.0.152) + Fake.DotNet.NuGet (5.19.1) + Fake.Core.Environment (>= 5.19.1) + Fake.Core.Process (>= 5.19.1) + Fake.Core.SemVer (>= 5.19.1) + Fake.Core.String (>= 5.19.1) + Fake.Core.Tasks (>= 5.19.1) + Fake.Core.Trace (>= 5.19.1) + Fake.Core.Xml (>= 5.19.1) + Fake.IO.FileSystem (>= 5.19.1) + Fake.Net.Http (>= 5.19.1) + FSharp.Core (>= 4.7) + Newtonsoft.Json (>= 12.0.3) + NuGet.Protocol (>= 4.9.4) + System.Net.Http (>= 4.3.4) + Fake.DotNet.Paket (5.19.1) + Fake.Core.Process (>= 5.19.1) + Fake.Core.String (>= 5.19.1) + Fake.Core.Trace (>= 5.19.1) + Fake.DotNet.Cli (>= 5.19.1) + Fake.IO.FileSystem (>= 5.19.1) + FSharp.Core (>= 4.7) + Fake.DotNet.Testing.Expecto (5.19.1) + Fake.Core.Process (>= 5.19.1) + Fake.Core.String (>= 5.19.1) + Fake.Core.Trace (>= 5.19.1) + Fake.IO.FileSystem (>= 5.19.1) + Fake.Testing.Common (>= 5.19.1) + FSharp.Core (>= 4.7) + Fake.IO.FileSystem (5.19.1) + Fake.Core.String (>= 5.19.1) + FSharp.Core (>= 4.7) + System.Diagnostics.FileVersionInfo (>= 4.3) + System.IO.FileSystem.Watcher (>= 4.3) + Fake.Net.Http (5.19.1) + Fake.Core.Trace (>= 5.19.1) + FSharp.Core (>= 4.7) + System.Net.Http (>= 4.3.4) + Fake.Testing.Common (5.19.1) + Fake.Core.Trace (>= 5.19.1) + FSharp.Core (>= 4.7) + Fake.Tools.Git (5.19.1) + Fake.Core.Environment (>= 5.19.1) + Fake.Core.Process (>= 5.19.1) + Fake.Core.SemVer (>= 5.19.1) + Fake.Core.String (>= 5.19.1) + Fake.Core.Trace (>= 5.19.1) + Fake.IO.FileSystem (>= 5.19.1) + FSharp.Core (>= 4.7) + FParsec (1.1.1) + FSharp.Core (>= 4.3.4) + FSharp.Compiler.Service (34.0.1) + FSharp.Core (>= 4.6.2) + System.Buffers (>= 4.5) + System.Collections.Immutable (>= 1.5) + System.Diagnostics.Process (>= 4.1) + System.Diagnostics.TraceSource (>= 4.0) + System.Reflection.Emit (>= 4.3) + System.Reflection.Metadata (>= 1.6) + System.Reflection.TypeExtensions (>= 4.3) + System.Runtime.Loader (>= 4.0) + System.Security.Cryptography.Algorithms (>= 4.3) + FSharp.Control.Reactive (4.2) + FSharp.Core (>= 4.2.3) + System.Reactive (>= 4.0) + FSharp.Core (4.7) + Microsoft.Build (16.4) + Microsoft.Build.Framework (16.4) + System.Runtime.Serialization.Primitives (>= 4.1.1) + System.Threading.Thread (>= 4.0) + Microsoft.Build.Tasks.Core (16.4) + Microsoft.Build.Framework (>= 16.4) + Microsoft.Build.Utilities.Core (>= 16.4) + Microsoft.Win32.Registry (>= 4.3) + System.CodeDom (>= 4.4) + System.Collections.Immutable (>= 1.5) + System.Linq.Parallel (>= 4.0.1) + System.Net.Http (>= 4.3.4) + System.Reflection.Metadata (>= 1.6) + System.Reflection.TypeExtensions (>= 4.1) + System.Resources.Extensions (>= 4.6) + System.Resources.Writer (>= 4.0) + System.Threading.Tasks.Dataflow (>= 4.9) + Microsoft.Build.Utilities.Core (16.4) + Microsoft.Build.Framework (>= 16.4) + Microsoft.Win32.Registry (>= 4.3) + System.Collections.Immutable (>= 1.5) + System.Text.Encoding.CodePages (>= 4.0.1) + Microsoft.NETCore.Platforms (3.1) + Microsoft.NETCore.Targets (3.1) + Microsoft.Win32.Primitives (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + Microsoft.Win32.Registry (4.7) + System.Buffers (>= 4.5) + System.Memory (>= 4.5.3) + System.Security.AccessControl (>= 4.7) + System.Security.Principal.Windows (>= 4.7) + Mono.Posix.NETStandard (1.0) + MSBuild.StructuredLogger (2.0.174) + Microsoft.Build (>= 15.8.166) + Microsoft.Build.Framework (>= 15.8.166) + Microsoft.Build.Tasks.Core (>= 15.8.166) + Microsoft.Build.Utilities.Core (>= 15.8.166) + Newtonsoft.Json (12.0.3) + NuGet.Common (5.4) + NuGet.Frameworks (>= 5.4) + System.Diagnostics.Process (>= 4.3) + System.Threading.Thread (>= 4.3) + NuGet.Configuration (5.4) + NuGet.Common (>= 5.4) + System.Security.Cryptography.ProtectedData (>= 4.3) + NuGet.Frameworks (5.4) + NuGet.Packaging (5.4) + Newtonsoft.Json (>= 9.0.1) + NuGet.Configuration (>= 5.4) + NuGet.Versioning (>= 5.4) + System.Dynamic.Runtime (>= 4.3) + NuGet.Protocol (5.4) + NuGet.Packaging (>= 5.4) + System.Dynamic.Runtime (>= 4.3) + NuGet.Versioning (5.4) + Octokit (0.40) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.native.System (4.3.1) + Microsoft.NETCore.Platforms (>= 1.1.1) + Microsoft.NETCore.Targets (>= 1.1.3) + runtime.native.System.Net.Http (4.3.1) + Microsoft.NETCore.Platforms (>= 1.1.1) + Microsoft.NETCore.Targets (>= 1.1.3) + runtime.native.System.Security.Cryptography.Apple (4.3.1) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + System.Buffers (4.5) + System.CodeDom (4.7) + System.Collections (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Collections.Concurrent (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Diagnostics.Tracing (>= 4.3) + System.Globalization (>= 4.3) + System.Reflection (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.Collections.Immutable (1.7) + System.Memory (>= 4.5.3) + System.Diagnostics.Debug (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Diagnostics.DiagnosticSource (4.7) + System.Memory (>= 4.5.3) + System.Diagnostics.FileVersionInfo (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.IO.FileSystem (>= 4.3) + System.IO.FileSystem.Primitives (>= 4.3) + System.Reflection.Metadata (>= 1.4.1) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Diagnostics.Process (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.Win32.Primitives (>= 4.3) + Microsoft.Win32.Registry (>= 4.3) + runtime.native.System (>= 4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.IO.FileSystem (>= 4.3) + System.IO.FileSystem.Primitives (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Text.Encoding.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.Threading.Thread (>= 4.3) + System.Threading.ThreadPool (>= 4.3) + System.Diagnostics.Tools (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Diagnostics.TraceSource (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + runtime.native.System (>= 4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Diagnostics.Tracing (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Dynamic.Runtime (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Linq (>= 4.3) + System.Linq.Expressions (>= 4.3) + System.ObjectModel (>= 4.3) + System.Reflection (>= 4.3) + System.Reflection.Emit (>= 4.3) + System.Reflection.Emit.ILGeneration (>= 4.3) + System.Reflection.Primitives (>= 4.3) + System.Reflection.TypeExtensions (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Globalization (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Globalization.Calendars (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Globalization (>= 4.3) + System.Runtime (>= 4.3) + System.Globalization.Extensions (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + System.Globalization (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.IO (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.IO.FileSystem (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.IO (>= 4.3) + System.IO.FileSystem.Primitives (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.IO.FileSystem.Primitives (4.3) + System.Runtime (>= 4.3) + System.IO.FileSystem.Watcher (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.Win32.Primitives (>= 4.3) + runtime.native.System (>= 4.3) + System.Collections (>= 4.3) + System.IO.FileSystem (>= 4.3) + System.IO.FileSystem.Primitives (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading (>= 4.3) + System.Threading.Overlapped (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.Threading.Thread (>= 4.3) + System.Linq (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Linq.Expressions (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Linq (>= 4.3) + System.ObjectModel (>= 4.3) + System.Reflection (>= 4.3) + System.Reflection.Emit (>= 4.3) + System.Reflection.Emit.ILGeneration (>= 4.3) + System.Reflection.Emit.Lightweight (>= 4.3) + System.Reflection.Extensions (>= 4.3) + System.Reflection.Primitives (>= 4.3) + System.Reflection.TypeExtensions (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Linq.Parallel (4.3) + System.Collections (>= 4.3) + System.Collections.Concurrent (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Diagnostics.Tracing (>= 4.3) + System.Linq (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.Memory (4.5.3) + System.Buffers (>= 4.4) + System.Numerics.Vectors (>= 4.4) + System.Runtime.CompilerServices.Unsafe (>= 4.5.2) + System.Net.Http (4.3.4) + Microsoft.NETCore.Platforms (>= 1.1.1) + runtime.native.System (>= 4.3) + runtime.native.System.Net.Http (>= 4.3) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Diagnostics.DiagnosticSource (>= 4.3) + System.Diagnostics.Tracing (>= 4.3) + System.Globalization (>= 4.3) + System.Globalization.Extensions (>= 4.3) + System.IO (>= 4.3) + System.IO.FileSystem (>= 4.3) + System.Net.Primitives (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Security.Cryptography.Algorithms (>= 4.3) + System.Security.Cryptography.Encoding (>= 4.3) + System.Security.Cryptography.OpenSsl (>= 4.3) + System.Security.Cryptography.Primitives (>= 4.3) + System.Security.Cryptography.X509Certificates (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.Net.Primitives (4.3.1) + Microsoft.NETCore.Platforms (>= 1.1.1) + Microsoft.NETCore.Targets (>= 1.1.3) + System.Runtime (>= 4.3.1) + System.Runtime.Handles (>= 4.3) + System.Numerics.Vectors (4.5) + System.ObjectModel (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Threading (>= 4.3) + System.Reactive (4.3.2) + System.Runtime.InteropServices.WindowsRuntime (>= 4.3) + System.Threading.Tasks.Extensions (>= 4.5.3) + System.Reactive.Compatibility (4.3.2) + System.Reactive.Core (>= 4.3.2) + System.Reactive.Interfaces (>= 4.3.2) + System.Reactive.Linq (>= 4.3.2) + System.Reactive.PlatformServices (>= 4.3.2) + System.Reactive.Providers (>= 4.3.2) + System.Reactive.Core (4.3.2) + System.Reactive (>= 4.3.2) + System.Threading.Tasks.Extensions (>= 4.5.3) + System.Reactive.Interfaces (4.3.2) + System.Reactive (>= 4.3.2) + System.Threading.Tasks.Extensions (>= 4.5.3) + System.Reactive.Linq (4.3.2) + System.Reactive (>= 4.3.2) + System.Threading.Tasks.Extensions (>= 4.5.3) + System.Reactive.PlatformServices (4.3.2) + System.Reactive (>= 4.3.2) + System.Threading.Tasks.Extensions (>= 4.5.3) + System.Reactive.Providers (4.3.2) + System.Reactive (>= 4.3.2) + System.Threading.Tasks.Extensions (>= 4.5.3) + System.Reflection (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.IO (>= 4.3) + System.Reflection.Primitives (>= 4.3) + System.Runtime (>= 4.3) + System.Reflection.Emit (4.7) + System.Reflection.Emit.ILGeneration (>= 4.7) + System.Reflection.Emit.ILGeneration (4.7) + System.Reflection.Emit.Lightweight (4.7) + System.Reflection.Emit.ILGeneration (>= 4.7) + System.Reflection.Extensions (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Reflection (>= 4.3) + System.Runtime (>= 4.3) + System.Reflection.Metadata (1.8) + System.Collections.Immutable (>= 1.7) + System.Reflection.Primitives (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Reflection.TypeExtensions (4.7) + System.Resources.Extensions (4.7) + System.Memory (>= 4.5.3) + System.Resources.ResourceManager (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Globalization (>= 4.3) + System.Reflection (>= 4.3) + System.Runtime (>= 4.3) + System.Resources.Writer (4.3) + System.Collections (>= 4.3) + System.IO (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Runtime (4.3.1) + Microsoft.NETCore.Platforms (>= 1.1.1) + Microsoft.NETCore.Targets (>= 1.1.3) + System.Runtime.CompilerServices.Unsafe (4.7) + System.Runtime.Extensions (4.3.1) + Microsoft.NETCore.Platforms (>= 1.1.1) + Microsoft.NETCore.Targets (>= 1.1.3) + System.Runtime (>= 4.3.1) + System.Runtime.Handles (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Runtime.InteropServices (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Reflection (>= 4.3) + System.Reflection.Primitives (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices.WindowsRuntime (4.3) + System.Runtime (>= 4.3) + System.Runtime.Loader (4.3) + System.IO (>= 4.3) + System.Reflection (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Numerics (4.3) + System.Globalization (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Serialization.Primitives (4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Security.AccessControl (4.7) + System.Security.Principal.Windows (>= 4.7) + System.Security.Cryptography.Algorithms (4.3.1) + Microsoft.NETCore.Platforms (>= 1.1) + runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) + System.Collections (>= 4.3) + System.IO (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Runtime.Numerics (>= 4.3) + System.Security.Cryptography.Encoding (>= 4.3) + System.Security.Cryptography.Primitives (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Security.Cryptography.Cng (4.7) + System.Security.Cryptography.Csp (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + System.IO (>= 4.3) + System.Reflection (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Security.Cryptography.Algorithms (>= 4.3) + System.Security.Cryptography.Encoding (>= 4.3) + System.Security.Cryptography.Primitives (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading (>= 4.3) + System.Security.Cryptography.Encoding (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) + System.Collections (>= 4.3) + System.Collections.Concurrent (>= 4.3) + System.Linq (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Security.Cryptography.Primitives (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Security.Cryptography.OpenSsl (4.7) + System.Security.Cryptography.Primitives (4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Threading (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.Security.Cryptography.ProtectedData (4.7) + System.Memory (>= 4.5.3) + System.Security.Cryptography.X509Certificates (4.3.2) + Microsoft.NETCore.Platforms (>= 1.1) + runtime.native.System (>= 4.3) + runtime.native.System.Net.Http (>= 4.3) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.Globalization.Calendars (>= 4.3) + System.IO (>= 4.3) + System.IO.FileSystem (>= 4.3) + System.IO.FileSystem.Primitives (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Runtime.Numerics (>= 4.3) + System.Security.Cryptography.Algorithms (>= 4.3) + System.Security.Cryptography.Cng (>= 4.3) + System.Security.Cryptography.Csp (>= 4.3) + System.Security.Cryptography.Encoding (>= 4.3) + System.Security.Cryptography.OpenSsl (>= 4.3) + System.Security.Cryptography.Primitives (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading (>= 4.3) + System.Security.Principal.Windows (4.7) + System.Text.Encoding (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Text.Encoding.CodePages (4.7) + System.Runtime.CompilerServices.Unsafe (>= 4.7) + System.Text.Encoding.Extensions (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Text.RegularExpressions (4.3.1) + System.Collections (>= 4.3) + System.Globalization (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3.1) + System.Runtime.Extensions (>= 4.3.1) + System.Threading (>= 4.3) + System.Threading (4.3) + System.Runtime (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.Threading.Overlapped (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Threading.Tasks (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Threading.Tasks.Dataflow (4.11) + System.Threading.Tasks.Extensions (4.5.3) + System.Runtime.CompilerServices.Unsafe (>= 4.5.2) + System.Threading.Thread (4.3) + System.Runtime (>= 4.3) + System.Threading.ThreadPool (4.3) + System.Runtime (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Xml.ReaderWriter (4.3.1) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.IO.FileSystem (>= 4.3) + System.IO.FileSystem.Primitives (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Text.Encoding.Extensions (>= 4.3) + System.Text.RegularExpressions (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.Threading.Tasks.Extensions (>= 4.3) + System.Xml.XDocument (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Diagnostics.Tools (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Reflection (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading (>= 4.3) + System.Xml.ReaderWriter (>= 4.3) + System.Xml.XmlDocument (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading (>= 4.3) + System.Xml.ReaderWriter (>= 4.3) + System.Xml.XPath (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Xml.ReaderWriter (>= 4.3) + System.Xml.XPath.XDocument (4.3) + System.Diagnostics.Debug (>= 4.3) + System.Linq (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Xml.ReaderWriter (>= 4.3) + System.Xml.XDocument (>= 4.3) + System.Xml.XPath (>= 4.3) + System.Xml.XPath.XmlDocument (4.3) + System.Collections (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Xml.ReaderWriter (>= 4.3) + System.Xml.XmlDocument (>= 4.3) + System.Xml.XPath (>= 4.3) diff --git a/build.sh b/build.sh index e24952b4..69fa44ff 100644 --- a/build.sh +++ b/build.sh @@ -6,10 +6,7 @@ set -eu set -o pipefail +dotnet tool restore +dotnet paket restore dotnet restore build.proj - -if [ ! -f build.fsx ]; then - fake run init.fsx -fi - -fake build $@ +dotnet fake build "$@" \ No newline at end of file diff --git a/paket.dependencies b/paket.dependencies index 34c78cc4..9a77b8f1 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -1,78 +1,36 @@ -framework: auto-detect +source https://www.nuget.org/api/v2 -source https://nuget.org/api/v2 +framework: net45, net47, netstandard2.0, netstandard2.1 +strategy: max + +nuget FSharp.Core >= 4.7.0 nuget Alea -nuget FSharp.Core +nuget FSharpAux >= 1.0.0 +nuget FSharpAux.IO >= 1.0.0 +nuget FSharp.Stats >= 0.2.1-beta +#nuget FSharp.Stats.MSF >= 0.2.1-beta +nuget FSharp.Plotly >= 1.2.0 +nuget docker.dotnet >= 3.125.2 +nuget SharpZipLib >= 1.2.0 +nuget CNTK.CPUOnly >= 2.7.0 +nuget Microsoft.Xaml >= 4.0.0.1 nuget Argu - nuget Expecto nuget Expecto.BenchmarkDotNet nuget Expecto.FsCheck -nuget Expecto.VisualStudio.TestAdapter version_in_path: true -nuget FSharp.Data.TypeProviders -nuget FSharp.Plotly -nuget Microsoft.Xaml -nuget SwaggerProvider -nuget YamlDotNet - -nuget docker.dotnet -nuget SharpZipLib - -nuget CNTK.CPUOnly - -git https://github.com/CSBiology/FSharpAux.git nuget Packages: / -nuget FSharpAux -nuget FSharpAux.IO - -git https://github.com/CSBiology/FSharp.Stats.git nuget Packages: / -nuget FSharp.Stats -nuget FSharp.Stats.MSF - - -clitool dotnet-fake - group BioDB - framework:net45 - source https://nuget.org/api/v2 - - nuget Alea - nuget FSharp.Core 4.1.17 - nuget Argu - - nuget Expecto - nuget Expecto.BenchmarkDotNet - nuget Expecto.FsCheck - nuget Expecto.VisualStudio.TestAdapter version_in_path: true - nuget FSharp.Data.TypeProviders - nuget FSharp.Plotly - nuget Microsoft.Xaml - nuget SwaggerProvider + source https://www.nuget.org/api/v2 + nuget SwaggerProvider >= 0.10 nuget YamlDotNet + nuget FSharp.Data.TypeProviders + group Formatting - source https://nuget.org/api/v2 + source https://www.nuget.org/api/v2 source https://ci.appveyor.com/nuget/fsharp-formatting nuget FSharp.Formatting prerelease - nuget FSharp.Formatting.CommandTool prerelease - -group FakeBuild - - source https://api.nuget.org/v3/index.json - - storage: none - - nuget Fake.Core.Target - nuget Fake.IO.FileSystem - nuget Fake.DotNet.Cli - nuget Fake.Tools.Git - nuget Fake.DotNet.MSBuild - nuget Fake.Core.ReleaseNotes - nuget Fake.DotNet.AssemblyInfoFile - nuget Fake.DotNet.Paket - nuget Fake.DotNet.Testing.Expecto - nuget Fake.DotNet.FSFormatting - nuget Fake.Api.GitHub \ No newline at end of file + nuget FSharp.Formatting.CommandTool prerelease \ No newline at end of file diff --git a/paket.lock b/paket.lock index 8b412e68..f3fab009 100644 --- a/paket.lock +++ b/paket.lock @@ -1,12 +1,12 @@ -RESTRICTION: || (== net45) (== net47) (== netstandard2.0) +STRATEGY: MAX +RESTRICTION: || (== net45) (== net47) (== netstandard2.0) (== netstandard2.1) NUGET remote: https://www.nuget.org/api/v2 Alea (3.0.4) - Argu (5.5) - FSharp.Core (>= 4.0.0.1) - restriction: || (== net45) (== net47) (&& (== netstandard2.0) (>= net45)) - FSharp.Core (>= 4.3.2) - restriction: || (&& (== net47) (< net45) (>= netstandard2.0)) (== netstandard2.0) - System.Configuration.ConfigurationManager (>= 4.4) - restriction: || (&& (== net47) (< net45) (>= netstandard2.0)) (== netstandard2.0) - BenchmarkDotNet (0.11.5) - restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netcoreapp2.0)) (== net47) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) + Argu (6.0) + FSharp.Core (>= 4.3.2) - restriction: || (&& (== net45) (>= netstandard2.0)) (&& (== net47) (>= netstandard2.0)) (== netstandard2.0) (== netstandard2.1) + System.Configuration.ConfigurationManager (>= 4.4) - restriction: || (&& (== net45) (>= netstandard2.0)) (&& (== net47) (>= netstandard2.0)) (== netstandard2.0) (== netstandard2.1) + BenchmarkDotNet (0.11.5) - restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netcoreapp2.0)) (== net47) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) (&& (== netstandard2.1) (>= net461)) (&& (== netstandard2.1) (>= netcoreapp2.0)) CNTK.CPUOnly (2.7) CNTK.Deps.MKL (2.7) CNTK.Deps.OpenCV.Zip (2.7) @@ -14,385 +14,144 @@ NUGET CNTK.Deps.OpenCV.Zip (2.7) Docker.DotNet (3.125.2) Newtonsoft.Json (>= 9.0.1) - System.Buffers (>= 4.3) - restriction: || (&& (== net45) (>= net46)) (== net47) (&& (== netstandard2.0) (>= net46)) - System.Buffers (>= 4.4) - restriction: || (&& (== net47) (< net45) (>= netstandard2.0)) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net45) (>= net46)) (== net47) (&& (== netstandard2.0) (>= net46)) + System.Buffers (>= 4.3) - restriction: || (&& (== net45) (== netstandard2.1)) (&& (== net45) (>= net46)) (== net47) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.1) (>= net46)) (&& (== netstandard2.1) (< netstandard2.0)) + System.Buffers (>= 4.4) - restriction: || (&& (== net47) (< net45) (>= netstandard2.0)) (== netstandard2.0) (== netstandard2.1) + System.Runtime (>= 4.3) - restriction: || (&& (== net45) (>= net46)) (== net47) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.1) (>= net46)) System.ValueTuple (>= 4.4) - dotnet-fake (5.18) - clitool: true - Expecto (8.12) - FSharp.Core (>= 4.3.4) - restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netstandard2.0)) (== net47) (== netstandard2.0) - Mono.Cecil (>= 0.10.3) - restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netstandard2.0)) (== net47) (== netstandard2.0) - Expecto.BenchmarkDotNet (8.12) - BenchmarkDotNet (>= 0.10.14) - restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netcoreapp2.0)) (== net47) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) - FSharp.Core (>= 4.3.4) - restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netcoreapp2.0)) (== net47) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) - Expecto.FsCheck (8.12) - Expecto (>= 8.12) - restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netstandard2.0)) (== net47) (== netstandard2.0) - FsCheck (>= 2.13) - restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netstandard2.0)) (== net47) (== netstandard2.0) - Expecto.VisualStudio.TestAdapter (10.0.2) - version_in_path: true - Expecto (>= 8.0 < 9.0) - restriction: || (&& (== net45) (>= net461)) (== net47) (&& (== netstandard2.0) (>= net461)) - FSharp.Core (>= 4.0 < 5.0) - restriction: || (&& (== net45) (>= net461)) (== net47) (&& (== netstandard2.0) (>= net461)) - Microsoft.TestPlatform.ObjectModel (>= 15.0 < 16.0) - restriction: || (&& (== net45) (>= net461)) (== net47) (&& (== netstandard2.0) (>= net461)) - Mono.Cecil (>= 0.10 < 0.11) - restriction: || (&& (== net45) (>= net461)) (== net47) (&& (== netstandard2.0) (>= net461)) - Newtonsoft.Json (>= 11.0.2 < 12.0) - restriction: || (&& (== net45) (>= net461)) (== net47) (&& (== netstandard2.0) (>= net461)) - FsCheck (2.14) - restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netstandard2.0)) (== net47) (== netstandard2.0) - FSharp.Core (>= 4.2.3) - restriction: || (&& (== net45) (>= net452)) (&& (== net45) (>= netstandard1.6)) (== net47) (== netstandard2.0) + Expecto (8.13.1) + FSharp.Core (>= 4.3.4) - restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netstandard2.0)) (== net47) (== netstandard2.0) (== netstandard2.1) + Mono.Cecil (>= 0.11) - restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netstandard2.0)) (== net47) (== netstandard2.0) (== netstandard2.1) + Expecto.BenchmarkDotNet (8.13.1) + BenchmarkDotNet (>= 0.11.5) - restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netcoreapp2.0)) (== net47) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) (&& (== netstandard2.1) (>= net461)) (&& (== netstandard2.1) (>= netcoreapp2.0)) + FSharp.Core (>= 4.3.4) - restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netcoreapp2.0)) (== net47) (&& (== netstandard2.0) (>= net461)) (&& (== netstandard2.0) (>= netcoreapp2.0)) (&& (== netstandard2.1) (>= net461)) (&& (== netstandard2.1) (>= netcoreapp2.0)) + Expecto.FsCheck (8.13.1) + Expecto (>= 8.13.1) - restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netstandard2.0)) (== net47) (== netstandard2.0) (== netstandard2.1) + FsCheck (>= 2.14) - restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netstandard2.0)) (== net47) (== netstandard2.0) (== netstandard2.1) + FsCheck (2.14) - restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netstandard2.0)) (== net47) (== netstandard2.0) (== netstandard2.1) + FSharp.Core (>= 4.2.3) - restriction: || (&& (== net45) (>= net452)) (&& (== net45) (>= netstandard1.6)) (== net47) (== netstandard2.0) (== netstandard2.1) FSharp.Core (4.7) - FSharp.Data.TypeProviders (5.0.0.6) - FSharp.Core (>= 3.1.2.5) - FSharp.Plotly (1.1.21) - Microsoft.TestPlatform.ObjectModel (15.9.2) - version_in_path: true, restriction: || (&& (== net45) (>= net461)) (== net47) (&& (== netstandard2.0) (>= net461)) - System.Reflection.Metadata (>= 1.3) - restriction: || (&& (== net45) (>= net451)) (&& (== net45) (>= netstandard1.5)) (== net47) (== netstandard2.0) - System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (== net45) (>= net451)) (== net47) (&& (== netstandard2.0) (>= net451)) + FSharp.Plotly (1.2) + FSharp.Core + Newtonsoft.Json + FSharp.Stats (0.2.1-beta) + FSharp.Core + FSharpAux + FSharpAux.IO + FSharpAux (1.0) + FSharp.Core + FSharpAux.IO (1.0) + FSharp.Core + FSharpAux (>= 1.0) Microsoft.Xaml (4.0.0.1) - Mono.Cecil (0.10.4) - version_in_path: true, restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netstandard2.0)) (== net47) (== netstandard2.0) - Newtonsoft.Json (11.0.2) - version_in_path: true + Mono.Cecil (0.11.1) - restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netstandard2.0)) (== net47) (== netstandard2.0) (== netstandard2.1) + Newtonsoft.Json (12.0.3) SharpZipLib (1.2) - SwaggerProvider (0.8.2) - FSharp.Core (>= 4.0) - Newtonsoft.Json (>= 10.0) - System.Buffers (4.5) - restriction: || (&& (== net45) (>= net46)) (== net47) (== netstandard2.0) - System.Collections.Immutable (1.6.0) - version_in_path: true, restriction: || (&& (== net45) (>= net461)) (== net47) (&& (== netstandard2.0) (>= net461)) - System.Memory (>= 4.5.3) - restriction: || (&& (== net45) (>= net46)) (&& (== net45) (>= uap10.1)) (== net47) (== netstandard2.0) - System.Configuration.ConfigurationManager (4.6) - restriction: || (&& (== net47) (< net45) (>= netstandard2.0)) (== netstandard2.0) - System.Security.Cryptography.ProtectedData (>= 4.6) - restriction: || (&& (== net45) (>= netstandard2.0)) (&& (== net47) (< net461) (>= netstandard2.0)) (== netstandard2.0) - System.Security.Permissions (>= 4.6) - restriction: || (&& (== net45) (>= monoandroid)) (&& (== net45) (>= monotouch)) (&& (== net45) (>= net461)) (&& (== net45) (>= netstandard2.0)) (&& (== net45) (>= xamarintvos)) (&& (== net45) (>= xamarinwatchos)) (== net47) (== netstandard2.0) - System.Memory (4.5.3) - restriction: || (&& (== net45) (>= net461)) (== net47) (== netstandard2.0) + System.Buffers (4.5) - restriction: || (&& (== net45) (>= net46)) (&& (== net45) (>= netstandard2.0)) (&& (== net45) (>= xamarinios)) (&& (== net45) (>= xamarinmac)) (== net47) (== netstandard2.0) (== netstandard2.1) + System.Configuration.ConfigurationManager (4.6) - restriction: || (&& (== net45) (>= netstandard2.0)) (&& (== net47) (>= netstandard2.0)) (== netstandard2.0) (== netstandard2.1) + System.Security.Cryptography.ProtectedData (>= 4.6) - restriction: || (&& (== net45) (>= netstandard2.0)) (&& (== net47) (< net461) (>= netstandard2.0)) (== netstandard2.0) (== netstandard2.1) + System.Security.Permissions (>= 4.6) - restriction: || (&& (== net45) (>= monoandroid)) (&& (== net45) (>= monotouch)) (&& (== net45) (>= net461)) (&& (== net45) (>= netstandard2.0)) (&& (== net45) (>= xamarintvos)) (&& (== net45) (>= xamarinwatchos)) (== net47) (== netstandard2.0) (== netstandard2.1) + System.Memory (4.5.3) - restriction: || (&& (== net45) (>= netstandard2.0)) (&& (== net47) (< net46) (>= netstandard2.0)) (== netstandard2.0) (== netstandard2.1) System.Buffers (>= 4.4) - System.Numerics.Vectors (>= 4.4) - restriction: || (&& (== net45) (>= net461)) (== net47) (== netstandard2.0) + System.Numerics.Vectors (>= 4.4) - restriction: || (&& (== net45) (>= net461)) (== net47) (== netstandard2.0) (== netstandard2.1) System.Runtime.CompilerServices.Unsafe (>= 4.5.2) - System.Numerics.Vectors (4.5) - restriction: || (&& (== net47) (< net45) (>= netstandard2.0)) (== netstandard2.0) - System.Reflection.Metadata (1.7.0) - version_in_path: true, restriction: || (&& (== net45) (>= net461)) (== net47) (&& (== netstandard2.0) (>= net461)) - System.Collections.Immutable (>= 1.6) - System.Runtime (4.3.1) - restriction: || (&& (== net45) (>= net46)) (== net47) (&& (== netstandard2.0) (>= net46)) - System.Runtime.CompilerServices.Unsafe (4.6) - restriction: || (&& (== net47) (>= monoandroid) (>= netstandard2.0)) (&& (== net47) (>= monotouch) (>= netstandard2.0)) (&& (== net47) (< net45) (>= netstandard2.0)) (&& (== net47) (>= netcoreapp2.0)) (&& (== net47) (< netstandard1.1) (>= netstandard2.0)) (&& (== net47) (>= netstandard2.0) (>= uap10.1)) (&& (== net47) (>= netstandard2.0) (>= wpa81)) (&& (== net47) (>= netstandard2.0) (>= xamarintvos)) (&& (== net47) (>= netstandard2.0) (>= xamarinwatchos)) (&& (== net47) (>= xamarinios)) (&& (== net47) (>= xamarinmac)) (== netstandard2.0) - System.Runtime.InteropServices.RuntimeInformation (4.3.0) - version_in_path: true, restriction: || (&& (== net45) (>= net461)) (== net47) (&& (== netstandard2.0) (>= net461)) - System.Security.AccessControl (4.6) - restriction: || (&& (== net47) (>= monoandroid) (>= netstandard2.0)) (&& (== net47) (>= monotouch) (>= netstandard2.0)) (&& (== net47) (< net45) (>= netstandard2.0)) (&& (== net47) (>= netstandard2.0) (>= xamarintvos)) (&& (== net47) (>= netstandard2.0) (>= xamarinwatchos)) (== netstandard2.0) - System.Security.Principal.Windows (>= 4.6) - restriction: || (&& (== net45) (>= net46)) (&& (== net45) (>= net461)) (&& (== net45) (>= netcoreapp2.0)) (&& (== net45) (>= netstandard1.3)) (&& (== net45) (>= netstandard2.0)) (== net47) (== netstandard2.0) - System.Security.Cryptography.ProtectedData (4.6) - restriction: || (&& (== net47) (< net45) (>= netstandard2.0)) (== netstandard2.0) - System.Memory (>= 4.5.3) - restriction: || (&& (== net45) (>= netstandard2.0)) (&& (== net47) (< net46) (>= netstandard2.0)) (== netstandard2.0) - System.Security.Permissions (4.6) - restriction: || (&& (== net47) (>= monoandroid) (>= netstandard2.0)) (&& (== net47) (>= monotouch) (>= netstandard2.0)) (&& (== net47) (< net45) (>= netstandard2.0)) (&& (== net47) (>= netstandard2.0) (>= xamarintvos)) (&& (== net47) (>= netstandard2.0) (>= xamarinwatchos)) (== netstandard2.0) - System.Security.AccessControl (>= 4.6) - restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netstandard2.0)) (== net47) (== netstandard2.0) - System.Security.Principal.Windows (4.6) - restriction: || (&& (== net47) (>= monoandroid) (>= netstandard2.0)) (&& (== net47) (>= monotouch) (>= netstandard2.0)) (&& (== net47) (< net45) (>= netstandard2.0)) (&& (== net47) (>= netcoreapp2.0)) (&& (== net47) (>= netstandard2.0) (>= xamarintvos)) (&& (== net47) (>= netstandard2.0) (>= xamarinwatchos)) (== netstandard2.0) + System.Numerics.Vectors (4.5) - restriction: || (&& (== net45) (== net47) (>= netstandard2.0)) (&& (== net45) (>= net461) (>= netstandard2.0)) (&& (== net47) (< net45) (>= netstandard2.0)) (&& (== net47) (< net46) (>= netstandard2.0)) (== netstandard2.0) (== netstandard2.1) + System.Runtime (4.3.1) - restriction: || (&& (== net45) (>= net46)) (== net47) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.1) (>= net46)) + System.Runtime.CompilerServices.Unsafe (4.6) - restriction: || (&& (== net45) (>= netcoreapp2.0)) (&& (== net45) (>= netstandard2.0)) (&& (== net45) (>= xamarinios)) (&& (== net45) (>= xamarinmac)) (&& (== net47) (>= monoandroid) (>= netstandard2.0)) (&& (== net47) (>= monotouch) (>= netstandard2.0)) (&& (== net47) (< net45) (>= netstandard2.0)) (&& (== net47) (< net46) (>= netstandard2.0)) (&& (== net47) (>= netcoreapp2.0)) (&& (== net47) (< netstandard1.1) (>= netstandard2.0)) (&& (== net47) (>= netstandard2.0) (>= uap10.1)) (&& (== net47) (>= netstandard2.0) (>= wpa81)) (&& (== net47) (>= netstandard2.0) (>= xamarintvos)) (&& (== net47) (>= netstandard2.0) (>= xamarinwatchos)) (&& (== net47) (>= xamarinios)) (&& (== net47) (>= xamarinmac)) (== netstandard2.0) (== netstandard2.1) + System.Security.AccessControl (4.6) - restriction: || (&& (== net45) (>= netstandard2.0)) (&& (== net47) (>= netstandard2.0)) (== netstandard2.0) (== netstandard2.1) + System.Security.Principal.Windows (>= 4.6) - restriction: || (&& (== net45) (>= net46)) (&& (== net45) (>= net461)) (&& (== net45) (>= netcoreapp2.0)) (&& (== net45) (>= netstandard1.3)) (&& (== net45) (>= netstandard2.0)) (== net47) (== netstandard2.0) (== netstandard2.1) + System.Security.Cryptography.ProtectedData (4.6) - restriction: || (&& (== net45) (>= netstandard2.0)) (&& (== net47) (< net461) (>= netstandard2.0)) (== netstandard2.0) (== netstandard2.1) + System.Memory (>= 4.5.3) - restriction: || (&& (== net45) (>= netstandard2.0)) (&& (== net47) (< net46) (>= netstandard2.0)) (== netstandard2.0) (== netstandard2.1) + System.Security.Permissions (4.6) - restriction: || (&& (== net45) (>= netstandard2.0)) (&& (== net47) (>= netstandard2.0)) (== netstandard2.0) (== netstandard2.1) + System.Security.AccessControl (>= 4.6) - restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netstandard2.0)) (== net47) (== netstandard2.0) (== netstandard2.1) + System.Security.Principal.Windows (4.6) - restriction: || (&& (== net45) (>= netcoreapp2.0)) (&& (== net45) (>= netstandard2.0)) (&& (== net47) (>= netcoreapp2.0)) (&& (== net47) (>= netstandard2.0)) (== netstandard2.0) (== netstandard2.1) System.ValueTuple (4.5) - YamlDotNet (8.0) - remote: paket-files/github.com/CSBiology/FSharp.Stats - FSharp.Stats (0.1.0) - FSharp.Stats.MSF (0.1.0) - remote: paket-files/github.com/CSBiology/FSharpAux - FSharpAux (0.0.15) - FSharpAux.IO (0.0.15) -GIT - remote: https://github.com/CSBiology/FSharpAux.git - (456f096ee9b48ad866c483590c86421ee300c857) - path: / - remote: https://github.com/CSBiology/FSharp.Stats.git - (2293a87e11e175f81af5bddab240b1638f220da0) - path: / + GROUP BioDB -RESTRICTION: == net45 NUGET remote: https://www.nuget.org/api/v2 - Alea (3.0.4) - Argu (5.5) - FSharp.Core (>= 4.0.0.1) - Expecto (8.12) - Expecto.BenchmarkDotNet (8.12) - Expecto.FsCheck (8.12) - Expecto.VisualStudio.TestAdapter (10.0.2) - version_in_path: true - FSharp.Core (4.1.17) - System.ValueTuple (>= 4.3) + FSharp.Core (4.7) FSharp.Data.TypeProviders (5.0.0.6) FSharp.Core (>= 3.1.2.5) - FSharp.Plotly (1.1.21) - Microsoft.Xaml (4.0.0.1) - Newtonsoft.Json (12.0.2) - SwaggerProvider (0.8.2) - FSharp.Core (>= 4.0) - Newtonsoft.Json (>= 10.0) - System.ValueTuple (4.5) - YamlDotNet (8.0) - -GROUP FakeBuild -STORAGE: NONE -NUGET - remote: https://api.nuget.org/v3/index.json - BlackFox.VsWhere (1.0) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.0.0.1) - restriction: >= net45 - FSharp.Core (>= 4.2.3) - restriction: && (< net45) (>= netstandard2.0) - Fake.Api.GitHub (5.18) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - Octokit (>= 0.36) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.CommandLineParsing (5.18) - restriction: || (>= net462) (>= netstandard2.0) - FParsec (>= 1.0.3) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Context (5.18) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Environment (5.18) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.FakeVar (5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Context (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Process (5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Environment (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.FakeVar (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.String (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Trace (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - System.Diagnostics.Process (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.ReleaseNotes (5.18) - Fake.Core.SemVer (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.String (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.SemVer (5.18) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - System.Runtime.Numerics (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.String (5.18) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Target (5.18) - Fake.Core.CommandLineParsing (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Context (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Environment (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.FakeVar (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Process (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.String (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Trace (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Control.Reactive (>= 4.2) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - System.Reactive.Compatibility (>= 4.2) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Tasks (5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Trace (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Trace (5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Environment (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.FakeVar (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Xml (5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.String (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: && (< net462) (>= netstandard2.0) - System.Xml.XDocument (>= 4.3) - restriction: && (< net462) (>= netstandard2.0) - System.Xml.XPath (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) - System.Xml.XPath.XDocument (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) - System.Xml.XPath.XmlDocument (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) - Fake.DotNet.AssemblyInfoFile (5.18) - Fake.Core.Environment (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.String (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Trace (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - Fake.DotNet.Cli (5.18) - Fake.Core.Environment (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Process (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.String (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Trace (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.DotNet.MSBuild (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.DotNet.NuGet (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - Newtonsoft.Json (>= 12.0.2) - restriction: || (>= net462) (>= netstandard2.0) - Fake.DotNet.FSFormatting (5.18) - Fake.Core.Process (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - Fake.DotNet.MSBuild (5.18) - BlackFox.VsWhere (>= 1.0) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Environment (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Process (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.String (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Trace (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - MSBuild.StructuredLogger (>= 2.0.110) - restriction: || (>= net462) (>= netstandard2.0) - Fake.DotNet.NuGet (5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Environment (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Process (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.SemVer (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.String (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Tasks (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Trace (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Xml (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Net.Http (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - Newtonsoft.Json (>= 12.0.2) - restriction: || (>= net462) (>= netstandard2.0) - NuGet.Protocol (>= 4.9.4) - restriction: || (>= net462) (>= netstandard2.0) - System.Net.Http (>= 4.3.4) - restriction: || (>= net462) (>= netstandard2.0) - Fake.DotNet.Paket (5.17) - Fake.Core.Process (>= 5.17) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.String (>= 5.17) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Trace (>= 5.17) - restriction: || (>= net462) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.17) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - Fake.DotNet.Testing.Expecto (5.18) - Fake.Core.Process (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.String (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Trace (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Testing.Common (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - Fake.IO.FileSystem (5.18) - Fake.Core.String (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - System.Diagnostics.FileVersionInfo (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) - System.IO.FileSystem.Watcher (>= 4.3) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Net.Http (5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Trace (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - System.Net.Http (>= 4.3.4) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Testing.Common (5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Trace (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Tools.Git (5.18) - Fake.Core.Environment (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Process (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.SemVer (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.String (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.Core.Trace (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - Fake.IO.FileSystem (>= 5.18) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.7) - restriction: || (>= net462) (>= netstandard2.0) - FParsec (1.0.3) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.0.0.1) - restriction: >= net40 - FSharp.Core (>= 4.2.3) - restriction: && (< net40) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net40) (>= netstandard1.6) - FSharp.Control.Reactive (4.2) - restriction: || (>= net462) (>= netstandard2.0) - FSharp.Core (>= 4.2.3) - restriction: || (>= net46) (>= netstandard2.0) - System.Reactive (>= 4.0) - restriction: || (>= net46) (>= netstandard2.0) - FSharp.Core (4.7) - restriction: || (>= net462) (>= netstandard2.0) - Microsoft.Build (16.3) - restriction: || (>= net462) (>= netstandard2.0) - Microsoft.Build.Framework (>= 16.3) - restriction: || (>= net472) (>= netcoreapp2.1) - Microsoft.VisualStudio.Setup.Configuration.Interop (>= 1.16.30) - restriction: >= net472 - Microsoft.Win32.Registry (>= 4.3) - restriction: >= netcoreapp2.1 - System.Collections.Immutable (>= 1.5) - restriction: || (>= net472) (>= netcoreapp2.1) - System.Diagnostics.TraceSource (>= 4.0) - restriction: >= netcoreapp2.1 - System.Memory (>= 4.5.3) - restriction: || (>= net472) (>= netcoreapp2.1) - System.Reflection.Metadata (>= 1.6) - restriction: >= netcoreapp2.1 - System.Reflection.TypeExtensions (>= 4.1) - restriction: >= netcoreapp2.1 - System.Runtime.Loader (>= 4.0) - restriction: >= netcoreapp2.1 - System.Security.Principal.Windows (>= 4.3) - restriction: >= netcoreapp2.1 - System.Text.Encoding.CodePages (>= 4.0.1) - restriction: >= netcoreapp2.1 - System.Threading.Tasks.Dataflow (>= 4.9) - restriction: || (>= net472) (>= netcoreapp2.1) - Microsoft.Build.Framework (16.3) - restriction: || (>= net462) (>= netstandard2.0) - System.Runtime.Serialization.Primitives (>= 4.1.1) - restriction: && (< net472) (>= netstandard2.0) - System.Threading.Thread (>= 4.0) - restriction: && (< net472) (>= netstandard2.0) - Microsoft.Build.Tasks.Core (16.3) - restriction: || (>= net462) (>= netstandard2.0) - Microsoft.Build.Framework (>= 16.3) - restriction: >= netstandard2.0 - Microsoft.Build.Utilities.Core (>= 16.3) - restriction: >= netstandard2.0 - Microsoft.VisualStudio.Setup.Configuration.Interop (>= 1.16.30) - restriction: >= net472 - Microsoft.Win32.Registry (>= 4.3) - restriction: && (< net472) (>= netstandard2.0) - System.CodeDom (>= 4.4) - restriction: && (< net472) (>= netstandard2.0) - System.Collections.Immutable (>= 1.5) - restriction: >= netstandard2.0 - System.Linq.Parallel (>= 4.0.1) - restriction: && (< net472) (>= netstandard2.0) - System.Net.Http (>= 4.3.4) - restriction: && (< net472) (>= netstandard2.0) - System.Reflection.Metadata (>= 1.6) - restriction: && (< net472) (>= netstandard2.0) - System.Reflection.TypeExtensions (>= 4.1) - restriction: && (< net472) (>= netstandard2.0) - System.Resources.Extensions (>= 4.6) - restriction: >= netstandard2.0 - System.Resources.Writer (>= 4.0) - restriction: && (< net472) (>= netstandard2.0) - System.Threading.Tasks.Dataflow (>= 4.9) - restriction: >= netstandard2.0 - Microsoft.Build.Utilities.Core (16.3) - restriction: || (>= net462) (>= netstandard2.0) - Microsoft.Build.Framework (>= 16.3) - restriction: >= netstandard2.0 - Microsoft.VisualStudio.Setup.Configuration.Interop (>= 1.16.30) - restriction: >= net472 - Microsoft.Win32.Registry (>= 4.3) - restriction: && (< net472) (>= netstandard2.0) - System.Collections.Immutable (>= 1.5) - restriction: >= netstandard2.0 - System.Text.Encoding.CodePages (>= 4.0.1) - restriction: && (< net472) (>= netstandard2.0) - Microsoft.NETCore.Platforms (3.0) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net45) (< netstandard1.3) (>= netstandard2.0)) (&& (< net40) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net40) (>= net461) (>= netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard2.0)) (&& (< net40) (< netstandard1.0) (>= netstandard2.0) (< portable-net45+win8)) (&& (< net40) (< netstandard1.0) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net40) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net462)) (&& (>= net462) (< netstandard1.0) (>= netstandard1.6) (>= win8)) (&& (>= net462) (< netstandard1.3) (>= netstandard1.6) (>= wpa81)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= net462) (>= netstandard1.6) (>= wp8)) (>= netcoreapp2.0) (&& (>= netcoreapp2.1) (< netcoreapp3.0)) (&& (< netstandard1.0) (>= netstandard2.0) (>= win8)) (&& (< netstandard1.3) (>= netstandard2.0) (< win8) (>= wpa81)) (&& (>= netstandard2.0) (>= uap10.0)) (&& (>= netstandard2.0) (>= wp8)) - Microsoft.NETCore.Targets (3.0) - restriction: || (&& (< monoandroid) (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= net462)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) - Microsoft.VisualStudio.Setup.Configuration.Interop (1.16.30) - restriction: >= net472 - Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + Microsoft.CSharp (4.7) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) + System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) + System.Reflection.TypeExtensions (>= 4.7) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Platforms (3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6) (< win8)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net461) (< netstandard1.3)) (&& (< net20) (>= net461) (< netstandard2.0)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< portable-net45+win8)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (>= netcoreapp2.0) (< netstandard1.3)) (&& (>= netcoreapp2.0) (< netstandard2.0)) (&& (< netstandard1.0) (>= netstandard1.3) (>= win8)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= uap10.0)) (>= uap10.1) (>= wp8) + Microsoft.NETCore.Targets (3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6) (< win8)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< win81) (< wpa81)) + Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - Microsoft.Win32.Registry (4.6) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net46) (>= net462)) (&& (< net472) (>= netstandard2.0)) (>= netcoreapp2.1) - System.Security.AccessControl (>= 4.6) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - System.Security.Principal.Windows (>= 4.6) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - MSBuild.StructuredLogger (2.0.110) - restriction: || (>= net462) (>= netstandard2.0) - Microsoft.Build (>= 14.3) - restriction: >= net46 - Microsoft.Build (>= 15.8.166) - restriction: && (< net46) (>= netstandard2.0) - Microsoft.Build.Framework (>= 14.3) - restriction: >= net46 - Microsoft.Build.Framework (>= 15.8.166) - restriction: && (< net46) (>= netstandard2.0) - Microsoft.Build.Tasks.Core (>= 14.3) - restriction: >= net46 - Microsoft.Build.Tasks.Core (>= 15.8.166) - restriction: && (< net46) (>= netstandard2.0) - Microsoft.Build.Utilities.Core (>= 14.3) - restriction: >= net46 - Microsoft.Build.Utilities.Core (>= 15.8.166) - restriction: && (< net46) (>= netstandard2.0) - NETStandard.Library (2.0.3) - restriction: || (&& (< net40) (>= net462) (>= netstandard1.6)) (&& (< net40) (>= netstandard2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netcoreapp2.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (>= uap10.0) (>= wp8) - Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.AppContext (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Console (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Net.Http (>= 4.3.2) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Net.Sockets (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.ObjectModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Threading.Timer (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - Newtonsoft.Json (12.0.2) - restriction: || (>= net462) (>= netstandard2.0) - NuGet.Common (5.3) - restriction: >= netstandard2.0 - NuGet.Frameworks (>= 5.3) - restriction: >= netstandard2.0 - System.Diagnostics.Process (>= 4.3) - restriction: && (< net472) (>= netstandard2.0) - System.Threading.Thread (>= 4.3) - restriction: && (< net472) (>= netstandard2.0) - NuGet.Configuration (5.3) - restriction: >= netstandard2.0 - NuGet.Common (>= 5.3) - restriction: >= netstandard2.0 - System.Security.Cryptography.ProtectedData (>= 4.3) - restriction: && (< net472) (>= netstandard2.0) - NuGet.Frameworks (5.3) - restriction: >= netstandard2.0 - NuGet.Packaging (5.3) - restriction: >= netstandard2.0 - Newtonsoft.Json (>= 9.0.1) - restriction: >= netstandard2.0 - NuGet.Configuration (>= 5.3) - restriction: >= netstandard2.0 - NuGet.Versioning (>= 5.3) - restriction: >= netstandard2.0 - System.Dynamic.Runtime (>= 4.3) - restriction: && (< net472) (>= netstandard2.0) - NuGet.Protocol (5.3) - restriction: || (>= net462) (>= netstandard2.0) - NuGet.Packaging (>= 5.3) - restriction: >= netstandard2.0 - System.Dynamic.Runtime (>= 4.3) - restriction: && (< net472) (>= netstandard2.0) - NuGet.Versioning (5.3) - restriction: >= netstandard2.0 - Octokit (0.36) - restriction: || (>= net462) (>= netstandard2.0) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) - runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) - runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) - runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) - runtime.native.System (4.3.1) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net46) (>= net462)) (>= netcoreapp2.1) + NETStandard.Library (2.0.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netcoreapp2.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= uap10.0)) (>= uap10.1) (>= wp8) + Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.AppContext (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Console (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Net.Http (>= 4.3.2) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Net.Sockets (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.ObjectModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Threading.Timer (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + Newtonsoft.Json (12.0.3) + Microsoft.CSharp (>= 4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) + System.ComponentModel.TypeConverter (>= 4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) + System.Runtime.Serialization.Formatters (>= 4.3) - restriction: && (< net20) (>= netstandard1.3) (< netstandard2.0) + System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) + System.Xml.XmlDocument (>= 4.3) - restriction: && (< net20) (>= netstandard1.3) (< netstandard2.0) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< portable-net45+win8)) (&& (< netstandard1.3) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1.1) + Microsoft.NETCore.Targets (>= 1.1.3) + runtime.native.System.IO.Compression (4.3.2) - restriction: && (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81) Microsoft.NETCore.Platforms (>= 1.1.1) Microsoft.NETCore.Targets (>= 1.1.3) - runtime.native.System.Net.Http (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) + runtime.native.System.Net.Http (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Platforms (>= 1.1.1) Microsoft.NETCore.Targets (>= 1.1.3) - runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) + runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) @@ -408,88 +167,111 @@ NUGET runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) - runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) - runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) - System.AppContext (4.3) - restriction: || (&& (< net40) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + SwaggerProvider (0.10) + FSharp.Core (>= 4.3.4) + Newtonsoft.Json (>= 12.0.3 < 12.1) + System.Net.Http (>= 4.3.4 < 4.4) + System.AppContext (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) - System.Buffers (4.5) - restriction: || (&& (< monoandroid) (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (< net40) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (>= net472) (&& (< netcoreapp2.0) (>= netcoreapp2.1)) (&& (>= netcoreapp2.1) (< netstandard1.1)) (&& (>= netcoreapp2.1) (< netstandard2.0)) (&& (>= netcoreapp2.1) (>= xamarinios)) (&& (>= netcoreapp2.1) (>= xamarinmac)) (&& (>= netcoreapp2.1) (>= xamarintvos)) (&& (>= netcoreapp2.1) (>= xamarinwatchos)) (&& (>= netstandard2.0) (>= uap10.0)) - System.CodeDom (4.6) - restriction: && (< net472) (>= netstandard2.0) - System.Collections (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0)) + System.Buffers (4.5) - restriction: || (&& (>= monoandroid) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (>= monoandroid) (>= net46) (< netstandard1.6)) (&& (>= monoandroid) (>= uap10.1)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= net46)) (&& (>= monotouch) (< netstandard1.6)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= monotouch) (>= uap10.1)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (>= net45) (>= uap10.1)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (>= netstandard1.6) (< netstandard2.0) (>= wpa81)) (&& (>= net46) (< netstandard1.6) (>= wpa81)) (&& (>= net46) (>= xamarinios)) (&& (>= net46) (>= xamarinmac)) (&& (>= net46) (>= xamarintvos)) (&& (>= net46) (>= xamarinwatchos)) (&& (>= net461) (>= uap10.1)) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (< netstandard1.1) (>= uap10.1) (< win8)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (>= netstandard1.6) (>= uap10.1)) (&& (< netstandard1.6) (>= xamarinios)) (&& (< netstandard1.6) (>= xamarinmac)) (&& (< netstandard1.6) (>= xamarintvos)) (&& (< netstandard1.6) (>= xamarinwatchos)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (&& (< netstandard2.0) (>= xamarinios)) (&& (< netstandard2.0) (>= xamarinmac)) (&& (>= uap10.1) (< win8) (< wpa81)) (&& (>= uap10.1) (>= xamarinios)) (&& (>= uap10.1) (>= xamarinmac)) (&& (>= uap10.1) (>= xamarintvos)) (&& (>= uap10.1) (>= xamarinwatchos)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) + System.Diagnostics.Tracing (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) + System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) + System.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) + System.Collections (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Collections.Concurrent (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net45) (>= net462) (< netstandard1.6)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) - System.Collections.Immutable (1.6) - restriction: || (&& (< net46) (>= net462)) (&& (>= net462) (< netstandard1.1)) (&& (>= net462) (>= wpa81)) (>= netstandard2.0) - System.Memory (>= 4.5.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (>= net46) (>= uap10.1) - System.ComponentModel (4.3) - restriction: || (&& (>= net462) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) - System.Console (4.3.1) - restriction: || (&& (< net40) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Collections.Concurrent (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Tracing (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) + System.Collections.NonGeneric (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections.Specialized (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) + System.Collections.NonGeneric (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.ComponentModel (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) + System.ComponentModel.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< netstandard1.0) (>= netstandard1.3) (>= win8)) (&& (>= netstandard1.3) (< netstandard2.0) (>= wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= wp8) + System.ComponentModel (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.ComponentModel.TypeConverter (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) + System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) + System.Collections.NonGeneric (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net462) + System.Collections.Specialized (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.ComponentModel (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) + System.ComponentModel.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8)) (&& (>= net45) (< netstandard1.5)) (>= net462) (&& (< netstandard1.0) (>= win8)) (>= wp8) (>= wpa81) + System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) + System.Linq (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) + System.Reflection.TypeExtensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) + System.Console (4.3.1) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1.2) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Debug (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net45) (>= net462) (< netstandard1.6)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0)) + System.Diagnostics.Debug (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Diagnostics.DiagnosticSource (4.6) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net45) (>= net462) (< netstandard1.6)) + System.Diagnostics.DiagnosticSource (4.7) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) System.Memory (>= 4.5.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (< netstandard1.3)) (&& (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (>= net46) (>= uap10.1) - System.Diagnostics.FileVersionInfo (4.3) - restriction: || (>= net462) (>= netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.Metadata (>= 1.4.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Process (4.3) - restriction: || (>= net462) (>= netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - Microsoft.Win32.Registry (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) - System.IO.FileSystem (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) - System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.Thread (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.ThreadPool (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Tools (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) - System.Diagnostics.TraceSource (4.3) - restriction: >= netcoreapp2.1 - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Tracing (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net45) (>= net462) (< netstandard1.6)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) + System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) + System.Diagnostics.Tools (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Tracing (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) - System.Dynamic.Runtime (4.3) - restriction: || (&& (>= net462) (>= uap10.0)) (&& (< net472) (>= netstandard2.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Dynamic.Runtime (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Linq (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -504,30 +286,45 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Globalization (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net45) (>= net462)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0)) + System.Globalization (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (>= uap10.1) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Globalization.Calendars (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net46) (>= net462) (>= netstandard1.6)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Globalization.Calendars (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Globalization.Extensions (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) + System.Globalization.Extensions (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0)) + System.IO (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.5) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) - System.IO.Compression (4.3) - restriction: || (&& (< net40) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) - System.IO.Compression.ZipFile (4.3) - restriction: || (&& (< net40) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.IO.Compression (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.IO.Compression (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Buffers (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) + System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.Compression.ZipFile (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) System.Buffers (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO.Compression (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -537,7 +334,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.IO.FileSystem (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -546,50 +343,46 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) - System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem.Watcher (4.3) - restriction: || (>= net462) (>= netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.Overlapped (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.Thread (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Linq (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Linq (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Linq.Expressions (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) - System.Linq.Parallel (4.3) - restriction: && (< net472) (>= netstandard2.0) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Tracing (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) - System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) - System.Linq.Queryable (4.3) - restriction: || (&& (>= net462) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) - System.Memory (4.5.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net46) (>= netstandard2.0)) (&& (< net45) (>= net462) (< netstandard1.3)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net45) (>= net462) (< netstandard1.6)) (&& (< net45) (>= net462) (>= netstandard2.0)) (&& (>= net462) (>= uap10.1)) (>= net472) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (< xamarinios) (< xamarinmac)) + System.Linq.Expressions (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Linq (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.ObjectModel (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Reflection.Emit (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.Lightweight (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.TypeExtensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Memory (4.5.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.1)) (&& (>= uap10.1) (< win8) (< wpa81)) System.Buffers (>= 4.4) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (>= monotouch) (&& (>= net45) (< netstandard2.0)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (< uap10.1) (>= wpa81)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos) System.Numerics.Vectors (>= 4.4) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (>= net461) + System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos) System.Runtime.CompilerServices.Unsafe (>= 4.5.2) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (>= monotouch) (&& (>= net45) (< netstandard2.0)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (>= net461) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (>= wpa81)) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - System.Net.Http (4.3.4) - restriction: || (>= net462) (>= netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Net.Http (4.3.4) Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81) runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -600,6 +393,7 @@ NUGET System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) System.Globalization.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.IO.Compression (>= 4.3) - restriction: && (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81) System.IO.FileSystem (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Net.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) @@ -607,146 +401,123 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Runtime.WindowsRuntime (>= 4.3) - restriction: false System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (>= net46) System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Text.Encoding.Extensions (>= 4.3) - restriction: false System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) - System.Net.Primitives (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net45) (>= net462) (< netstandard1.3)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (< net45) (>= net462) (< netstandard1.6)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Net.Primitives (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) System.Runtime (>= 4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8)) System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Net.Sockets (4.3) - restriction: || (&& (< net40) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Net.Sockets (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Net.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Numerics.Vectors (4.5) - restriction: || (&& (>= net461) (>= netcoreapp2.1)) (>= net472) (&& (< netcoreapp2.0) (>= netcoreapp2.1)) - System.ObjectModel (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) - System.Reactive (4.2) - restriction: || (>= net462) (>= netstandard2.0) - System.ComponentModel (>= 4.0.1) - restriction: && (>= uap10.0) (< uap10.1) - System.Dynamic.Runtime (>= 4.0.11) - restriction: && (>= uap10.0) (< uap10.1) - System.Linq.Queryable (>= 4.0.1) - restriction: && (>= uap10.0) (< uap10.1) - System.Runtime.InteropServices.WindowsRuntime (>= 4.3) - restriction: && (< net46) (< netcoreapp3.0) (>= netstandard2.0) (< uap10.0) - System.Threading.Tasks.Extensions (>= 4.5.3) - restriction: || (>= net46) (&& (< netcoreapp3.0) (>= netstandard2.0)) (>= uap10.0) - System.ValueTuple (>= 4.5) - restriction: || (>= net46) (&& (>= uap10.0) (< uap10.1)) - System.Reactive.Compatibility (4.2) - restriction: || (>= net462) (>= netstandard2.0) - System.Reactive.Core (>= 4.2) - restriction: || (>= net45) (>= netstandard1.3) - System.Reactive.Experimental (>= 4.2) - restriction: >= net45 - System.Reactive.Interfaces (>= 4.2) - restriction: || (>= net45) (>= netstandard1.3) - System.Reactive.Linq (>= 4.2) - restriction: || (>= net45) (>= netstandard1.3) - System.Reactive.PlatformServices (>= 4.2) - restriction: || (>= net45) (>= netstandard1.3) - System.Reactive.Providers (>= 4.2) - restriction: || (>= net45) (>= netstandard1.3) - System.Reactive.Runtime.Remoting (>= 4.2) - restriction: >= net45 - System.Reactive.Windows.Forms (>= 4.2) - restriction: >= net45 - System.Reactive.Windows.Threading (>= 4.2) - restriction: || (>= net45) (>= uap10.0) - System.Reactive.WindowsRuntime (>= 4.2) - restriction: >= uap10.0 - System.Reactive.Core (4.2) - restriction: || (>= net462) (>= netstandard2.0) - System.Reactive (>= 4.2) - restriction: || (>= net46) (>= netstandard2.0) (>= uap10.0) - System.Threading.Tasks.Extensions (>= 4.5.3) - restriction: || (>= net46) (>= netstandard2.0) (>= uap10.0) - System.Reactive.Experimental (4.2) - restriction: || (&& (>= net45) (>= netstandard2.0)) (>= net462) - System.Reactive (>= 4.2) - restriction: >= net46 - System.Threading.Tasks.Extensions (>= 4.5.3) - restriction: >= net46 - System.Reactive.Interfaces (4.2) - restriction: || (>= net462) (>= netstandard2.0) - System.Reactive (>= 4.2) - restriction: || (>= net46) (>= netstandard2.0) (>= uap10.0) - System.Threading.Tasks.Extensions (>= 4.5.3) - restriction: || (>= net46) (>= netstandard2.0) (>= uap10.0) - System.Reactive.Linq (4.2) - restriction: || (>= net462) (>= netstandard2.0) - System.Reactive (>= 4.2) - restriction: || (>= net46) (>= netstandard2.0) (>= uap10.0) - System.Threading.Tasks.Extensions (>= 4.5.3) - restriction: || (>= net46) (>= netstandard2.0) (>= uap10.0) - System.Reactive.PlatformServices (4.2) - restriction: || (>= net462) (>= netstandard2.0) - System.Reactive (>= 4.2) - restriction: || (>= net46) (>= netstandard2.0) (>= uap10.0) - System.Threading.Tasks.Extensions (>= 4.5.3) - restriction: || (>= net46) (>= netstandard2.0) (>= uap10.0) - System.Reactive.Providers (4.2) - restriction: || (>= net462) (>= netstandard2.0) - System.Reactive (>= 4.2) - restriction: || (>= net46) (>= netstandard2.0) (>= uap10.0) - System.Threading.Tasks.Extensions (>= 4.5.3) - restriction: || (>= net46) (>= netstandard2.0) (>= uap10.0) - System.Reactive.Runtime.Remoting (4.2) - restriction: || (&& (>= net45) (>= netstandard2.0)) (>= net462) - System.Reactive (>= 4.2) - restriction: >= net46 - System.Threading.Tasks.Extensions (>= 4.5.3) - restriction: >= net46 - System.Reactive.Windows.Forms (4.2) - restriction: || (&& (>= net45) (>= netstandard2.0)) (>= net462) - System.Reactive (>= 4.2) - restriction: >= net46 - System.Threading.Tasks.Extensions (>= 4.5.3) - restriction: >= net46 - System.Reactive.Windows.Threading (4.2) - restriction: || (&& (>= net45) (>= netstandard2.0)) (>= net462) (&& (>= netstandard2.0) (>= uap10.0)) - System.Reactive (>= 4.2) - restriction: || (>= net46) (>= uap10.0) - System.Threading.Tasks.Extensions (>= 4.5.3) - restriction: || (>= net46) (>= uap10.0) - System.Reactive.WindowsRuntime (4.2) - restriction: || (&& (>= net462) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) - System.Reactive (>= 4.2) - restriction: >= uap10.0 - System.Threading.Tasks.Extensions (>= 4.5.3) - restriction: >= uap10.0 - System.Reflection (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net45) (>= net462)) (&& (< net46) (>= net462) (>= netstandard1.6)) (&& (>= net462) (>= netcoreapp1.1)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netcoreapp1.1) (>= netstandard2.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0)) + System.Numerics.Vectors (4.5) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net46) (>= netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1)) + System.ObjectModel (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) + System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< portable-net45+win8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) - System.Reflection.Emit (4.6) - restriction: && (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) - System.Reflection.Emit.ILGeneration (>= 4.6) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarinios) (< xamarinmac)) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (>= wpa81)) (>= uap10.1) - System.Reflection.Emit.ILGeneration (4.6) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= netstandard2.0) (>= uap10.1) (< win8) (< wpa81)) - System.Reflection.Extensions (4.3) - restriction: || (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) - System.Reflection.Metadata (1.7) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net46) (>= net462)) (&& (< net472) (>= netstandard2.0)) (>= netcoreapp2.1) - System.Collections.Immutable (>= 1.6) - restriction: || (>= net45) (&& (< netcoreapp3.0) (>= netstandard2.0)) (&& (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (>= wpa81)) - System.Reflection.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net45) (>= net462)) (&& (>= net462) (>= netcoreapp1.1)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netcoreapp1.1) (>= netstandard2.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Reflection.Emit (4.7) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) + System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (>= 4.7) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarinios) (< xamarinmac)) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (>= wpa81)) (>= uap10.1) + System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (4.7) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+wp8) (< win8)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.2) (>= netstandard1.6) (< win8) (>= wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.3) (>= netstandard2.0) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81) (< portable-net45+wp8) (>= win8)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81) (>= wpa81)) (&& (>= netstandard1.6) (< portable-net45+wp8) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.1)) (&& (>= uap10.1) (< win8) (< wpa81)) + System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wp8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wp8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wp8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wp8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.Lightweight (4.7) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) + System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wp8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Emit.ILGeneration (>= 4.7) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wp8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarinios) (< xamarinmac)) (&& (< netstandard2.0) (>= wpa81)) (&& (>= portable-net45+win8+wp8+wpa81) (< portable-net45+wp8) (< win8)) (&& (< portable-net45+wp8) (>= win8)) (>= uap10.1) + System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wp8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wp8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wp8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Extensions (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< portable-net45+win8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection.TypeExtensions (4.6) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< net472) (>= netstandard2.0)) (>= netcoreapp2.1) - System.Resources.Extensions (4.6) - restriction: >= netstandard2.0 - System.Memory (>= 4.5.3) - restriction: && (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) - System.Resources.ResourceManager (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net45) (>= net462)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0)) + System.Reflection.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (>= netcoreapp1.1) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.TypeExtensions (4.7) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) + System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5) (< uap10.1)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5) (< uap10.1)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5) (< uap10.1)) + System.Resources.ResourceManager (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< portable-net45+win8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.Writer (4.3) - restriction: && (< net472) (>= netstandard2.0) - System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net45) (>= net462)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netcoreapp1.1) (< netstandard1.2)) (&& (>= net462) (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= net462) (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= net462) (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= net462) (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= net462) (>= netcoreapp1.1) (< portable-net45+win8+wpa81)) (&& (>= net462) (>= netcoreapp1.1) (>= uap10.0)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netcoreapp1.1) (< netstandard1.2) (>= netstandard2.0)) (&& (>= netcoreapp1.1) (< netstandard1.3) (>= netstandard2.0)) (&& (>= netcoreapp1.1) (< netstandard1.4) (>= netstandard2.0)) (&& (>= netcoreapp1.1) (< netstandard1.5) (>= netstandard2.0)) (&& (>= netcoreapp1.1) (< netstandard1.6) (>= netstandard2.0)) (&& (>= netcoreapp1.1) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0)) + System.Runtime (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6) (< win8)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netcoreapp1.1) (< netstandard1.2)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netcoreapp1.1) (< netstandard1.6)) (&& (>= netcoreapp1.1) (< netstandard2.0)) (&& (>= netcoreapp1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< win81) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) - System.Runtime.CompilerServices.Unsafe (4.6) - restriction: || (&& (< monoandroid) (< netstandard1.0) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= net45) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.1)) (>= net462) (&& (< netcoreapp2.0) (>= netcoreapp2.1)) (&& (>= netcoreapp2.1) (< netcoreapp3.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)) (&& (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< netstandard1.0) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= wp8)) - System.Runtime.Extensions (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net45) (>= net462)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0)) + System.Runtime.CompilerServices.Unsafe (4.7) - restriction: || (&& (>= monoandroid) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (>= monoandroid) (>= net46) (< netstandard1.6)) (&& (>= monoandroid) (>= uap10.1)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.5) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= net46)) (&& (>= monotouch) (< netstandard1.6)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= monotouch) (>= uap10.1)) (&& (< net20) (>= net45) (< netstandard1.2) (>= netstandard1.3)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.4)) (&& (< net20) (>= net45) (< netstandard1.3) (>= netstandard1.4)) (&& (< net20) (>= net45) (< netstandard1.3) (>= netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= net45) (>= netstandard1.4) (< netstandard1.5)) (&& (< net20) (>= net45) (>= netstandard1.5) (< netstandard1.6)) (&& (< net20) (>= net45) (>= netstandard1.6) (< netstandard2.0)) (&& (< net20) (>= net46) (< netstandard1.0)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= net45) (< netstandard1.3) (>= uap10.0)) (&& (>= net45) (< netstandard1.5) (>= uap10.0)) (&& (>= net45) (>= uap10.1)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (>= net46) (>= netcoreapp2.0)) (&& (>= net46) (< netstandard1.0) (>= win8)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (< netstandard1.3) (>= wpa81)) (&& (>= net46) (< netstandard1.4) (>= wpa81)) (&& (>= net46) (>= netstandard1.6) (< netstandard2.0) (>= wpa81)) (&& (>= net46) (< netstandard1.6) (>= wpa81)) (&& (>= net46) (>= uap10.1)) (&& (>= net46) (>= wp8)) (&& (>= net46) (>= xamarinios)) (&& (>= net46) (>= xamarinmac)) (&& (>= net46) (>= xamarintvos)) (&& (>= net46) (>= xamarinwatchos)) (&& (>= net461) (>= uap10.1)) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (>= netcoreapp2.0) (< netstandard1.6)) (&& (>= netcoreapp2.0) (< netstandard2.0)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (< netstandard1.0) (>= netstandard1.3) (< portable-net45+win8+wpa81) (>= win8)) (&& (< netstandard1.0) (>= uap10.0) (< win8)) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (< netstandard1.1) (>= uap10.1) (< win8)) (&& (< netstandard1.2) (>= netstandard1.3) (< win8) (>= wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81) (>= wpa81)) (&& (>= netstandard1.3) (>= wp8)) (&& (< netstandard1.3) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard1.4) (>= wp8)) (&& (>= netstandard1.5) (>= wp8)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (>= uap10.1)) (&& (>= netstandard1.6) (>= wp8)) (&& (< netstandard1.6) (>= xamarinios)) (&& (< netstandard1.6) (>= xamarinmac)) (&& (< netstandard1.6) (>= xamarintvos)) (&& (< netstandard1.6) (>= xamarinwatchos)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (&& (< netstandard2.0) (>= xamarinios)) (&& (< netstandard2.0) (>= xamarinmac)) (&& (>= uap10.0) (>= wp8)) (&& (>= uap10.1) (< win8) (< wpa81)) (&& (>= uap10.1) (>= xamarinios)) (&& (>= uap10.1) (>= xamarinmac)) (&& (>= uap10.1) (>= xamarintvos)) (&& (>= uap10.1) (>= xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wp8) (< wpa81) + System.Runtime.Extensions (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) System.Runtime (>= 4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) - System.Runtime.Handles (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net462)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netcoreapp1.1)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netcoreapp1.1) (>= netstandard2.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Runtime.Handles (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.InteropServices (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Runtime.InteropServices (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< portable-net45+win8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= net462) (>= netcoreapp1.1) System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1) - System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (< net40) (>= net45) (< netstandard1.3) (>= netstandard2.0)) (&& (< net40) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net40) (>= net462) (< netstandard1.0) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (< netstandard1.0) (>= netstandard2.0) (< portable-net45+win8)) (&& (< net40) (< netstandard1.0) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net462) (< netstandard1.0) (>= netstandard1.6) (>= win8)) (&& (>= net462) (< netstandard1.3) (>= netstandard1.6) (>= wpa81)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.0) (>= netstandard2.0) (>= win8)) (&& (< netstandard1.3) (>= netstandard2.0) (< win8) (>= wpa81)) (&& (>= netstandard2.0) (>= uap10.0)) - System.Runtime.InteropServices.WindowsRuntime (4.3) - restriction: || (&& (< net46) (>= net462) (>= netstandard2.0)) (&& (< net46) (< netcoreapp3.0) (>= netstandard2.0) (< uap10.0)) - System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Loader (4.3) - restriction: >= netcoreapp2.1 - System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Numerics (4.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< portable-net45+win8)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.0) (>= netstandard1.3) (>= win8)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Numerics (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Serialization.Primitives (4.3) - restriction: && (< net472) (>= netstandard2.0) + System.Runtime.Serialization.Formatters (4.3) - restriction: && (< net20) (>= netstandard1.3) (< netstandard2.0) + System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) + System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netstandard1.3) (< netstandard1.4)) (>= net46) + System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4)) (&& (< net20) (>= net46) (< netstandard2.0)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Security.AccessControl (4.6) - restriction: >= netcoreapp2.1 - Microsoft.NETCore.Platforms (>= 3.0) - restriction: >= netcoreapp2.0 - System.Security.Principal.Windows (>= 4.6) - restriction: || (&& (>= net46) (< netstandard2.0)) (&& (< net46) (>= netstandard1.3) (< netstandard2.0) (< uap10.1)) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) - System.Security.Cryptography.Algorithms (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (>= net461) (>= netstandard2.0)) (>= net462) (&& (>= netstandard2.0) (>= uap10.0)) + System.Runtime.WindowsRuntime (4.7) - restriction: false + System.Security.Cryptography.Algorithms (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -761,9 +532,19 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.6)) (>= net463) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Cng (4.6) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net46) (>= net462) (>= netstandard1.6)) - Microsoft.NETCore.Platforms (>= 3.0) - restriction: && (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1) - System.Security.Cryptography.Csp (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net46) (>= net462) (>= netstandard1.6)) + System.Security.Cryptography.Cng (4.7) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Platforms (>= 3.1) - restriction: && (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) (&& (>= net46) (< netstandard1.4)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) (&& (>= net46) (< netstandard1.4)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) + System.Security.Cryptography.Csp (4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -777,7 +558,7 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (>= net461) (>= netstandard2.0)) (>= net462) (&& (>= netstandard2.0) (>= uap10.0)) + System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net463) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -790,9 +571,21 @@ NUGET System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.OpenSsl (4.6) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net45) (>= net462) (>= netstandard1.6)) - Microsoft.NETCore.Platforms (>= 3.0) - restriction: && (>= netcoreapp2.0) (< netcoreapp2.1) - System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net462) (>= netstandard1.6)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Security.Cryptography.OpenSsl (4.7) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Platforms (>= 3.1) - restriction: && (>= netcoreapp2.0) (< netcoreapp2.1) + System.Collections (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.IO (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Runtime (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Runtime.Handles (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Runtime.InteropServices (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Runtime.Numerics (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Text.Encoding (>= 4.3) - restriction: && (>= netstandard1.6) (< netstandard2.0) + System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -800,9 +593,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.ProtectedData (4.6) - restriction: && (< net472) (>= netstandard2.0) - System.Memory (>= 4.5.3) - restriction: && (< net46) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) - System.Security.Cryptography.X509Certificates (4.3.2) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (>= netstandard2.0)) (>= net462) (&& (>= netstandard2.0) (>= uap10.0)) + System.Security.Cryptography.X509Certificates (4.3.2) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (>= net46) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -828,50 +619,35 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Principal.Windows (4.6) - restriction: >= netcoreapp2.1 - Microsoft.NETCore.Platforms (>= 3.0) - restriction: || (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (>= netcoreapp2.1) (< netcoreapp3.0)) - System.Text.Encoding (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net45) (>= net462)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Text.Encoding.CodePages (4.6) - restriction: || (&& (< net472) (>= netstandard2.0)) (>= netcoreapp2.1) - Microsoft.NETCore.Platforms (>= 3.0) - restriction: >= netcoreapp2.0 - System.Runtime.CompilerServices.Unsafe (>= 4.6) - restriction: || (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (>= net461) (&& (>= netcoreapp2.0) (< netcoreapp3.0)) - System.Text.Encoding.Extensions (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Text.Encoding (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Text.RegularExpressions (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Text.Encoding.Extensions (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) + System.Text.RegularExpressions (4.3.1) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (>= netcoreapp1.1) System.Runtime.Extensions (>= 4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0)) + System.Threading (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.0) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (< netstandard1.0) (>= netstandard1.3) (< portable-net45+win8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Threading.Overlapped (4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net46) (>= net462)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< net46) (>= netstandard1.3) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Runtime (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Runtime.Handles (>= 4.3) - restriction: && (< net46) (>= netstandard1.3) - System.Threading.Tasks (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net45) (>= net462)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Threading.Tasks (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Threading.Tasks.Dataflow (4.10) - restriction: >= netstandard2.0 - System.Threading.Tasks.Extensions (4.5.3) - restriction: || (>= net462) (>= netstandard2.0) + System.Threading.Tasks.Extensions (4.5.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) + System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wp8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wp8) (< wpa81) (< xamarintvos) (< xamarinwatchos) System.Runtime.CompilerServices.Unsafe (>= 4.5.2) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< win8)) (>= net45) (&& (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard2.0) (>= wpa81)) (>= wp8) - System.Threading.Thread (4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net46) (>= net462)) (&& (< net472) (>= netstandard2.0)) - System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.ThreadPool (4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net46) (>= net462)) - System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.Timer (4.3) - restriction: || (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) - System.ValueTuple (4.5) - restriction: || (&& (>= net46) (>= netstandard2.0)) (>= net462) (&& (>= netstandard2.0) (>= uap10.0)) - System.Xml.ReaderWriter (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (< net462) (>= netstandard2.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wp8) (< wpa81) (< xamarintvos) (< xamarinwatchos) + System.Threading.Timer (4.3) - restriction: || (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Xml.ReaderWriter (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -887,7 +663,7 @@ NUGET System.Text.RegularExpressions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Threading.Tasks.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Xml.XDocument (4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (< net40) (>= net462) (< netstandard1.2) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.3) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.4) (>= netstandard1.6)) (&& (< net40) (>= net462) (< netstandard1.5) (>= netstandard1.6)) (&& (< net40) (>= net462) (>= netstandard1.6) (< netstandard2.0)) (&& (< net40) (>= net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net40) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net40) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net46) (>= net462)) (&& (>= net462) (>= netstandard1.6) (>= uap10.0)) (&& (< net462) (>= netstandard2.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Xml.XDocument (4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net20) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net20) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Diagnostics.Tools (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -900,7 +676,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Xml.XmlDocument (4.3) - restriction: || (&& (< monoandroid) (>= netstandard2.0) (< xamarinios) (< xamarinmac)) (&& (>= net46) (>= netstandard2.0)) (>= net462) + System.Xml.XmlDocument (4.3) - restriction: && (< net20) (>= netstandard1.3) (< netstandard2.0) System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -911,37 +687,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Xml.XPath (4.3) - restriction: || (>= net462) (>= netstandard2.0) - System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Xml.XPath.XDocument (4.3) - restriction: || (>= net462) (>= netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Linq (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Xml.XDocument (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Xml.XPath (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) - System.Xml.XPath.XmlDocument (4.3) - restriction: || (>= net462) (>= netstandard2.0) - System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) - System.Xml.XPath (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) + YamlDotNet (8.1) GROUP Formatting NUGET diff --git a/paket.references b/paket.references deleted file mode 100644 index 2492401e..00000000 --- a/paket.references +++ /dev/null @@ -1,2 +0,0 @@ -dotnet-fake -docker.dotnet \ No newline at end of file diff --git a/src/BioFSharp.BioContainers/BioFSharp.BioContainers.fsproj b/src/BioFSharp.BioContainers/BioFSharp.BioContainers.fsproj index efb8ca93..7cbe9f1c 100644 --- a/src/BioFSharp.BioContainers/BioFSharp.BioContainers.fsproj +++ b/src/BioFSharp.BioContainers/BioFSharp.BioContainers.fsproj @@ -1,7 +1,17 @@  - net45;net47;netstandard2.0 + netstandard2.0;net45;net47 + + + netstandard2.0 + bin + + + netstandard2.0;net45;net47 + bin + + BioFSharp.BioContainers BioFSharp.BioContainers BioFSharp.BioContainers @@ -13,7 +23,7 @@ true $(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb - Debug;Release;Mono + Debug;Release;Mono;DotnetCore diff --git a/src/BioFSharp.BioDB/BioFSharp.BioDB.fsproj b/src/BioFSharp.BioDB/BioFSharp.BioDB.fsproj index 1c89492b..e137bb7e 100644 --- a/src/BioFSharp.BioDB/BioFSharp.BioDB.fsproj +++ b/src/BioFSharp.BioDB/BioFSharp.BioDB.fsproj @@ -1,6 +1,6 @@  - net45 + net47 BioFSharp.BioDB BioFSharp.BioDB BioFSharp.BioDB @@ -12,7 +12,7 @@ true $(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb - Debug;Release;Mono + Debug;Release;Mono;DotnetCore diff --git a/src/BioFSharp.BioDB/EbiAPI.fs b/src/BioFSharp.BioDB/EbiAPI.fs index 4277ec8a..59f72ea9 100644 --- a/src/BioFSharp.BioDB/EbiAPI.fs +++ b/src/BioFSharp.BioDB/EbiAPI.fs @@ -16,9 +16,9 @@ module EbiAPI = let [] private schemaURL = __SOURCE_DIRECTORY__ + "/Resources/ebiProteinsAPIswagger.json" //"http://www.ebi.ac.uk/proteins/api/swagger.json" - type ProteinsAPIschema = SwaggerProvider // ,EmbeddedResource=("BioFSharp.dll,ebiProteinsAPIswagger.json")> + type ProteinsAPIschema = SwaggerClientProvider // ,EmbeddedResource=("BioFSharp.dll,ebiProteinsAPIswagger.json")> - let private proteinsAPI = ProteinsAPIschema() + let private proteinsAPI = ProteinsAPIschema.Client() /// Access to the uniprot protein data base type UniProteinDB () = @@ -66,147 +66,147 @@ module EbiAPI = //!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! /// Search protein sequence features in UniProt - //static member searchProteinSeqFeature - // ( - // [] - // ?offset : int, - // [] - // ?size : int, - // [] - // ?accession : string, - // [] - // ?reviewed : string, - // [] - // ?gene : string, - // [] - // ?protein : string, - // [] - // ?organism : string, - // [] - // ?taxid : string, - // [] - // ?categories : string, - // [] - // ?types : string - - // ) = - // let accession = defaultArg accession null - // let reviewed = defaultArg reviewed null - // let gene = defaultArg gene null - // let protein = defaultArg protein null - // let organism = defaultArg organism null - // let taxid = defaultArg taxid null - // let categories = defaultArg categories null - // let types = defaultArg types null - // proteinsAPI.Search2(offset,size,accession,reviewed,gene,protein,organism,taxid,categories,types) + static member searchProteinSeqFeature + ( + [] + ?offset : int, + [] + ?size : int, + [] + ?accession : string, + [] + ?reviewed : string, + [] + ?gene : string, + [] + ?protein : string, + [] + ?organism : string, + [] + ?taxid : string, + [] + ?categories : string, + [] + ?types : string + + ) = + let accession = defaultArg accession null + let reviewed = defaultArg reviewed null + let gene = defaultArg gene null + let protein = defaultArg protein null + let organism = defaultArg organism null + let taxid = defaultArg taxid null + let categories = defaultArg categories null + let types = defaultArg types null + proteinsAPI.Search2(offset,size,accession,reviewed,gene,protein,organism,taxid,categories,types) /// Search antigen in UniProt - //static member searchAntigens - // ( - // [] - // ?offset : int, - // [] - // ?size : int, - // [] - // ?accession : string, - // [] - // ?antigenSequence : string, - // [] - // ?antigenID : string, - // [] - // ?ensemblIDs : string, - // [] - // ?matchscore : int - - // ) = - // let accession = defaultArg accession null - // let antigenSequence = defaultArg antigenSequence null - // let antigenID = defaultArg antigenID null - // let ensemblIDs = defaultArg ensemblIDs null + static member searchAntigens + ( + [] + ?offset : int, + [] + ?size : int, + [] + ?accession : string, + [] + ?antigenSequence : string, + [] + ?antigenID : string, + [] + ?ensemblIDs : string, + [] + ?matchscore : int + + ) = + let accession = defaultArg accession null + let antigenSequence = defaultArg antigenSequence null + let antigenID = defaultArg antigenID null + let ensemblIDs = defaultArg ensemblIDs null - // proteinsAPI.Search(offset,size,accession,antigenSequence,antigenID,ensemblIDs,matchscore) + proteinsAPI.Search(offset,size,accession,antigenSequence,antigenID,ensemblIDs,matchscore) /// Search genomic coordinates in UniProt - //static member searchGenomicCoordinates - // ( - // [] - // ?offset : int, - // [] - // ?size : int, - // [] - // ?accession : string, - // [] - // ?chromosome : string, - // [] - // ?ensembl : string, - // [] - // ?gene : string, - // [] - // ?protein : string, - // [] - // ?taxid : string, - // [] - // ?location : string - - // ) = - - // let accession = defaultArg accession null - // let chromosome = defaultArg chromosome null - // let ensembl = defaultArg ensembl null - // let gene = defaultArg gene null - // let protein = defaultArg protein null - // let taxid = defaultArg taxid null - // let location = defaultArg location null + static member searchGenomicCoordinates + ( + [] + ?offset : int, + [] + ?size : int, + [] + ?accession : string, + [] + ?chromosome : string, + [] + ?ensembl : string, + [] + ?gene : string, + [] + ?protein : string, + [] + ?taxid : string, + [] + ?location : string + + ) = + + let accession = defaultArg accession null + let chromosome = defaultArg chromosome null + let ensembl = defaultArg ensembl null + let gene = defaultArg gene null + let protein = defaultArg protein null + let taxid = defaultArg taxid null + let location = defaultArg location null - // proteinsAPI.Search1(offset,size,accession,chromosome,ensembl,gene,protein,taxid,location) + proteinsAPI.Search1(offset,size,accession,chromosome,ensembl,gene,protein,taxid,location) /// Search entries in UniProt - //static member searchEntries - // ( - // [] - // ?offset : int, - // [] - // ?size : int, - // [] - // ?accession : string, - // [] - // ?reviewed : string, - // [] - // ?isoforms : int, - // [] - // ?goterms : string, - // [] - // ?keywords : string, - // [] - // ?ec : string, - // [] - // ?gene : string, - // [] - // ?protein : string, - // [] - // ?organism : string, - // [] - // ?taxid : string, - // [] - // ?pubmed : string - - // ) = - - // let accession = defaultArg accession null - // let reviewed = defaultArg reviewed null - // let goterms = defaultArg goterms null - // let keywords = defaultArg keywords null - // let ec = defaultArg ec null - // let gene = defaultArg gene null - // let protein = defaultArg protein null - // let organism = defaultArg organism null - // let taxid = defaultArg taxid null - // let pubmed = defaultArg pubmed null + static member searchEntries + ( + [] + ?offset : int, + [] + ?size : int, + [] + ?accession : string, + [] + ?reviewed : string, + [] + ?isoforms : int, + [] + ?goterms : string, + [] + ?keywords : string, + [] + ?ec : string, + [] + ?gene : string, + [] + ?protein : string, + [] + ?organism : string, + [] + ?taxid : string, + [] + ?pubmed : string + + ) = + + let accession = defaultArg accession null + let reviewed = defaultArg reviewed null + let goterms = defaultArg goterms null + let keywords = defaultArg keywords null + let ec = defaultArg ec null + let gene = defaultArg gene null + let protein = defaultArg protein null + let organism = defaultArg organism null + let taxid = defaultArg taxid null + let pubmed = defaultArg pubmed null - // proteinsAPI.Search3(offset,size,accession,reviewed,isoforms,goterms,keywords,ec,gene,protein,organism,taxid,pubmed) + proteinsAPI.Search3(offset,size,accession,reviewed,isoforms,goterms,keywords,ec,gene,protein,organism,taxid,pubmed) /// Search proteomes in UniProt static member searchProteomes @@ -246,76 +246,76 @@ module EbiAPI = proteinsAPI.Search4(offset,size,upid,name,taxid,keyword,xref,genomeAcc,isRefProteome,isRedundant) /// Search ProteomicsPeptides in UniProt - //static member searchProteomicsPeptides - // ( - // [] - // ?offset : int, - // [] - // ?size : int, - // [] - // ?accession : string, - // [] - // ?taxid : string, - // [] - // ?upid : string, - // [] - // ?datasource : string, - // [] - // ?peptide : string, - // [] - // ?unique : string - - // ) = - - // let accession = defaultArg accession null - // let taxid = defaultArg taxid null - // let upid = defaultArg upid null - // let datasource = defaultArg datasource null - // let peptide = defaultArg peptide null - // let unique = defaultArg unique null + static member searchProteomicsPeptides + ( + [] + ?offset : int, + [] + ?size : int, + [] + ?accession : string, + [] + ?taxid : string, + [] + ?upid : string, + [] + ?datasource : string, + [] + ?peptide : string, + [] + ?unique : string + + ) = + + let accession = defaultArg accession null + let taxid = defaultArg taxid null + let upid = defaultArg upid null + let datasource = defaultArg datasource null + let peptide = defaultArg peptide null + let unique = defaultArg unique null - // proteinsAPI.Search5(offset,size,accession,taxid,upid,datasource,peptide,unique) + proteinsAPI.Search5(offset,size,accession,taxid,upid,datasource,peptide,unique) /// Search natural variants in UniProt - //static member searchNaturalVariants - // ( - // [] - // ?offset : int, - // [] - // ?size : int, - // [] - // ?accession : string, - // [] - // ?taxid : string, - // [] - // ?sourcetype : string, - // [] - // ?consequencetype : string, - // [] - // ?wildtype : string, - // [] - // ?alternativesequence : string, - // [] - // ?location : string, - // [] - // ?disease : string, - // [] - // ?omim : string, - // [] - // ?evidence : string - - // ) = - - // let accession = defaultArg accession null - // let taxid = defaultArg taxid null - // let sourcetype = defaultArg sourcetype null - // let consequencetype = defaultArg consequencetype null - // let wildtype = defaultArg wildtype null - // let alternativesequence = defaultArg alternativesequence null - // let location = defaultArg location null - // let disease = defaultArg disease null - // let omim = defaultArg omim null - // let evidence = defaultArg evidence null + static member searchNaturalVariants + ( + [] + ?offset : int, + [] + ?size : int, + [] + ?accession : string, + [] + ?taxid : string, + [] + ?sourcetype : string, + [] + ?consequencetype : string, + [] + ?wildtype : string, + [] + ?alternativesequence : string, + [] + ?location : string, + [] + ?disease : string, + [] + ?omim : string, + [] + ?evidence : string + + ) = + + let accession = defaultArg accession null + let taxid = defaultArg taxid null + let sourcetype = defaultArg sourcetype null + let consequencetype = defaultArg consequencetype null + let wildtype = defaultArg wildtype null + let alternativesequence = defaultArg alternativesequence null + let location = defaultArg location null + let disease = defaultArg disease null + let omim = defaultArg omim null + let evidence = defaultArg evidence null - // proteinsAPI.Search6(sourcetype,consequencetype,wildtype,alternativesequence,location,accession,disease,omim,evidence,taxid,offset,size) \ No newline at end of file + proteinsAPI.Search6(sourcetype,consequencetype,wildtype,alternativesequence,location,accession,disease,omim,evidence,taxid,offset,size) \ No newline at end of file diff --git a/src/BioFSharp.BioDB/FaToolDb.fs b/src/BioFSharp.BioDB/FaToolDb.fs index 93a88709..4cfc5ae5 100644 --- a/src/BioFSharp.BioDB/FaToolDb.fs +++ b/src/BioFSharp.BioDB/FaToolDb.fs @@ -1,6 +1,5 @@ namespace BioFSharp.BioDB open FSharp.Data.TypeProviders -open System.Data.Services.Client ///Tools for the odata service FaTools available at http://iomiqsweb1.bio.uni-kl.de/Services/FaToolDbDataService.svc //all credit for the database goes to https://github.com/goedels and https://github.com/luede diff --git a/src/BioFSharp.BioDB/paket.references b/src/BioFSharp.BioDB/paket.references index 4c9cf279..18d9aaaf 100644 --- a/src/BioFSharp.BioDB/paket.references +++ b/src/BioFSharp.BioDB/paket.references @@ -1,6 +1,5 @@ group BioDB -FSharp.Core framework:net45 +FSharp.Core SwaggerProvider -Newtonsoft.Json YamlDotNet FSharp.Data.TypeProviders \ No newline at end of file diff --git a/src/BioFSharp.IO/BioFSharp.IO.fsproj b/src/BioFSharp.IO/BioFSharp.IO.fsproj index e33f1405..3d44103f 100644 --- a/src/BioFSharp.IO/BioFSharp.IO.fsproj +++ b/src/BioFSharp.IO/BioFSharp.IO.fsproj @@ -1,6 +1,14 @@  - net45;net47;netstandard2.0 + netstandard2.0;net45;net47 + + + netstandard2.0 + + + netstandard2.0;net45;net47 + + BioFSharp.IO BioFSharp.IO BioFSharp.IO @@ -12,7 +20,7 @@ true $(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb - Debug;Release;Mono + Debug;Release;Mono;DotnetCore diff --git a/src/BioFSharp.ImgP/BioFSharp.ImgP.fsproj b/src/BioFSharp.ImgP/BioFSharp.ImgP.fsproj index 07d05e80..a161e1ed 100644 --- a/src/BioFSharp.ImgP/BioFSharp.ImgP.fsproj +++ b/src/BioFSharp.ImgP/BioFSharp.ImgP.fsproj @@ -12,7 +12,7 @@ true $(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb - Debug;Release;Mono + Debug;Release;Mono;DotnetCore diff --git a/src/BioFSharp.ML/BioFSharp.ML.fsproj b/src/BioFSharp.ML/BioFSharp.ML.fsproj index ee8b0ae9..563c5b3e 100644 --- a/src/BioFSharp.ML/BioFSharp.ML.fsproj +++ b/src/BioFSharp.ML/BioFSharp.ML.fsproj @@ -13,7 +13,7 @@ true $(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb - Debug;Release;Mono + Debug;Release;Mono;DotnetCore diff --git a/src/BioFSharp.Parallel/BioFSharp.Parallel.fsproj b/src/BioFSharp.Parallel/BioFSharp.Parallel.fsproj index 3ba65d0f..9db22571 100644 --- a/src/BioFSharp.Parallel/BioFSharp.Parallel.fsproj +++ b/src/BioFSharp.Parallel/BioFSharp.Parallel.fsproj @@ -12,7 +12,7 @@ true $(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb - Debug;Release;Mono + Debug;Release;Mono;DotnetCore diff --git a/src/BioFSharp.Stats/BioFSharp.Stats.fsproj b/src/BioFSharp.Stats/BioFSharp.Stats.fsproj index 37457b54..65a0f9ef 100644 --- a/src/BioFSharp.Stats/BioFSharp.Stats.fsproj +++ b/src/BioFSharp.Stats/BioFSharp.Stats.fsproj @@ -1,6 +1,14 @@  - net45;net47;netstandard2.0 + netstandard2.0;net45;net47 + + + netstandard2.0 + + + netstandard2.0;net45;net47 + + BioFSharp.Stats BioFSharp.Stats BioFSharp.Stats @@ -12,7 +20,7 @@ true $(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb - Debug;Release;Mono + Debug;Release;Mono;DotnetCore diff --git a/src/BioFSharp.Vis/Chord.fs b/src/BioFSharp.Vis/Chord.fs index 9fc983d0..68bc4dcf 100644 --- a/src/BioFSharp.Vis/Chord.fs +++ b/src/BioFSharp.Vis/Chord.fs @@ -189,7 +189,13 @@ module Chord = let path = Path.Combine(tempPath, file) File.WriteAllText(path, html) System.Diagnostics.Process.Start(path) |> ignore + - + let saveHtmlAs path tickInterval width height labels clabels data = + let labelString = fromLabel labels + let colorLabelString = fromColorLabel clabels + let guid = System.Guid.NewGuid().ToString() + let html = chord2Scaffold data labelString colorLabelString tickInterval width height + File.WriteAllText(path, html) diff --git a/src/BioFSharp/BioFSharp.fsproj b/src/BioFSharp/BioFSharp.fsproj index 3fcb9b4b..2fc40e55 100644 --- a/src/BioFSharp/BioFSharp.fsproj +++ b/src/BioFSharp/BioFSharp.fsproj @@ -1,6 +1,14 @@  - net45;net47;netstandard2.0 + netstandard2.0;net45;net47 + + + netstandard2.0 + + + netstandard2.0;net45;net47 + + BioFSharp BioFSharp BioFSharp @@ -12,7 +20,7 @@ true $(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb - Debug;Release;Mono + Debug;Release;Mono;DotnetCore diff --git a/tests/BioFSharp.Tests/BioFSharp.Tests.fsproj b/tests/BioFSharp.Tests/BioFSharp.Tests.fsproj index a2fd8f61..7d6757de 100644 --- a/tests/BioFSharp.Tests/BioFSharp.Tests.fsproj +++ b/tests/BioFSharp.Tests/BioFSharp.Tests.fsproj @@ -8,7 +8,7 @@ Exe Properties false - Debug;Release;Mono + Debug;Release;Mono;DotnetCore diff --git a/tests/BioFSharp.Tests/paket.references b/tests/BioFSharp.Tests/paket.references index c73e72f4..7eb88e28 100644 --- a/tests/BioFSharp.Tests/paket.references +++ b/tests/BioFSharp.Tests/paket.references @@ -2,5 +2,4 @@ FSharp.Core Expecto Expecto.BenchmarkDotNet -Expecto.FsCheck -Expecto.VisualStudio.TestAdapter \ No newline at end of file +Expecto.FsCheck \ No newline at end of file From 627585f3a32d908b4e6ddf1ec09a89a8f3449c3e Mon Sep 17 00:00:00 2001 From: kMutagene Date: Wed, 19 Feb 2020 22:24:27 +0100 Subject: [PATCH 6/8] Update all paket.template files --- src/BioFSharp.BioContainers/paket.template | 25 ++++++++++-------- src/BioFSharp.BioDB/paket.template | 28 ++++++++++++-------- src/BioFSharp.IO/paket.template | 27 +++++++++++-------- src/BioFSharp.ImgP/paket.template | 30 ++++++++++++---------- src/BioFSharp.ML/paket.template | 28 ++++++++++++-------- src/BioFSharp.Parallel/paket.template | 15 +++++++---- src/BioFSharp.Stats/paket.template | 13 ++++++---- src/BioFSharp.Vis/paket.template | 9 ++++--- src/BioFSharp/paket.template | 29 +++++++++++++-------- 9 files changed, 123 insertions(+), 81 deletions(-) diff --git a/src/BioFSharp.BioContainers/paket.template b/src/BioFSharp.BioContainers/paket.template index c1499292..50d7b4b0 100644 --- a/src/BioFSharp.BioContainers/paket.template +++ b/src/BioFSharp.BioContainers/paket.template @@ -3,28 +3,31 @@ id BioFSharp.BioContainers title BioFSharp.BioContainers owners - Timo Mühlhaus -authors Timo Mühlhaus, Kevin Schneider +authors + Timo Mühlhaus, Kevin Schneider, F# open source contributors projectUrl - https://github.com/CSBiology/BioFSharp + https://csbiology.github.io/BioFSharp/BioContainers.html iconUrl - https://raw.githubusercontent.com/CSBiology/BioFSharp/master/docs/files/img/logo.png + https://raw.githubusercontent.com/CSBiology/BioFSharp/master/docsrc/files/img/logo.png licenseUrl - https://github.com/CSBiology/BioFSharp/blob/master/LICENSE.txt + https://github.com/CSBiology/BioFSharp/blob/master/LICENSE requireLicenseAcceptance false language F# copyright - Copyright 2019 + Copyright 2017-2020 tags - bioinformatics F# fsharp docker biocontainer + F# FSharp bioinformatics biostatistics datascience biology dataprocessing amino-acids nucleotides sequence-analysis docker bioinformatics-containers biocontainers summary - Common bioinformatics tools in Docker containers accessible by F# + API access to powerful popular bioinformatic databases description - Common bioinformatics tools in Docker containers (including BioContainers) accessible by F# + API access to powerful popular bioinformatic databases include-referenced-projects true -files - ../../bin/BioFSharp.BioContainers ==> lib +repositoryType + git +repositoryUrl + https://github.com/CSBiology/BioFSharp +include-pdbs true \ No newline at end of file diff --git a/src/BioFSharp.BioDB/paket.template b/src/BioFSharp.BioDB/paket.template index 7b61152d..4243bd62 100644 --- a/src/BioFSharp.BioDB/paket.template +++ b/src/BioFSharp.BioDB/paket.template @@ -3,28 +3,34 @@ id BioFSharp.BioDB title BioFSharp.BioDB owners - Timo Mühlhaus + Timo Mühlhaus, Kevin Schneider authors - Timo Mühlhaus + Timo Mühlhaus, Sabrina Gödel, Kevin Schneider, F# open source contributors projectUrl - https://github.com/CSBiology/BioFSharp + https://csbiology.github.io/BioFSharp iconUrl - https://raw.githubusercontent.com/CSBiology/BioFSharp/master/docs/files/img/logo.png + https://raw.githubusercontent.com/CSBiology/BioFSharp/master/docsrc/files/img/logo.png licenseUrl - https://github.com/CSBiology/BioFSharp/blob/master/LICENSE.txt + https://github.com/CSBiology/BioFSharp/blob/master/LICENSE requireLicenseAcceptance false language F# copyright - Copyright 2019 + Copyright 2017-2020 tags - bioinformatics F# fsharp database-access + F# FSharp bioinformatics biostatistics datascience biology dataprocessing amino-acids nucleotides sequence-analysis docker bioinformatics-containers biocontainers summary - APIs for querying common biological databases + Connect BioFSharp with containerized bioinformatic workflows without leaving your F# environment description - APIs for querying common biological databases + BioFSharp.BioContainers gives you the possibility to leverage containerized applications without + leaving you F# environment. We build on the fondation of Docker.DotNet to programmatically access + the the REST API on top of the docker daemon. We provide special functions to use with biocontainers, + which is a standardized way to create containerized bioinformatic software. include-referenced-projects true -files - ../../bin/BioFSharp.BioDB ==> lib +repositoryType + git +repositoryUrl + https://github.com/CSBiology/BioFSharp +include-pdbs true \ No newline at end of file diff --git a/src/BioFSharp.IO/paket.template b/src/BioFSharp.IO/paket.template index 83365832..875d38e8 100644 --- a/src/BioFSharp.IO/paket.template +++ b/src/BioFSharp.IO/paket.template @@ -3,28 +3,33 @@ id BioFSharp.IO title BioFSharp.IO owners - Timo Mühlhaus -authors Timo Mühlhaus, Kevin Schneider +authors + Timo Mühlhaus, Kevin Schneider, Heinrich Lukas Weil, David Zimmer, F# open source contributors projectUrl - https://github.com/CSBiology/BioFSharp + https://csbiology.github.io/BioFSharp/ iconUrl - https://raw.githubusercontent.com/CSBiology/BioFSharp/master/docs/files/img/logo.png + https://raw.githubusercontent.com/CSBiology/BioFSharp/master/docsrc/files/img/logo.png licenseUrl - https://github.com/CSBiology/BioFSharp/blob/master/LICENSE.txt + https://github.com/CSBiology/BioFSharp/blob/master/LICENSE requireLicenseAcceptance false language F# copyright - Copyright 2019 + Copyright 2017-2020 tags - bioinformatics F# fsharp IO + F# FSharp bioinformatics biostatistics datascience biology dataprocessing amino-acids nucleotides sequence-analysis docker bioinformatics-containers biocontainers summary - Readers/Writers for biological file formats + Read/write functions for various biological file formats description - Readers/Writers for biological file formats + BioFSharp.IO contains read/write functions for a diverse set of biological + file formats such as Fasta, FastQ, GeneBank or GFF, as well as + helper function for searching on or transforming the input data include-referenced-projects true -files - ../../bin/BioFSharp.IO ==> lib +repositoryType + git +repositoryUrl + https://github.com/CSBiology/BioFSharp +include-pdbs true diff --git a/src/BioFSharp.ImgP/paket.template b/src/BioFSharp.ImgP/paket.template index 655fbda1..65747dd3 100644 --- a/src/BioFSharp.ImgP/paket.template +++ b/src/BioFSharp.ImgP/paket.template @@ -1,29 +1,33 @@ -type file +type project id BioFSharp.ImgP title BioFSharp.ImgP owners - Timo Mühlhaus -authors Timo Mühlhaus, Benedikt Venn +authors + Timo Mühlhaus, Benedikt Venn, F# open source contributors projectUrl - https://github.com/CSBiology/BioFSharp + https://csbiology.github.io/BioFSharp/ iconUrl - https://raw.githubusercontent.com/CSBiology/BioFSharp/master/docs/files/img/logo.png + https://raw.githubusercontent.com/CSBiology/BioFSharp/master/docsrc/files/img/logo.png licenseUrl - https://github.com/CSBiology/BioFSharp/blob/master/LICENSE.txt + https://github.com/CSBiology/BioFSharp/blob/master/LICENSE requireLicenseAcceptance false language F# copyright - Copyright 2019 + Copyright 2017-2020 tags - bioinformatics F# image-recognition image-processing + F# FSharp bioinformatics biostatistics datascience biology dataprocessing amino-acids nucleotides sequence-analysis docker bioinformatics-containers biocontainers summary - dawdf + Image recognition and analysis using wavelet transformations description - frdt - -files - ../../bin/BioFSharp.ImgP ==> lib + Image recognition and analysis using wavelet transformations +include-referenced-projects + true +repositoryType + git +repositoryUrl + https://github.com/CSBiology/BioFSharp +include-pdbs true diff --git a/src/BioFSharp.ML/paket.template b/src/BioFSharp.ML/paket.template index 4dc1b820..b316172e 100644 --- a/src/BioFSharp.ML/paket.template +++ b/src/BioFSharp.ML/paket.template @@ -3,28 +3,34 @@ id BioFSharp.ML title BioFSharp.ML owners - Timo Mühlhaus + Timo Mühlhaus, David Zimmer, Kevin Schneider authors - Timo Mühlhaus, Kevin Schneider + Timo Mühlhaus, David Zimmer, Kevin Schneider projectUrl - https://github.com/CSBiology/BioFSharp + https://csbiology.github.io/BioFSharp/ iconUrl - https://raw.githubusercontent.com/CSBiology/BioFSharp/master/docs/files/img/logo.png + https://raw.githubusercontent.com/CSBiology/BioFSharp/master/docsrc/files/img/logo.png licenseUrl - https://github.com/CSBiology/BioFSharp/blob/master/LICENSE.txt + https://github.com/CSBiology/BioFSharp/blob/master/LICENSE requireLicenseAcceptance false language F# copyright - Copyright 2019 + Copyright 2017-2020 tags - bioinformatics F# fsharp maschine learning + F# FSharp bioinformatics biostatistics datascience biology dataprocessing amino-acids nucleotides sequence-analysis docker bioinformatics-containers biocontainers summary - Machinelearning with BioFSharp + Machine learning with BioFSharp and CNTK.Net description - Machinelearning with BioFSharp, containing a lighweight F# wrapper for CNTK and some pretrained models + Make your workflow ML ready with BioFSharp.ML. + Currently contains helper functionf for CNTK + and a pre-trained model we used in our publication + about predicting peptide observability. include-referenced-projects true -files - ../../bin/BioFSharp.ML ==> lib \ No newline at end of file +repositoryType + git +repositoryUrl + https://github.com/CSBiology/BioFSharp +include-pdbs true diff --git a/src/BioFSharp.Parallel/paket.template b/src/BioFSharp.Parallel/paket.template index 58a1b839..31f79c89 100644 --- a/src/BioFSharp.Parallel/paket.template +++ b/src/BioFSharp.Parallel/paket.template @@ -3,9 +3,9 @@ id BioFSharp.Parallel title BioFSharp.Parallel owners - Timo Mühlhaus + Timo Mühlhaus, Kevin Schneider authors - Timo Mühlhaus + Benjamin Saljooghi (https://github.com/benjaminsaljooghi) projectUrl https://github.com/CSBiology/BioFSharp iconUrl @@ -17,14 +17,19 @@ requireLicenseAcceptance language F# copyright - Copyright 2019 + Copyright 2017-2020 tags F# FSharp bioinformatics parallelization +tags + F# FSharp bioinformatics biostatistics datascience biology dataprocessing amino-acids nucleotides sequence-analysis docker bioinformatics-containers biocontainers summary GPU parallelized functions from BioFSharp description GPU parallelized functions from BioFSharp include-referenced-projects true -files - ../../bin/BioFSharp.Parallel ==> lib \ No newline at end of file +repositoryType + git +repositoryUrl + https://github.com/CSBiology/BioFSharp +include-pdbs true diff --git a/src/BioFSharp.Stats/paket.template b/src/BioFSharp.Stats/paket.template index 787eded1..95e85615 100644 --- a/src/BioFSharp.Stats/paket.template +++ b/src/BioFSharp.Stats/paket.template @@ -17,14 +17,17 @@ requireLicenseAcceptance language F# copyright - Copyright 2019 + Copyright 2017-2020 tags bioinformatics F# fsharp statistic summary - Special statistical functions for bioinformatic purposes + Statistical functions with a clear biological focus in F# description - Special statistical functions for bioinformatic purposes + Statistical functions with a clear biological focus such as Gene Set Enrichment Analysis (GSEA) include-referenced-projects true -files - ../../bin/BioFSharp.Stats ==> lib \ No newline at end of file +repositoryType + git +repositoryUrl + https://github.com/CSBiology/BioFSharp +include-pdbs true diff --git a/src/BioFSharp.Vis/paket.template b/src/BioFSharp.Vis/paket.template index 7170c79a..b9f4b3fe 100644 --- a/src/BioFSharp.Vis/paket.template +++ b/src/BioFSharp.Vis/paket.template @@ -17,7 +17,7 @@ requireLicenseAcceptance language F# copyright - Copyright 2019 + Copyright 2017-2020 tags bioinformatics F# fsharp visualization summary @@ -26,5 +26,8 @@ description Data visualization for bioinformatic purposes, containing for instance Venn and Chord diagramms include-referenced-projects true -files - ../../bin/BioFSharp.Vis ==> lib \ No newline at end of file +repositoryType + git +repositoryUrl + https://github.com/CSBiology/BioFSharp +include-pdbs true diff --git a/src/BioFSharp/paket.template b/src/BioFSharp/paket.template index 161d6217..286749bd 100644 --- a/src/BioFSharp/paket.template +++ b/src/BioFSharp/paket.template @@ -3,28 +3,35 @@ id BioFSharp title BioFSharp owners - Timo Mühlhaus + Timo Mühlhaus, Kevin Schneider authors - Timo Mühlhaus + Timo Mühlhaus, Kevin Schneider, Heinrich Lukas Weil, David Zimmer, F# open source contributors projectUrl - https://github.com/CSBiology/BioFSharp + https://csbiology.github.io/BioFSharp/ iconUrl - https://raw.githubusercontent.com/CSBiology/BioFSharp/master/docs/files/img/logo.png + https://raw.githubusercontent.com/CSBiology/BioFSharp/master/docsrc/files/img/logo.png licenseUrl - https://github.com/CSBiology/BioFSharp/blob/master/LICENSE.txt + https://github.com/CSBiology/BioFSharp/blob/master/LICENSE requireLicenseAcceptance false language F# copyright - Copyright 2019 + Copyright 2017-2020 tags - bioinformatics F# fsharp + F# FSharp bioinformatics biostatistics datascience biology dataprocessing amino-acids nucleotides sequence-analysis docker bioinformatics-containers biocontainers summary - BioFSharp aims to be a user-friendly library for Bioinformatics written in F# as the official successor of FSharpBio. + The F# open source bioinformatics toolbox description - BioFSharp aims to be a user-friendly library for Bioinformatics written in F# as the official successor of FSharpBio. + BioFSharp aims to be a user-friendly library for Bioinformatics written in F#. + This is the core package that contains optimized biological datastructures + (For example aminoacdis, nucleotides, and sequences consisting of them) and core + bioinformatic algorithms (such as alignments or pattern search). BioFSharp has many + more to offer in its subnamespaces, so be sure to check them out! include-referenced-projects true -files - ../../bin/BioFSharp ==> lib +repositoryType + git +repositoryUrl + https://github.com/CSBiology/BioFSharp +include-pdbs true From 784bce111434146f0bec70eab4915fc2baea7a4f Mon Sep 17 00:00:00 2001 From: kMutagene Date: Wed, 19 Feb 2020 22:39:58 +0100 Subject: [PATCH 7/8] Bump Version to 1.0.02 --- RELEASE_NOTES.md | 6 ++++++ build.fsx | 1 - docsrc/content/release-notes.md | 6 ++++++ src/BioFSharp.BioContainers/AssemblyInfo.fs | 8 ++++---- src/BioFSharp.BioDB/AssemblyInfo.fs | 8 ++++---- src/BioFSharp.IO/AssemblyInfo.fs | 8 ++++---- src/BioFSharp.ImgP/AssemblyInfo.fs | 8 ++++---- src/BioFSharp.ML/AssemblyInfo.fs | 8 ++++---- src/BioFSharp.Parallel/AssemblyInfo.fs | 8 ++++---- src/BioFSharp.Stats/AssemblyInfo.fs | 8 ++++---- src/BioFSharp.Vis/AssemblyInfo.fs | 8 ++++---- src/BioFSharp/AssemblyInfo.fs | 8 ++++---- 12 files changed, 48 insertions(+), 37 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 94807876..ba9cd24d 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,9 @@ +#### 1.0.02 - Wednesday, February 19, 2020 + * **BioFSharp.BioDB:** + * Fix FaTool OData model URL + * **BioFSharp.Vis** + * Add Function to save chord plots as html files + #### 1.0.01 - Thursday, October 24, 2019 * **BioFSharp.Stats:** * Major speed improvements for Sailent diff --git a/build.fsx b/build.fsx index 30055f84..d97649d6 100644 --- a/build.fsx +++ b/build.fsx @@ -382,7 +382,6 @@ Target.create "RunTestsMono" (fun _ -> Target.create "NuGet" (fun _ -> Paket.pack(fun p -> { p with - BuildPlatform = "net45;net47;netstandard2.0" ToolType = ToolType.CreateLocalTool() OutputPath = pkgDir Version = release.NugetVersion diff --git a/docsrc/content/release-notes.md b/docsrc/content/release-notes.md index 94807876..e364d81d 100644 --- a/docsrc/content/release-notes.md +++ b/docsrc/content/release-notes.md @@ -1,3 +1,9 @@ +#### 1.0.02 - Thursday, October 24, 2019 + * **BioFSharp.BioDB:** + * Fix FaTool OData model URL + * **BioFSharp.Vis** + * Add Function to save chord plots as html files + #### 1.0.01 - Thursday, October 24, 2019 * **BioFSharp.Stats:** * Major speed improvements for Sailent diff --git a/src/BioFSharp.BioContainers/AssemblyInfo.fs b/src/BioFSharp.BioContainers/AssemblyInfo.fs index dbcef396..4632ce9e 100644 --- a/src/BioFSharp.BioContainers/AssemblyInfo.fs +++ b/src/BioFSharp.BioContainers/AssemblyInfo.fs @@ -5,8 +5,8 @@ open System.Reflection [] [] [")>] -[] -[] +[] +[] [] do () @@ -14,6 +14,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "BioFSharp.BioContainers" let [] AssemblyProduct = "BioFSharp" let [] AssemblyDescription = "An open source bioinformatics toolbox written in F#. " - let [] AssemblyVersion = "1.0.01" - let [] AssemblyFileVersion = "1.0.01" + let [] AssemblyVersion = "1.0.02" + let [] AssemblyFileVersion = "1.0.02" let [] AssemblyConfiguration = "Release" diff --git a/src/BioFSharp.BioDB/AssemblyInfo.fs b/src/BioFSharp.BioDB/AssemblyInfo.fs index 4f585a73..1a771ca1 100644 --- a/src/BioFSharp.BioDB/AssemblyInfo.fs +++ b/src/BioFSharp.BioDB/AssemblyInfo.fs @@ -5,8 +5,8 @@ open System.Reflection [] [] [")>] -[] -[] +[] +[] [] do () @@ -14,6 +14,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "BioFSharp.BioDB" let [] AssemblyProduct = "BioFSharp" let [] AssemblyDescription = "An open source bioinformatics toolbox written in F#. " - let [] AssemblyVersion = "1.0.01" - let [] AssemblyFileVersion = "1.0.01" + let [] AssemblyVersion = "1.0.02" + let [] AssemblyFileVersion = "1.0.02" let [] AssemblyConfiguration = "Release" diff --git a/src/BioFSharp.IO/AssemblyInfo.fs b/src/BioFSharp.IO/AssemblyInfo.fs index 7cea4abe..14900b62 100644 --- a/src/BioFSharp.IO/AssemblyInfo.fs +++ b/src/BioFSharp.IO/AssemblyInfo.fs @@ -5,8 +5,8 @@ open System.Reflection [] [] [")>] -[] -[] +[] +[] [] do () @@ -14,6 +14,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "BioFSharp.IO" let [] AssemblyProduct = "BioFSharp" let [] AssemblyDescription = "An open source bioinformatics toolbox written in F#. " - let [] AssemblyVersion = "1.0.01" - let [] AssemblyFileVersion = "1.0.01" + let [] AssemblyVersion = "1.0.02" + let [] AssemblyFileVersion = "1.0.02" let [] AssemblyConfiguration = "Release" diff --git a/src/BioFSharp.ImgP/AssemblyInfo.fs b/src/BioFSharp.ImgP/AssemblyInfo.fs index e744dc8c..906b9f57 100644 --- a/src/BioFSharp.ImgP/AssemblyInfo.fs +++ b/src/BioFSharp.ImgP/AssemblyInfo.fs @@ -5,8 +5,8 @@ open System.Reflection [] [] [")>] -[] -[] +[] +[] [] do () @@ -14,6 +14,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "BioFSharp.ImgP" let [] AssemblyProduct = "BioFSharp" let [] AssemblyDescription = "An open source bioinformatics toolbox written in F#. " - let [] AssemblyVersion = "1.0.01" - let [] AssemblyFileVersion = "1.0.01" + let [] AssemblyVersion = "1.0.02" + let [] AssemblyFileVersion = "1.0.02" let [] AssemblyConfiguration = "Release" diff --git a/src/BioFSharp.ML/AssemblyInfo.fs b/src/BioFSharp.ML/AssemblyInfo.fs index c83739d6..4ce65738 100644 --- a/src/BioFSharp.ML/AssemblyInfo.fs +++ b/src/BioFSharp.ML/AssemblyInfo.fs @@ -5,8 +5,8 @@ open System.Reflection [] [] [")>] -[] -[] +[] +[] [] do () @@ -14,6 +14,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "BioFSharp.ML" let [] AssemblyProduct = "BioFSharp" let [] AssemblyDescription = "An open source bioinformatics toolbox written in F#. " - let [] AssemblyVersion = "1.0.01" - let [] AssemblyFileVersion = "1.0.01" + let [] AssemblyVersion = "1.0.02" + let [] AssemblyFileVersion = "1.0.02" let [] AssemblyConfiguration = "Release" diff --git a/src/BioFSharp.Parallel/AssemblyInfo.fs b/src/BioFSharp.Parallel/AssemblyInfo.fs index 55460465..68dce98c 100644 --- a/src/BioFSharp.Parallel/AssemblyInfo.fs +++ b/src/BioFSharp.Parallel/AssemblyInfo.fs @@ -5,8 +5,8 @@ open System.Reflection [] [] [")>] -[] -[] +[] +[] [] do () @@ -14,6 +14,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "BioFSharp.Parallel" let [] AssemblyProduct = "BioFSharp" let [] AssemblyDescription = "An open source bioinformatics toolbox written in F#. " - let [] AssemblyVersion = "1.0.01" - let [] AssemblyFileVersion = "1.0.01" + let [] AssemblyVersion = "1.0.02" + let [] AssemblyFileVersion = "1.0.02" let [] AssemblyConfiguration = "Release" diff --git a/src/BioFSharp.Stats/AssemblyInfo.fs b/src/BioFSharp.Stats/AssemblyInfo.fs index 4100cb34..0988e585 100644 --- a/src/BioFSharp.Stats/AssemblyInfo.fs +++ b/src/BioFSharp.Stats/AssemblyInfo.fs @@ -5,8 +5,8 @@ open System.Reflection [] [] [")>] -[] -[] +[] +[] [] do () @@ -14,6 +14,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "BioFSharp.Stats" let [] AssemblyProduct = "BioFSharp" let [] AssemblyDescription = "An open source bioinformatics toolbox written in F#. " - let [] AssemblyVersion = "1.0.01" - let [] AssemblyFileVersion = "1.0.01" + let [] AssemblyVersion = "1.0.02" + let [] AssemblyFileVersion = "1.0.02" let [] AssemblyConfiguration = "Release" diff --git a/src/BioFSharp.Vis/AssemblyInfo.fs b/src/BioFSharp.Vis/AssemblyInfo.fs index 04ea4118..737ec5ba 100644 --- a/src/BioFSharp.Vis/AssemblyInfo.fs +++ b/src/BioFSharp.Vis/AssemblyInfo.fs @@ -5,8 +5,8 @@ open System.Reflection [] [] [")>] -[] -[] +[] +[] [] do () @@ -14,6 +14,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "BioFSharp.Vis" let [] AssemblyProduct = "BioFSharp" let [] AssemblyDescription = "An open source bioinformatics toolbox written in F#. " - let [] AssemblyVersion = "1.0.01" - let [] AssemblyFileVersion = "1.0.01" + let [] AssemblyVersion = "1.0.02" + let [] AssemblyFileVersion = "1.0.02" let [] AssemblyConfiguration = "Release" diff --git a/src/BioFSharp/AssemblyInfo.fs b/src/BioFSharp/AssemblyInfo.fs index 88f44fa5..5c6d616c 100644 --- a/src/BioFSharp/AssemblyInfo.fs +++ b/src/BioFSharp/AssemblyInfo.fs @@ -5,8 +5,8 @@ open System.Reflection [] [] [")>] -[] -[] +[] +[] [] do () @@ -14,6 +14,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "BioFSharp" let [] AssemblyProduct = "BioFSharp" let [] AssemblyDescription = "An open source bioinformatics toolbox written in F#. " - let [] AssemblyVersion = "1.0.01" - let [] AssemblyFileVersion = "1.0.01" + let [] AssemblyVersion = "1.0.02" + let [] AssemblyFileVersion = "1.0.02" let [] AssemblyConfiguration = "Release" From f419cf097ea081a8decc6f280362b1a0c340a817 Mon Sep 17 00:00:00 2001 From: kMutagene Date: Wed, 19 Feb 2020 22:48:01 +0100 Subject: [PATCH 8/8] Update readme build badges --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4a8d3802..0ec5fd85 100644 --- a/README.md +++ b/README.md @@ -11,10 +11,10 @@ BioFSharp is an open source bioinformatics and computational biology toolbox wri ![GitHub contributors](https://img.shields.io/github/contributors/CSBiology/BioFSharp) -|Branch|Ubuntu(trusty)|Windows| +|Branch|Linux Mono (Xenial)|Linux .Net Core only (Bionic Beaver)|Windows| |---|---|---| -| master | [![Build Status](https://travis-ci.com/CSBiology/BioFSharp.svg?branch=master)](https://travis-ci.com/CSBiology/BioFSharp) | [![Build status](https://ci.appveyor.com/api/projects/status/9a5r4aklmmbykobk/branch/master?svg=true)](https://ci.appveyor.com/project/kMutagene/biofsharp/branch/master) | -| developer | [![Build Status](https://travis-ci.com/CSBiology/BioFSharp.svg?branch=developer)](https://travis-ci.com/CSBiology/BioFSharp) | [![Build status](https://ci.appveyor.com/api/projects/status/9a5r4aklmmbykobk/branch/developer?svg=true)](https://ci.appveyor.com/project/kMutagene/biofsharp/branch/developer) | +| master | [![Build Status](https://travis-ci.com/CSBiology/BioFSharp.svg?branch=master)](https://travis-ci.com/CSBiology/BioFSharp) | [![Build status](https://ci.appveyor.com/api/projects/status/9a5r4aklmmbykobk/branch/master?svg=true)](https://ci.appveyor.com/project/kMutagene/biofsharp/branch/master) | [![Build status](https://ci.appveyor.com/api/projects/status/9a5r4aklmmbykobk/branch/master?svg=true)](https://ci.appveyor.com/project/kMutagene/biofsharp/branch/master) | +| developer | [![Build Status](https://travis-ci.com/CSBiology/BioFSharp.svg?branch=developer)](https://travis-ci.com/CSBiology/BioFSharp) | [![Build status](https://ci.appveyor.com/api/projects/status/9a5r4aklmmbykobk/branch/developer?svg=true)](https://ci.appveyor.com/project/kMutagene/biofsharp/branch/developer) |[![Build status](https://ci.appveyor.com/api/projects/status/9a5r4aklmmbykobk/branch/developer?svg=true)](https://ci.appveyor.com/project/kMutagene/biofsharp/branch/developer) |